From 990f9d2061dcf4509c61c26574fa685f7525baa0 Mon Sep 17 00:00:00 2001 From: Francisco Vila Date: Wed, 28 Feb 2007 12:43:42 +0100 Subject: [PATCH] Additional files for spanish doc --- Documentation/es/index.html.in | 151 +++++++++++++ Documentation/es/user/cheatsheet.itely | 281 ++++++++++++++++++++++++- Documentation/es/user/dedication.itely | 15 ++ Documentation/es/user/lilypond.tely | 228 +++++++++++++++++--- 4 files changed, 642 insertions(+), 33 deletions(-) create mode 100644 Documentation/es/index.html.in diff --git a/Documentation/es/index.html.in b/Documentation/es/index.html.in new file mode 100644 index 0000000000..1c5759378a --- /dev/null +++ b/Documentation/es/index.html.in @@ -0,0 +1,151 @@ + + + + Documentación de LilyPond versión @TOPLEVEL_VERSION@ + + + + + + + + + +
+ +

+ Versión @TOPLEVEL_VERSION@ +
+ @DATE@ +

+
+ + + + + + + + + + + + + + + + +
+
    +
  • + Tutorial +
    (comience por aquí) + +
+
+
    + +
  • + NOTICIAS +
    (cambios producidos desde el último lanzamiento importante) + +
  • + INSTALACIÓN +
    (cómo compilarlo) +
+
+   + + +   + +
+   + + +   + +
+

NOTA: como en todas las páginas HTML de esta + documentación, en la parte de abajo tiene enlaces a las traducciones + de esta página a otros idiomas. +

+ + diff --git a/Documentation/es/user/cheatsheet.itely b/Documentation/es/user/cheatsheet.itely index 24a63dc774..082003bd8c 100644 --- a/Documentation/es/user/cheatsheet.itely +++ b/Documentation/es/user/cheatsheet.itely @@ -1,5 +1,284 @@ +@c -*- coding: utf-8; mode: texinfo; -*- +@c This file is part of lilypond.tely +@ignore + Translation of GIT committish: FILL-IN-HEAD-COMMITTISH + + When revising a translation, copy the HEAD committish of the + version that you are working on. See TRANSLATION for details. +@end ignore + + +@c TODO: add tablature. + @node Cheat sheet @appendix Cheat sheet -UNTRANSLATED NODE: IGNORE ME + +@multitable @columnfractions .35 .3 .35 + +@item @b{Sintaxis} +@tab @b{Descripción} +@tab @b{Ejemplo} + +@item @code{1 2 8 16} +@tab duraciones +@tab +@lilypond[fragment,relative=2,notime] +\set Staff.autoBeaming = ##f +\override Staff.Clef #'break-visibility = #all-invisible +c1 c2 c8 c16 +@end lilypond + +@item @code{c4. c4..} +@tab puntillos +@tab +@lilypond[fragment,relative=2,notime] +\override Staff.Clef #'break-visibility = #all-invisible +c4. c4.. +@end lilypond + +@item @code{c d e f g a b } +@tab escala +@tab +@lilypond[fragment,relative=1,notime] +c d e f g a b +@end lilypond + +@item @code{fis bes} +@tab alteración +@tab +@lilypond[fragment,relative=1,notime] +fis bes +@end lilypond + +@item @code{\clef treble \clef bass } +@tab claves +@tab +@lilypond[fragment,notime] +\clef treble +s4_" " +\clef bass +s4_" " +@end lilypond + +@item @code{\time 3/4 \time 4/4 } +@tab compás +@tab +@lilypond[fragment] +\override Staff.Clef #'transparent = ##t +\time 3/4 +s4_" " +\time 4/4 +s16_" " +@end lilypond + + +@item @code{r4 r8} +@tab silencio +@tab +@lilypond[relative=2,notime,fragment] +\override Staff.Clef #'break-visibility = #all-invisible +r4 r8 +@end lilypond + +@item @code{d ~ d} +@tab ligadura de unión +@tab +@lilypond[relative=2,notime,fragment] +\set Score.timing = ##f +\set Staff.autoBeaming = ##f +d ~ d +@end lilypond + +@item @code{\key es \major } +@tab armadura +@tab +@lilypond[notime,fragment] +\clef treble +\key es \major +s4 +@end lilypond + +@item @var{note}@code{'} +@tab subir una octava +@tab +@lilypond[relative=2,notime,fragment] +\set Score.timing = ##f +\set Staff.autoBeaming = ##f +a a' +@end lilypond + +@item @var{note}@code{,} +@tab bajar una octava +@tab +@lilypond[relative=2,notime,fragment] +\set Score.timing = ##f +\set Staff.autoBeaming = ##f +c c, +@end lilypond + + +@item @code{c( d e)} +@tab ligadura de expresión +@tab +@lilypond[fragment,relative=2] +\set Score.timing = ##f +\set Staff.implicitTimeSignatureVisibility = #all-invisible +\set Staff.autoBeaming = ##f +c( d e) +@end lilypond + + +@item @code{c\( c( d) e\)} +@tab ligadura de fraseo +@tab +@lilypond[fragment,relative=2] +\set Score.timing = ##f +\set Staff.implicitTimeSignatureVisibility = #all-invisible +\set Staff.autoBeaming = ##f +c\( c( d) e\) +@end lilypond + + +@item @code{a8[ b]} +@tab barra +@tab +@lilypond[fragment,relative=2] +\set Score.timing = ##f +\set Staff.implicitTimeSignatureVisibility = #all-invisible +\set Staff.autoBeaming = ##f +a8-[ b-] +@end lilypond + + +@item @code{<< \new Staff ... >>} +@tab más pentagramas +@tab +@lilypond[fragment] +<< \new Staff { c'1 } + \new Staff { c'1 } >> +@end lilypond + + +@item @code{c-> c-.} +@tab articulaciones +@tab +@lilypond[fragment,relative=2] +\set Staff.implicitTimeSignatureVisibility = #all-invisible +c-> c-. +@end lilypond + + +@item @code{c\mf c\sfz} +@tab dinámica +@tab +@lilypond[fragment,relative=2] +\set Staff.implicitTimeSignatureVisibility = #all-invisible +c\mf c\sfz +@end lilypond + + +@item @code{a\< a a\!} +@tab crescendo +@tab +@lilypond[fragment,relative=2] +\set Score.timing = ##f +\set Staff.implicitTimeSignatureVisibility = #all-invisible +\set Staff.autoBeaming = ##f +a\< a a\! +@end lilypond + +@item @code{a\> a a\!} +@tab decrescendo +@tab +@lilypond[fragment,relative=2] +\set Score.timing = ##f +\set Staff.implicitTimeSignatureVisibility = #all-invisible +\set Staff.autoBeaming = ##f +a\> a a\! +@end lilypond + + +@item @code{< >} +@tab acorde +@tab +@lilypond[fragment,relative=2] + +@end lilypond + + +@item @code{\partial 8} +@tab anacrusa +@tab +@lilypond[fragment,relative=2] +\partial 8 +f8 c2 d e +@end lilypond + + +@item @code{\times 2/3 @{f g a@}} +@tab tresillos +@tab +@lilypond[relative=1,fragment] +\times 2/3 { f8 g a } +@end lilypond + + +@item @code{\grace} +@tab mordentes +@tab +@lilypond[relative=2,fragment] +\context Voice { \grace b16 c4 } +@end lilypond + +@item @code{\lyricmode @{ twinkle @}} +@tab escribir la letra +@tab +twinkle + + +@item @code{\new Lyrics} +@tab imprimir la letra +@tab +@lilypond[fragment] +\new Lyrics \lyricmode { twinkle } +@end lilypond + +@item @code{twin -- kle} +@tab separador de sílabas +@tab +@lilypond[fragment,relative=2] +<< + { g'1 g } + \new Lyrics \lyricsto "" { twin -- kle } +>> +@end lilypond + +@item @code{\chordmode @{ c:dim f:maj7 @}} +@tab acordes +@tab +@lilypond[fragment,relative=2] +\chordmode { c:dim f:maj7 } +@end lilypond + +@item @code{\context ChordNames} +@tab imprimir los nombres de los acordes +@tab +@lilypond[fragment,relative=2] +\chords { c:dim f:maj7 } +@end lilypond + +@item @code{<<@{e f@} \\ @{c d@}>>} +@tab polifonía +@tab +@lilypond[fragment,relative=2] +\context Staff <<{e f} \\ {c d}>> +@end lilypond + + +@item @code{s4 s8 s16} +@tab silencios de separación +@tab + +@end multitable diff --git a/Documentation/es/user/dedication.itely b/Documentation/es/user/dedication.itely index e69de29bb2..272bd1597d 100644 --- a/Documentation/es/user/dedication.itely +++ b/Documentation/es/user/dedication.itely @@ -0,0 +1,15 @@ +@c -*- coding: utf-8; mode: texinfo; -*- +@c This file is part of lilypond.tely +@ignore + Translation of GIT committish: FILL-IN-HEAD-COMMITTISH + + When revising a translation, copy the HEAD committish of the + version that you are working on. See TRANSLATION for details. +@end ignore + +@quotation +Queremos dedicar este programa a todos los amigos que hemos +hecho a través de la música. + +Han-Wen and Jan +@end quotation diff --git a/Documentation/es/user/lilypond.tely b/Documentation/es/user/lilypond.tely index 8b68878878..2e5a87ca3e 100644 --- a/Documentation/es/user/lilypond.tely +++ b/Documentation/es/user/lilypond.tely @@ -1,38 +1,199 @@ +\input texinfo @c -*- coding: utf-8; mode: texinfo; -*- +@ignore + Translation of GIT committish: FILL-IN-HEAD-COMMITTISH + + When revising a translation, copy the HEAD committish of the + version that you are working on. See TRANSLATION for details. +@end ignore +@setfilename lilypond.info +@settitle GNU LilyPond +@iftex +@afourpaper +@end iftex + +@c Keep this here, since it pertains to the direntry below. +@ignore +Distributions will want to install lilypond.info in postinstall, doing: + + install-info --info-dir=/usr/share/info out/lilypond.info + + * Prepend GNU for dir, must be unique. + + * Do not list the `lilypond' node at toplevel, so that `info lilypond' + goes to Top. + + * List all commands in direntry. + +@c * lilypond: (lilypond/lilypond)Running LilyPond. Invoking the +@c LilyPond program. +@end ignore + + +@c +@c Info files are installed in subdirectories to allow images to be present. +@c +@dircategory LilyPond +@direntry +* LilyPond: (lilypond/lilypond). The GNU music typesetter. +* abc2ly: (lilypond/lilypond)Invoking abc2ly. Importing ABC. +* convert-ly: (lilypond/lilypond)Invoking convert-ly. Older LilyPond versions. +* etf2ly: (lilypond/lilypond)Invoking etf2ly. Importing Finale. +* lilypond-book: (lilypond/lilypond)LilyPond-book. Itegrating text and music. +* midi2ly: (lilypond/lilypond)Invoking midi2ly. Importing MIDI. +* mup2ly: (lilypond/lilypond)Invoking mup2ly. Importing Mup. +@end direntry + +@c don't remove this comment. +@ignore +@omfcreator Han-Wen Nienhuys, Jan Nieuwenhuizen and Graham Percival +@omfdescription User manual of the LilyPond music engraving system +@omftype user manual +@omfcategory Applications|Publishing +@omflanguage Spanish +@end ignore + + +@ifhtml +Este documento también está disponible como +@uref{source/Documentation/user/lilypond.pdf,PDF}. +@end ifhtml + + +@c This produces the unified index +@syncodeindex fn cp +@syncodeindex vr cp + +@documentlanguage es +@documentencoding utf-8 + +@finalout + +@titlepage +@title LilyPond +@subtitle El tipografiador de música +@author El equipo de desarrollo de LilyPond + + + +Copyright @copyright{} 1999--2006 by the authors + +@quotation +Se otorga permiso para copiar, distribuiy y/o modificar este documento +bajo los términos de la Licencia de Documentación Libre de GNU, versión 1.1 +o cualquier versión posterior publicada por la Free Software Foundation; +sin ninguna de las secciones invariantes. +Se incluye una copia de esta licencia dentro de la sección titulada ``Licencia +de Documentación Libre de GNU''. +@end quotation + +@vskip 20pt + +@lilypond[ragged-right] +\score { + \context Lyrics { + \override Score.RehearsalMark #'self-alignment-X = #LEFT + \override Score.RehearsalMark #'font-size = #-2 + \mark #(ly:export (string-append + "(For LilyPond version " (lilypond-version) ")")) + s2 + } + \layout { + indent = 0.0\pt + } +} +@end lilypond + +@end titlepage + +@copying +Copyright @copyright{} 1999--2006 por los autores + +@quotation +Se otorga permiso para copiar, distribuiy y/o modificar este documento +bajo los términos de la Licencia de Documentación Libre de GNU, versión 1.1 +o cualquier versión posterior publicada por la Free Software Foundation; +sin ninguna de las secciones invariantes. +Se incluye una copia de esta licencia dentro de la sección titulada ``Licencia +de Documentación Libre de GNU''. +@end quotation +@end copying + +@ifnottex +This file documents GNU LilyPond. + +Copyright 1999--2006 by the authors + +@quotation +Se otorga permiso para copiar, distribuiy y/o modificar este documento +bajo los términos de la Licencia de Documentación Libre de GNU, versión 1.1 +o cualquier versión posterior publicada por la Free Software Foundation; +sin ninguna de las secciones invariantes. +Se incluye una copia de esta licencia dentro de la sección titulada ``Licencia +de Documentación Libre de GNU''. +@end quotation +@end ifnottex + +@ifnottex @node Top @top GNU LilyPond --- The music typesetter +@c HJJ: Info needs `@top', which is a synonym for `@unnumbered' in TeX. + +Éste es el manual del usuario para GNU LilyPond de la serie 2.11.x. +@ifhtml +(Consulte el final de esta página para ver el número exacto de la versión). +@end ifhtml -UNTRANSLATED NODE: IGNORE ME +@cindex web site +@cindex URL + +Se puede encontrar más información en +@uref{http://@/www@/.lilypond@/.org/}. El sitio web contiene copias en línea +de la presente documentación y de otras. @include dedication.itely -UNTRANSLATED NODE: IGNORE ME - -@menu -* Preface:: -* Introduction:: -* Tutorial:: -* Putting it all together:: -* Working on LilyPond projects:: -* Tweaking output:: -* Basic notation:: -* Instrument-specific notation:: -* Advanced notation:: -* Changing defaults:: -* Non-musical notation:: -* Spacing issues:: -* Interfaces for programmers:: -* Running LilyPond:: -* LilyPond-book:: -* Converting from other formats:: -* Literature list:: -* Scheme tutorial:: -* Notation manual tables:: -* Templates:: -* Cheat sheet:: -* GNU Free Documentation License:: +@menu +Learning Manual + +* Preface:: Preface. +* Introduction:: What, Why, How. +* Tutorial:: A tutorial introduction. +* Putting it all together:: More explanation about LilyPond concepts. +* Working on LilyPond projects:: Discusses real-life usage. +* Tweaking output:: Introduction to modifying output. + +Notation Reference + +* Basic notation:: Standard musical notation. +* Instrument-specific notation:: Specialized notation. +* Advanced notation:: Less frequently used notation. +* Changing defaults:: Tuning output. +* Non-musical notation:: Output that is not musical notation. +* Spacing issues:: Display of output on paper. +* Interfaces for programmers:: Expert usage. + +Program usage + +* Running LilyPond:: Operation. +* LilyPond-book:: Integrating text and music. +* Converting from other formats:: Converting to lilypond source format. + +Appendices + +* Literature list:: Reference works about music notation. +* Scheme tutorial:: Programming inside LilyPond. +* Notation manual tables:: Tables and charts. +* Templates:: Ready-made templates. +* Cheat sheet:: Summary of LilyPond syntax. +* GNU Free Documentation License:: License of this document. * LilyPond command index:: * LilyPond index:: -@end menu +@end menu +@end ifnottex + +@contents + + @include macros.itexi @include preface.itely @include introduction.itely @@ -40,6 +201,7 @@ UNTRANSLATED NODE: IGNORE ME @include putting.itely @include working.itely @include tweaks.itely + @include basic-notation.itely @include instrument-notation.itely @include advanced-notation.itely @@ -47,25 +209,27 @@ UNTRANSLATED NODE: IGNORE ME @include non-music.itely @include spacing.itely @include programming-interface.itely + @include running.itely @include lilypond-book.itely @include converters.itely + + @include literature.itely @include scheme-tutorial.itely @include notation-appendices.itely @include templates.itely @include cheatsheet.itely @include fdl.itexi + @node LilyPond command index @appendix LilyPond command index -UNTRANSLATED NODE: IGNORE ME +@printindex ky @node LilyPond index - -UNTRANSLATED NODE: IGNORE ME - @appendix LilyPond index -UNTRANSLATED NODE: IGNORE ME +@printindex cp +@bye -- 2.39.5