X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fde%2Flearning%2Ftemplates.itely;h=30e430238502d5528994309b5d591712abeda748;hb=ce4579d52589eea2d01717ee8362fe851fb9a295;hp=43c2c08b2e425f0e8bd38ea9e52173e3c72088f0;hpb=0ed7867f1eda627a41db9580dd6951f9ebd48917;p=lilypond.git diff --git a/Documentation/de/learning/templates.itely b/Documentation/de/learning/templates.itely index 43c2c08b2e..30e4302385 100644 --- a/Documentation/de/learning/templates.itely +++ b/Documentation/de/learning/templates.itely @@ -1,21 +1,24 @@ @c -*- coding: utf-8; mode: texinfo; documentlanguage: de -*- @ignore - Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d + Translation of GIT committish: aa632c095138aaaa0f50f73c90e72efb4b61d745 When revising a translation, copy the HEAD committish of the - version that you are working on. See TRANSLATION for details. + version that you are working on. For details, see the Contributors' + Guide, node Updating translation committishes. @end ignore -@c \version "2.12.0" +@c \version "2.14.0" + +@c Translators: Till Paala @node Vorlagen @appendix Vorlagen @translationof Templates -Dieser Abschnitt des Handbuches enthält Vorlagen, in denen die -LilyPond-Partitur schon eingerichtet ist. Sie müssen nur noch Ihre -Noten einfügen, die Datei mit LilyPond übersetzen und sich an dem +Dieser Abschnitt des Handbuches enthält Vorlagen, in denen die +LilyPond-Partitur schon eingerichtet ist. Sie müssen nur noch Ihre +Noten einfügen, die Datei mit LilyPond übersetzen und sich an dem schönen Notenbild erfreuen! @c bad node name for ancient notation to avoid conflict @@ -26,8 +29,7 @@ schönen Notenbild erfreuen! * Vokalensemble:: * Orchestervorlage:: * Vorlagen für alte Notation:: -* Jazz-Combo:: -* Lilypond-book-Vorlagen:: +* Andere Vorlagen:: @end menu @@ -125,6 +127,30 @@ schönen Notenbild erfreuen! {vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly} +@appendixsubsec SATB auf vier Systemen + +@lilypondfile[verbatim,lilyquote,ragged-right,texidoc] +{satb-choir-template---four-staves.ly} + + +@appendixsubsec Sologesang und zweistimmiger Refrain + +@lilypondfile[verbatim,lilyquote,ragged-right,texidoc] +{vocal-ensemble-template-with-verse-and-refrain.ly} + + +@appendixsubsec Hymnen + +@lilypondfile[verbatim,lilyquote,ragged-right,texidoc] +{hymn-template.ly} + + +@appendixsubsec Psalmengesang + +@lilypondfile[verbatim,lilyquote,ragged-right,texidoc] +{anglican-psalm-template.ly} + + @node Orchestervorlage @appendixsec Orchestervorlage @translationof Orchestral templates @@ -150,9 +176,12 @@ schönen Notenbild erfreuen! @lilypondfile[verbatim,lilyquote,ragged-right,texidoc] {ancient-notation-template----modern-transcription-of-gregorian-music.ly} +@node Andere Vorlagen +@appendixsec Andere Vorlagen +@translationof Other templates + -@node Jazz-Combo -@appendixsec Jazz-Combo +@appendixsubsec Jazz-Combo @translationof Jazz combo @lilypondfile[verbatim,lilyquote,ragged-right,texidoc] @@ -179,7 +208,7 @@ violin concerto as TchaikovskyPI, whereas perhaps you wish to print @ The `line-width' is for \header. @li lypond[quote,verbatim,ragged-right,line-width] -\version "2.12.0" +\version "2.14.0" \header { dedication = "dedication" title = "Title" @@ -225,120 +254,5 @@ violin concerto as TchaikovskyPI, whereas perhaps you wish to print } } @end lilypond -@end ignore - - -@node Lilypond-book-Vorlagen -@appendixsec Lilypond-book-Vorlagen -@translationof Lilypond-book templates - -Diese Vorlagen können mit @code{lilypond-book} benutzt werden. Wenn -Sie dieses Programm noch nicht kennen, lesen Sie bitte den Abschnitt -@rprogram{LilyPond-book}. - -@appendixsubsec LaTeX - -LilyPond-Noten können in LaTeX-Dokumente eingefügt werden. - -@example -\documentclass[]@{article@} - -\begin@{document@} - -Normaler LaTeX-Ttext. - -\begin@{lilypond@} -\relative c'' @{ -a4 b c d -@} -\end@{lilypond@} - -Weiterer LaTeX-Text. - -\begin@{lilypond@} -\relative c'' @{ -d4 c b a -@} -\end@{lilypond@} -\end@{document@} -@end example - -@appendixsubsec Texinfo - -LilyPond-Noten können auch in Texinfo eingefügt werden -- dieses -gesamte Handbuch ist in Texinfo geschrieben. - -@example -\input texinfo -@@node Top - -Texinfo-Text - -@@lilypond[verbatim,fragment,ragged-right] -a4 b c d -@@end lilypond - -Weiterer Texinfo-Text - -@@lilypond[verbatim,fragment,ragged-right] -d4 c b a -@@end lilypond - -@@bye -@end example - - -@appendixsubsec xelatex - -@verbatim -\documentclass{article} -\usepackage{ifxetex} -\ifxetex -%xetex specific stuff -\usepackage{xunicode,fontspec,xltxtra} -\setmainfont[Numbers=OldStyle]{Times New Roman} -\setsansfont{Arial} -\else -%This can be empty if you are not going to use pdftex -\usepackage[T1]{fontenc} -\usepackage[utf8]{inputenc} -\usepackage{mathptmx}%Times -\usepackage{helvet}%Helvetica -\fi -%Here you can insert all packages that pdftex also understands -\usepackage[ngerman,finnish,english]{babel} -\usepackage{graphicx} - -\begin{document} -\title{A short document with LilyPond and xelatex} -\maketitle - -Normal \textbf{font} commands inside the \emph{text} work, -because they \textsf{are supported by \LaTeX{} and XeteX.} -If you want to use specific commands like \verb+\XeTeX+, you -should include them again in a \verb+\ifxetex+ environment. -You can use this to print the \ifxetex \XeTeX{} command \else -XeTeX command \fi which is not known to normal \LaTeX . - -In normal text you can easily use LilyPond commands, like this: - -\begin{lilypond} -{a2 b c'8 c' c' c'} -\end{lilypond} - -\noindent -and so on. - -The fonts of snippets set with LilyPond will have to be set from -inside -of the snippet. For this you should read the AU on how to use -lilypond-book. - -\selectlanguage{ngerman} -Auch Umlaute funktionieren ohne die \LaTeX -Befehle, wie auch alle -anderen -seltsamen Zeichen: ß,ł,ã,č,я,щ, wenn sie von der Schriftart -unterstützt werden. -\end{document} -@end verbatim +@end ignore