]> git.donarmstrong.com Git - lilypond.git/blob - tex/lilyponddefs.tex
release: 0.1.17
[lilypond.git] / tex / lilyponddefs.tex
1 %%
2 %% include file for LilyPond
3 %%
4 %% this file defines various macros to accomodate lilypond output
5
6 % TeXbook ex 7.7
7 \def\ifundefined#1{\expandafter\ifx\csname#1\endcsname\relax}
8
9 % skip if included already
10 \def\SkipLilydefs{\endinput}
11 \ifundefined{EndLilyPondOutput}
12         \def\EndLilyPondOutput{\csname bye\endcsname}
13         \def\SkipLilydefs{}
14 \fi
15 \SkipLilydefs
16
17 \ifundefined{mudelacopyright}
18         \def\mudelacopyright{\copyright\ \number\year}
19 \fi
20 \ifundefined{LilyIdString}
21         \def\LilyIdString{Lily was here}
22 \fi
23
24 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
25 % macros to shorten other definitions
26 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
27 \def\musicdef#1#2{\def#1{\musicchar{#2}}}
28 \def\musicchar#1{\musicfnt\char#1}
29 \def\rationalmultiply#1*#2/#3{\multiply #1 by #2 \divide #1 by #3}
30
31
32 \def\maccentraise#1#2{\dimen0=\noteheight
33         \rationalmultiply\dimen0*#2%
34         \raise\dimen0\hbox{#1}}
35 \def\maccentdef#1#2#3{\def#1{\maccentraise{\musicchar{#2}}{#3}}}
36 \def\vertcenter#1{\vbox to 0pt{\vss #1\vss}}
37
38 \def\musicmathdef#1#2{\def#1{\musicmathchar{#2}}}
39 \def\musicmathchar#1{\musicmathfont\char#1}
40
41 \def\topalign#1{\vbox to 0pt{#1\vss}}
42 \def\botalign#1{\vbox to 0pt{\vss #1}}
43
44 \def\centeralign#1{\hbox to 0pt{\hss#1\hss}}
45 \def\leftalign#1{\hbox to 0pt{#1\hss}}
46 \def\rightalign#1{\hbox to 0pt{\hss#1}}
47
48
49 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
50 %% set up dimensions
51 \parindent=0pt
52 \newdimen\smallspace
53 \newdimen\interlinedist
54 \newcount\n
55 \newdimen\balkheight
56 \newdimen\notewidth
57 \newdimen\noteheight
58 \newdimen\staffrulethickness
59 \newdimen\interstaffrule
60 \newdimen\dist
61
62 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
63 % set fonts and primary dimensions
64 % ugh
65 \def\musixtwentydefs{
66         \balkheight=20pt
67         \notewidth=7.15pt
68         \noteheight=5pt
69         \staffrulethickness=0.4pt
70         \musixtwentyfonts
71         \font\textmusic=cmmi12
72         \musixcalc
73 }
74
75 \def\musixsixteendefs{
76         \balkheight=16pt
77         \staffrulethickness=0.4pt
78         \notewidth=5.93pt
79         \noteheight=4pt
80         \musixsixteenfonts
81         \font\textmusic=cmmi10
82         \musixcalc
83 }
84
85 \def\textsharp{\raise.4ex\hbox{\textmusic\char"5D}}
86 \def\textnatural{\raise.4ex\hbox{\textmusic\char"5C}}
87 \def\textflat{\raise.2ex\hbox{\mus\char"5B}}
88
89
90
91
92 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
93 % do derivative calcs
94
95 \def\musixcalc{
96         \interlinedist=\fontdimen5\musicfnt
97         \smallspace=.3\interlinedist
98         \interstaffrule=\balkheight
99         \divide\interstaffrule by 4
100 }
101
102
103 \input dyndefs
104
105 \input taupindefs
106 %\input eglerdefs
107
108 \musicmathdef\cup{91} % \cup
109 \musicmathdef\wedge{94} % \wedge
110 \musicmathdef\striepke{0} % heu?
111
112 %% custom characters --- this should go: add to (meta!) font
113 % \def\myheel{\kern-.5ex\vbox{\cup}\kern-.5ex}
114 % \def\mytoe{\kern-.5ex\vbox{\wedge}\kern-.5ex}
115 \def\myheel{\vbox{\cup}}
116 \def\mytoe{\vbox{\wedge}}
117 % \def\mystriepke{\kern-1.1ex\vbox{\hbox{\kern-.05em\striepke}}\kern-1.1ex}
118 \def\mystriepke{\kern-1.8ex\vbox{\hbox{\kern-.05em\striepke}}\kern-1.8ex}
119
120 \def\heel{\vbox{\myheel}}
121 \def\toe{\vbox{\mytoe}}
122 \def\backorfront{\mystriepke}
123
124 \def\bheel{\vbox{\myheel\mystriepke}}
125 \def\btoe{\vbox{\mytoe\mystriepke}}
126 \def\fheel{\vbox{\mystriepke\myheel}}
127 \def\ftoe{\vbox{\mystriepke\mytoe}}
128 \def\heeltoe{\vbox{\myheel\mytoe}}
129 \def\toeheel{\vbox{\mytoe\myheel}}
130 %%
131
132 \def\emptybar{}
133
134 \def\defaultthinbar{\thinbar{\balkheight}}
135 \def\defaultthickbar{\thickbar{\balkheight}}
136 %? what-s wrong with rightalign?
137 \def\repeatstopbar{\hss\rightalign{\repeatcolon\hskip2\smallspace\defaultthinbar\hskip\smallspace\defaultthickbar}}
138 \def\repeatstartbar{\hbox{\defaultthickbar\kern\smallspace\defaultthinbar\kern2\smallspace\repeatcolon}}
139 \def\repeatstopstart{\hbox{\repeatcolon\kern2\smallspace\defaultthinbar\kern\smallspace\defaultthickbar\kern\smallspace\defaultthickbar\kern\smallspace\defaultthinbar\kern2\smallspace\repeatcolon}}
140
141 %compatibility
142 \def\repeatbar{\repeatstopbar}
143 \def\startrepeat{\repeatstartbar}
144 \def\repeatbarstartrepeat{\repeatstopstart}
145
146
147
148 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
149 % parametric symbols
150 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
151
152 \def\doublebar#1{\hbox{\thinbar{#1}\hskip\smallspace\thinbar{#1}}}
153 \def\thinbar#1{\vrule height #1 width 1.6\staffrulethickness} % TODO parametric.
154 \def\thickbar#1{\vrule height #1 width 2\smallspace}
155 \def\maatstreep#1{\thinbar{#1}}
156 \def\startbar#1{\leftalign{\thickbar{#1}\kern\smallspace\thinbar{#1}}}
157 \def\finishbar#1{\rightalign{\thinbar{#1}\kern\smallspace\thickbar{#1}}}
158
159 \def\pianobrace#1{{\musicdraw\char#1}}
160 \def\slurcharh#1{{\slurhfont\char#1}}
161 \def\slurcharu#1{{\slurufont\char#1}}
162 \def\slurchard#1{{\slurdfont\char#1}}
163 \def\hslurcharh#1{{\hslurhfont\char#1}}
164 \def\hslurcharu#1{{\hslurufont\char#1}}
165 \def\hslurchard#1{{\hslurdfont\char#1}}
166 % stacked numbers
167 \def\generalmeter#1#2{\botalign{\vbox to0.5\balkheight{\vss \meterfont#1}%
168         \nointerlineskip
169         \vbox to 0.5\balkheight{\vss\meterfont #2}}}
170
171 % stacked horizontal lines 
172 \def\lines#1#2#3{%
173  \vbox{\kern-\interstaffrule
174         \n=0\nointerlineskip%
175         \loop\ifnum\n<#1\advance\n by1%
176                 \kern\interstaffrule
177                 \nointerlineskip
178                 \vbox to 0pt{\hrule height #3 width#2%
179                         \vss}\nointerlineskip
180                 \repeat
181         }}
182
183 %%
184 % Ugh. Need to redo this. Wish we had PS.
185 %
186 \def\toplines#1#2{\dist#1
187         \topalign{\hbox{\kern-.25\dist\lines{#2}{1.5\dist}{2\staffrulethickness}}}}
188
189 \def\botlines#1#2{\dist#1
190         \botalign{\hbox{\kern-.25\dist\lines{#2}{1.5\dist}{2\staffrulethickness}}}}
191
192 %
193 % a staffsymbol with #1 lines, width #2
194 % bottom at baseline
195 \def\linestafsym#1#2{\leftalign{\botalign{\lines{#1}{#2}{\staffrulethickness}}}}
196
197 \def\stem#1#2{\vrule height#2 depth-#1}
198
199 \def\placebox#1#2#3{%
200         \botalign{\hbox{\raise #1\leftalign{\kern #2{}#3}}}%
201 }
202
203
204 \def\brace#1{\count0=148\advance\count0 by #1\musicdraw\char\count0}
205 \def\crescendosym#1{\count0=84\advance\count0 by #1\musicdraw\char\count0}
206 \def\decrescendosym#1{\count0=116\advance\count0 by #1\musicdraw\char\count0}
207 \def\rulesym#1#2{\vrule height #1 width #2}
208 \def\settext#1{\normaltextfont #1}
209 \def\setitalic#1{\italicfont #1}
210 \def\setdynamic#1{\dynfont #1}
211
212 % the interline symbol. Redefine to remove it.
213 \def\defaultlineseparator{\vbox{\mussepline\vskip -5pt\mussepline}}
214 \def\lineseparator{\defaultlineseparator}
215 \def\beauty{%
216         \par\vskip 10pt plus 30pt minus 10pt\par
217         \hskip -5pt\lineseparator
218         \par\vskip 10pt plus 30pt minus 10pt\par
219 }
220
221
222 \def\interscoreline{\vskip 16pt}
223         
224 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
225 % big fat marks, if errors are detected.
226 \def\columnerrormark{\placebox{-5pt}{0pt}{\bf C!}}
227 \def\scorelineerrormark{\placebox{0pt}{-10pt}{\bf L!}}
228 \def\errormark{{\bf E!}}
229 \def\unknown{{\bf u}}
230
231 \def\postheader{}
232 \ifundefined{documentclass}
233         \footline={\ifnum\pageno=1
234         {\smalltextfont\mudelacopyright\hfil \LilyIdString
235         }\else{\hfil\the\pageno\hfil}\fi
236 }\else
237         %% FIXME
238         \def\ps@plain{
239                 \renewcommand{\@oddhead}{}%
240                 \renewcommand{\@evenfoot}{}%
241                 \renewcommand{\@evenhead}{}%
242                 \renewcommand{\@oddfoot}{\ifnum\thepage=1
243         {\hfil \LilyIdString
244         }\else{foo\hfil\the\pageno\hfil}\fi}}
245         \def\ps@empty{
246                 \renewcommand{\@oddhead}{}%
247                 \renewcommand{\@evenfoot}{}%
248                 \renewcommand{\@evenhead}{}%
249                 \renewcommand{\@oddfoot}{\ifnum\thepage=1
250         {\hfil \LilyIdString
251         }\else{foo\hfil\the\pageno\hfil}\fi}}
252 \fi
253
254