File: macro.ini

package info (click to toggle)
texlive-lang 2016.20170123-5
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 1,093,148 kB
  • ctags: 15,901
  • sloc: perl: 46,074; xml: 29,603; makefile: 5,248; sh: 3,179; python: 2,949; ansic: 2,846; ruby: 945; lisp: 726; awk: 636; java: 159; sed: 142; cpp: 12
file content (45 lines) | stat: -rw-r--r-- 2,289 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/****************************************************************************
  PROJECT: MusixTeX PreProcessor
  FILE   : macro.ini
  AUTHOR : J. C. Nieuwenhuizen

  copyright (c) FlowerSoft 1995
--*/

    macroList.put( *new Define( "title" ) );
    macroList.put( *new Define( "subtitle" ) );
    macroList.put( *new Define( "lefttitle" ) );
    macroList.put( *new Define( "tempo" ) );
    macroList.put( *new Define( "composer" ) );
    macroList.put( *new Define( "righttitle" ) );

    macroList.put( *new Macro( "barnumbering", "\\barnumbering", 1 ) );
    macroList.put( *new Macro( "staffnumbers" , "\\systemnumbers" ) );
    macroList.put( *new Macro( "barnumberstyle", "\\def\\putbarno", 1 ) );
    macroList.put( *new Macro( "clef" , "" ) );
    macroList.put( *new Macro( "key" , "" ) );
    macroList.put( *new Macro( "staffseparation", "\\interstaff", 1 ) );
    macroList.put( *new Macro( "tighten" , "\\mulooseness=-1\n" ) );
    macroList.put( *new Macro( "ttighten" , "\\mulooseness=-2\n" ) );
    macroList.put( *new Macro( "tttighten" , "\\mulooseness=-3\n" ) );
    macroList.put( *new Macro( "loosen" , "\\mulooseness=1\n" ) );
    
    macroList.put( *new DefaultDuration( "duration" , 1 ) );
    macroList.put( *new Metron( "metron" ) );
    macroList.put( *new Meter( "meter" ) );
    macroList.put( *new MusicStyle( "normal", "\\normalnotesize", Note::NORMAL ) );
    macroList.put( *new MusicStyle( "small", "\\smallnotesize", Note::SMALL ) );
    macroList.put( *new MusicStyle( "tiny", "\\tinynotesize", Note::TINY ) );
    macroList.put( *new NewLine( "newline" , "\\alaligne\n" ) );
    macroList.put( *new Octavate( "octavate" ) );
    macroList.put( *new PartVerb( "partverb", 1 ) );
    macroList.put( *new ScoreVerb( "scoreverb", 1 ) );
    macroList.put( *new Slope( "slope" ) );
    macroList.put( *new StemLength( "stemlength" ) );
    macroList.put( *new Transpose( "transpose" ) );
    macroList.put( *new Verb( "verb", 1 ) );
    macroList.put( *new Volta( "volta", "Setvolta" ) );
//    macroList.put( *new Volta( "beginvolta", "Setvolta" ) );
                               // not Macro, cause only written for top staff
    macroList.put( *new Volta( "endvolta", "endvolta" ) );
    macroList.put( *new Volta( "endvoltabox", "endvoltabox" ) );