]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/de/macros.itexi
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / Documentation / de / macros.itexi
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @ignore
3     Translation of GIT committish: 01361d46dc9d514a79683d003eeea5f4fbf2b746
4
5     When revising a translation, copy the HEAD committish of the
6     version that you are working on.  See TRANSLATION for details.
7 @end ignore
8
9
10 @include version.itexi
11 @include common-macros.itexi
12
13
14 @c   ***** Displaying text *****
15
16 @c To get decent quotes in ,foo' and ,,foo''.
17 @c These need to be split up so that "@qq{foo}." looks nice.  :(
18
19 @macro q{TEXT}
20 @quotesinglbase{}\TEXT\@quoteleft{}
21 @end macro
22
23 @macro qq{TEXT}
24 @quotedblbase{}\TEXT\@quotedblleft{}
25 @end macro
26
27
28 @ifhtml
29
30 @macro warning{TEXT}
31 @cartouche
32 @b{Achtung:} \TEXT\
33 @end cartouche
34 @end macro
35
36 @end ifhtml
37
38 @ifnothtml
39
40 @macro warning{TEXT}
41 @quotation
42 @quotation
43 @cartouche
44 @b{Achtung:} \TEXT\
45 @end cartouche
46 @end quotation
47 @end quotation
48 @end macro
49
50 @end ifnothtml
51
52
53 @c   ***** Headings in a doc subsection *****
54
55 @c Don't insert an empty line after @predefined!  Right now
56 @c it doesn't matter, but a future implementation will probably
57 @c add some code which needs this restriction.
58
59 @macro predefined
60 @noindent
61 @subsubheading Vordefinierte Befehle
62 @end macro
63
64 @c The next macro is a dummy currently since texinfo doesn't
65 @c provide a real ragged-right environment yet.
66 @c
67 @c Due to a bug in texi2html (texi2html.pl CVS versions <= 1.245)
68 @c the macro must not be empty.
69
70 @macro endpredefined
71 @c
72 @end macro
73
74
75 @macro snippets
76 @noindent
77 @subsubheading Ausgewählte Schnipsel
78 @end macro
79
80
81
82 @c Don't insert an empty line after @seealso!  Otherwise we get
83 @c unwanted extra vertical space in the PDF output.
84
85 @macro seealso
86 @noindent
87 @subsubheading Siehe auch
88 @indent
89 @end macro
90
91
92 @macro knownissues
93 @noindent
94 @subsubheading Bekannte Probleme und Warnungen
95 @end macro
96
97
98
99 @c   ***** Links and references *****
100
101 @c  Definitions for references:
102 @c
103 @c     @rglos
104 @c     @rlearning
105 @c     @ruser
106 @c     @rprogram
107 @c     @rlsr
108 @c     @rinternals
109 @c
110 @c  All these also have a @...named version which allows to specify the
111 @c  displayed text for the reference as second argument.
112 @c
113 @c ***** HTML + bigpage is a special case (other manual names); all other
114 @c formats are treated similarly.
115
116
117 @c *** not TeX ***
118
119 @ifnottex
120
121 @c ** bigpage **
122
123 @ifset bigpage
124
125 @macro rglos{TEXT}
126 @vindex \TEXT\
127 @ref{\TEXT\,,,music-glossary-big-page,Glossar}
128 @end macro
129
130 @macro rglosnamed{TEXT,DISPLAY}
131 @vindex \TEXT\
132 @ref{\TEXT\,,\DISPLAY\,music-glossary-big-page,Glossar}
133 @end macro
134
135 @macro rlearning{TEXT}
136 @vindex \TEXT\
137 @ref{\TEXT\,,,learning-big-page,Handbuch zum Lernen}
138 @end macro
139
140 @macro rlearningnamed{TEXT,DISPLAY}
141 @vindex \TEXT\
142 @ref{\TEXT\,,\DISPLAY\,learning-big-page,Handbuch zum Lernen}
143 @end macro
144
145 @macro ruser{TEXT}
146 @vindex \TEXT\
147 @ref{\TEXT\,,,notation-big-page,Notationsreferenz}
148 @end macro
149
150 @macro rusernamed{TEXT,DISPLAY}
151 @vindex \TEXT\
152 @ref{\TEXT\,,\DISPLAY\,notation-big-page,Notationsreferenz}
153 @end macro
154
155 @macro rprogram{TEXT}
156 @vindex \TEXT\
157 @ref{\TEXT\,,,application-big-page,Anwendungsbenutzung}
158 @end macro
159
160 @macro rprogramnamed{TEXT,DISPLAY}
161 @vindex \TEXT\
162 @ref{\TEXT\,,\DISPLAY\,application-big-page,Anwendungsbenutzung}
163 @end macro
164
165 @macro rlsr{TEXT}
166 @ref{\TEXT\,,,snippets-big-page,Schnipsel}
167 @end macro
168
169 @macro rlsrnamed{TEXT,DISPLAY}
170 @ref{\TEXT\,,\DISPLAY\,snippets-big-page,Schnipsel}
171 @end macro
172
173 @macro rinternals{TEXT}
174 @vindex \TEXT\
175 @ref{\TEXT\,,,internals-big-page,Referenz der Interna}
176 @end macro
177
178 @macro rinternalsnamed{TEXT,DISPLAY}
179 @vindex \TEXT\
180 @ref{\TEXT\,,\DISPLAY\,internals-big-page,Referenz der Interna}
181 @end macro
182
183 @end ifset
184
185
186 @c ** not bigpage **
187
188 @ifclear bigpage
189
190 @macro rglos{TEXT}
191 @vindex \TEXT\
192 @ref{\TEXT\,,,music-glossary,Glossar}
193 @end macro
194
195 @macro rglosnamed{TEXT,DISPLAY}
196 @vindex \TEXT\
197 @ref{\TEXT\,,\DISPLAY\,music-glossary,Glossar}
198 @end macro
199
200 @macro rlearning{TEXT}
201 @vindex \TEXT\
202 @ref{\TEXT\,,,learning,Handbuch zum Lernen}
203 @end macro
204
205 @macro rlearningnamed{TEXT,DISPLAY}
206 @vindex \TEXT\
207 @ref{\TEXT\,,\DISPLAY\,learning,Handbuch zum Lernen}
208 @end macro
209
210 @macro ruser{TEXT}
211 @vindex \TEXT\
212 @ref{\TEXT\,,,notation,Notationsreferenz}
213 @end macro
214
215 @macro rusernamed{TEXT,DISPLAY}
216 @vindex \TEXT\
217 @ref{\TEXT\,,\DISPLAY\,notation,Notationsreferenz}
218 @end macro
219
220 @macro rprogram{TEXT}
221 @vindex \TEXT\
222 @ref{\TEXT\,,,application,Anwendungsbenutzung}
223 @end macro
224
225 @macro rprogramnamed{TEXT,DISPLAY}
226 @vindex \TEXT\
227 @ref{\TEXT\,,\DISPLAY\,application,Anwendungsbenutzung}
228 @end macro
229
230 @macro rlsr{TEXT}
231 @ref{\TEXT\,,,snippets,Schnipsel}
232 @end macro
233
234 @macro rlsrnamed{TEXT,DISPLAY}
235 @ref{\TEXT\,,\DISPLAY\,snippets,Schnipsel}
236 @end macro
237
238 @macro rinternals{TEXT}
239 @vindex \TEXT\
240 @ref{\TEXT\,,,internals,Referenz der Interna}
241 @end macro
242
243 @macro rinternalsnamed{TEXT,DISPLAY}
244 @vindex \TEXT\
245 @ref{\TEXT\,,\DISPLAY\,internals,Referenz der Interna}
246 @end macro
247
248 @end ifclear
249
250 @end ifnottex
251
252
253 @c *** TeX ***
254
255 @iftex
256
257 @c All commands below should work in the middle of the line;
258 @c we thus must not use @vindex directly since it works only if placed
259 @c on a line of its own.  To overcome this problem, we define a
260 @c replacement macro using the internal definition of @vindex which
261 @c delimits arguments in the standard way (i.e., with braces).
262
263 @tex
264 \gdef\lilyvindex#1{\doind{vr}{\code #1}\ignorespaces}
265 @end tex
266
267 @macro rglos{TEXT}
268 @lilyvindex{\TEXT\}
269 @ref{\TEXT\,,,music-glossary,Glossar}
270 @end macro
271
272 @macro rglosnamed{TEXT,DISPLAY}
273 @lilyvindex{\TEXT\}
274 @ref{\TEXT\,,\DISPLAY\,music-glossary,Glossar}
275 @end macro
276
277 @macro rlearning{TEXT}
278 @lilyvindex{\TEXT\}
279 @ref{\TEXT\,,,learning.de,Handbuch zum Lernen}
280 @end macro
281
282 @macro rlearningnamed{TEXT,DISPLAY}
283 @lilyvindex{\TEXT\}
284 @ref{\TEXT\,,\DISPLAY\,learning.de,Handbuch zum Lernen}
285 @end macro
286
287 @macro ruser{TEXT}
288 @lilyvindex{\TEXT\}
289 @ref{\TEXT\,,,notation.de,Notationsreferenz}
290 @end macro
291
292 @macro rusernamed{TEXT,DISPLAY}
293 @lilyvindex{\TEXT\}
294 @ref{\TEXT\,,\DISPLAY\,notation.de,Notationsreferenz}
295 @end macro
296
297 @macro rprogram{TEXT}
298 @lilyvindex{\TEXT\}
299 @ref{\TEXT\,,,application.de,Anwendungsbenutzung}
300 @end macro
301
302 @macro rprogramnamed{TEXT,DISPLAY}
303 @lilyvindex{\TEXT\}
304 @ref{\TEXT\,,\DISPLAY\,application.de,Anwendungsbenutzung}
305 @end macro
306
307 @macro rlsr{TEXT}
308 @lilyvindex{\TEXT\}
309 @ref{\TEXT\,,,snippets,Schnipsel}
310 @end macro
311
312 @macro rlsrnamed{TEXT,DISPLAY}
313 @lilyvindex{\TEXT\}
314 @ref{\TEXT\,,\DISPLAY\,snippets,Schnipsel}
315 @end macro
316
317 @macro rinternals{TEXT}
318 @lilyvindex{\TEXT\}
319 @ref{\TEXT\,,,internals,Referenz der Interna}
320 @end macro
321
322 @macro rinternalsnamed{TEXT,DISPLAY}
323 @lilyvindex{\TEXT\}
324 @ref{\TEXT\,,\DISPLAY\,internals,Referenz der Interna}
325 @end macro
326
327 @end iftex
328
329
330
331 @c   ***** Macros specific to translated docs *****
332
333
334 @macro englishref
335 Dieser Abschnitt wurde noch nicht übersetzt.  Bitte lesen Sie den
336 Abschnitt im englischen Benutzerhandbuch.
337 @end macro
338