diff options
author | Karl Berry <karl@freefriends.org> | 2009-05-23 00:23:51 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-05-23 00:23:51 +0000 |
commit | a683c3d7e9fac38ec713f23fb6b9d2c7143aea82 (patch) | |
tree | 424ab223921f85fd3f167a4ccd0e2d37d05c2927 /Master/texmf-dist/doc/latex/latex-graphics-companion/notecc.ini | |
parent | 5beb5368a684995153c8566797ba054f21c666af (diff) |
move english latex doc out of texmf-doc
git-svn-id: svn://tug.org/texlive/trunk@13412 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/latex-graphics-companion/notecc.ini')
-rw-r--r-- | Master/texmf-dist/doc/latex/latex-graphics-companion/notecc.ini | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/latex-graphics-companion/notecc.ini b/Master/texmf-dist/doc/latex/latex-graphics-companion/notecc.ini new file mode 100644 index 00000000000..8d372e8ed4b --- /dev/null +++ b/Master/texmf-dist/doc/latex/latex-graphics-companion/notecc.ini @@ -0,0 +1,66 @@ +/**************************************************************************** + PROJECT: MusixTeX PreProcessor + FILE : notecc.ini: obsolete + AUTHOR : J. C. Nieuwenhuizen + + copyright (c) FlowerSoft 1995 +--*/ + +// 1 + 7 groups of 5 notes +// name, group, pitch, relative pitch + // rest pitch must be -1 + noteNames.put( *new NoteName( "r", -1, 0, 0 ) ); + noteNames.put( *new NoteName( "r", -1, 0, 0 ) ); + noteNames.put( *new NoteName( "p", -1, 0, 0 ) ); + // spacing pitch must be -2 + noteNames.put( *new NoteName( "s", -2, 0, 0 ) ); + noteNames.put( *new NoteName( "s", -2, 0, 0 ) ); + + + // double flat + // flat + // plain + // sharp + // double sharp + + noteNames.put( *new NoteName( "ceses", 0, 10, -2 ) ); + noteNames.put( *new NoteName( "ces", 0, 11, -1 ) ); + noteNames.put( *new NoteName( "c", 0, 0, 0 ) ); + noteNames.put( *new NoteName( "cis", 0, 1, 1 ) ); + noteNames.put( *new NoteName( "cisis", 0, 3, 2 ) ); + + noteNames.put( *new NoteName( "deses", 1, 0, -2 ) ); + noteNames.put( *new NoteName( "des", 1, 1, -1 ) ); + noteNames.put( *new NoteName( "d", 1, 2, 0 ) ); + noteNames.put( *new NoteName( "dis", 1, 3, 1 ) ); + noteNames.put( *new NoteName( "disis", 1, 4, 2 ) ); + + noteNames.put( *new NoteName( "eses", 2, 2, -2 ) ); + noteNames.put( *new NoteName( "es", 2, 3, -1 ) ); + noteNames.put( *new NoteName( "e", 2, 4, 0 ) ); + noteNames.put( *new NoteName( "eis", 2, 5, 1 ) ); + noteNames.put( *new NoteName( "eisis", 2, 6, 2 ) ); + + noteNames.put( *new NoteName( "feses", 3, 3, -2 ) ); + noteNames.put( *new NoteName( "fes", 3, 4, -1 ) ); + noteNames.put( *new NoteName( "f", 3, 5, 0 ) ); + noteNames.put( *new NoteName( "fis", 3, 6, 1 ) ); + noteNames.put( *new NoteName( "fisis", 3, 7, 2 ) ); + + noteNames.put( *new NoteName( "geses", 4, 5, -2 ) ); + noteNames.put( *new NoteName( "ges", 4, 6, -1 ) ); + noteNames.put( *new NoteName( "g", 4, 7, 0 ) ); + noteNames.put( *new NoteName( "gis", 4, 8, 1 ) ); + noteNames.put( *new NoteName( "gisis", 4, 9, 2 ) ); + + noteNames.put( *new NoteName( "ases", 5, 7, -2 ) ); + noteNames.put( *new NoteName( "as", 5, 8, -1 ) ); + noteNames.put( *new NoteName( "a", 5, 9, 0 ) ); + noteNames.put( *new NoteName( "ais", 5, 10, 1 ) ); + noteNames.put( *new NoteName( "aisis", 5, 11, 2 ) ); + + noteNames.put( *new NoteName( "beses", 6, 9, -2 ) ); + noteNames.put( *new NoteName( "bes", 6, 10, -1 ) ); + noteNames.put( *new NoteName( "b", 6, 11, 0 ) ); + noteNames.put( *new NoteName( "bis", 6, 0, 1 ) ); + noteNames.put( *new NoteName( "bisis", 6, 1, 2 ) ); |