From: Carl Sorensen Date: Thu, 23 Dec 2010 15:19:46 +0000 (-0700) Subject: Change stringTunings from list of semitones to list of pitches X-Git-Tag: release/2.13.46-1~15 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=17f11c2f5ab963bfb07b7652b4860dc4dda5540a;p=lilypond.git Change stringTunings from list of semitones to list of pitches This will allow the creation of a tab key that will list the tuning of each of the strings. * ly/string-tuning-init.ly - define music function makeStringTuning that accepts a chord in absolute octave mode to define string tuning. - define music function contextStringTuning that performs the function of makeStringTuning but also sets TabStaff.stringTunings and FretBoards.stringTunings to the newly-defined tuning - include predefined string tunings in makeStringTuning format - add predefined tunings for orchestral strings * scm/tablature.scm - Eliminate the predefined string tunings (they're moved to ly/string-tuning-init.ly * python/convertrules.py - Add rule to convert \set stringTunings = #'(...) to \set stringTunings = #`((ly:make-pitch x y z)...) with ly:make-pitch entries automatically calculated. * Documentation/* - Update documentation as necessary. - Added automatically-generate list of predefined string tunings. * input/regression/* - Update regression tests for new syntax. * Add changes entry * Modify code in changes * run makelsr.py --- diff --git a/Documentation/changes.tely b/Documentation/changes.tely index 29882e3eaf..70e022276a 100644 --- a/Documentation/changes.tely +++ b/Documentation/changes.tely @@ -66,6 +66,16 @@ which scares away people. @end ignore +@item +@code{stringTunings} property values have changed from a list of +semitones above middle C to a list of LilyPond pitch values. +convert-ly will handle the change automatically where the value +of @code{stringTunings} is set to a Scheme constant value. + +New commands @code{makeStringTuning} and @code{contextStringTuning} +allow the creation of string tunings in the form of a Lilypond +chord construct. + @item By using @code{\cueDuringWithClef}, cue notes can now also have their own clef, which is correctly reset at the end of the cue notes. At the begin @@ -243,7 +253,12 @@ In tablature, frets can be indicated with labels other than numbers: @lilypond[verbatim,quote,relative=1] \new TabStaff \with { - stringTunings = #'(17 14 9 5 2 -3) + stringTunings = #`(,(ly:make-pitch 1 3 NATURAL) + ,(ly:make-pitch 1 1 NATURAL) + ,(ly:make-pitch 0 5 NATURAL) + ,(ly:make-pitch 0 3 NATURAL) + ,(ly:make-pitch 0 1 NATURAL) + ,(ly:make-pitch -1 5 NATURAL)) tablatureFormat = #fret-letter-tablature-format } \new TabVoice { diff --git a/Documentation/de/notation/fretted-strings.itely b/Documentation/de/notation/fretted-strings.itely index 266078cfee..acfd7a609a 100644 --- a/Documentation/de/notation/fretted-strings.itely +++ b/Documentation/de/notation/fretted-strings.itely @@ -8,7 +8,7 @@ Guide, node Updating translation committishes. @end ignore -@c \version "2.13.36" +@c \version "2.13.46" @c Translators: Till Paala @@ -514,7 +514,10 @@ mynotes = { \mynotes } \new TabStaff { - \set TabStaff.stringTunings = #'(21 14 7 0) + \set TabStaff.stringTunings = #`(,(ly:make-pitch 1 5 0) + ,(ly:make-pitch 1 1 0) + ,(ly:make-pitch 0 4 0) + ,(ly:make-pitch 0 0 0)) \mynotes } >> diff --git a/Documentation/es/changes.tely b/Documentation/es/changes.tely index f602a49f01..0b241f71a1 100644 --- a/Documentation/es/changes.tely +++ b/Documentation/es/changes.tely @@ -234,7 +234,12 @@ que no sean números: @lilypond[verbatim,quote,relative=1] \new TabStaff \with { - stringTunings = #'(17 14 9 5 2 -3) + stringTunings = #`(,(ly:make-pitch 1 3 NATURAL) + ,(ly:make-pitch 1 1 NATURAL) + ,(ly:make-pitch 0 5 NATURAL) + ,(ly:make-pitch 0 3 NATURAL) + ,(ly:make-pitch 0 1 NATURAL) + ,(ly:make-pitch -1 5 NATURAL)) tablatureFormat = #fret-letter-tablature-format } \new TabVoice { diff --git a/Documentation/es/notation/fretted-strings.itely b/Documentation/es/notation/fretted-strings.itely index 3f1c817c96..3dd5778732 100644 --- a/Documentation/es/notation/fretted-strings.itely +++ b/Documentation/es/notation/fretted-strings.itely @@ -8,7 +8,7 @@ Guide, node Updating translation committishes.. @end ignore -@c \version "2.13.36" +@c \version "2.13.46" @node Instrumentos de cuerda con trastes @section Instrumentos de cuerda con trastes @@ -518,7 +518,10 @@ mynotes = { \mynotes } \new TabStaff { - \set TabStaff.stringTunings = #'(21 14 7 0) + \set TabStaff.stringTunings = #`(,(ly:make-pitch 1 5 0) + ,(ly:make-pitch 1 1 0) + ,(ly:make-pitch 0 4 0) + ,(ly:make-pitch 0 0 0)) \mynotes } >> diff --git a/Documentation/fr/notation/fretted-strings.itely b/Documentation/fr/notation/fretted-strings.itely index 58b0fb1d9f..1a8a7ba510 100644 --- a/Documentation/fr/notation/fretted-strings.itely +++ b/Documentation/fr/notation/fretted-strings.itely @@ -8,7 +8,7 @@ Guide, node Updating translation committishes.. @end ignore -@c \version "2.13.36" +@c \version "2.13.46" @c Translators: Matthieu Jacquot @c Translation checkers: Jean-Charles Malahieude @@ -479,7 +479,10 @@ mynotes = { \mynotes } \new TabStaff { - \set TabStaff.stringTunings = #'(21 14 7 0) + \set TabStaff.stringTunings = #`(,(ly:make-pitch 1 5 0) + ,(ly:make-pitch 1 1 0) + ,(ly:make-pitch 0 4 0) + ,(ly:make-pitch 0 0 0)) \mynotes } >> diff --git a/Documentation/included/display-predefined-string-tunings.ly b/Documentation/included/display-predefined-string-tunings.ly new file mode 100644 index 0000000000..ee26e88c86 --- /dev/null +++ b/Documentation/included/display-predefined-string-tunings.ly @@ -0,0 +1,87 @@ +\version "2.13.46" + +#(define (filter-instrument instrument-name tuning-alist) + (filter (lambda (entry) + (string-prefix? instrument-name + (symbol->string (car entry)))) + tuning-alist)) + +#(define (chord-display tuning-alist-entry) + (let* ((ch-mus (cdr tuning-alist-entry)) + (tuning-symbol (car tuning-alist-entry)) + (ev-chord (car (extract-named-music + ch-mus + 'EventChord))) + (elts (ly:music-property ev-chord 'elements))) + (music-map (lambda (m) + (begin + (if (not (null? (ly:music-property m 'duration))) + (ly:music-set-property! + m + 'duration + (ly:make-duration 0 0 1 1))) + m)) + ev-chord) + (let ((elts (ly:music-property ev-chord 'elements)) + (script (make-music 'TextScriptEvent + 'direction 1 + 'text (symbol->string tuning-symbol)))) + (ly:music-set-property! + ev-chord + 'elements + (cons script elts))) + ev-chord)) + +displayInstrumentDefaultTunings = +#(define-music-function (parser location instrument) (string?) + (let* ((filtered-instruments (filter-instrument instrument defaultStringTunings)) + (display-elements (map chord-display filtered-instruments))) + (make-music 'SequentialMusic 'elements display-elements))) + + +\score { + { + \new Staff { + \textLengthOn + \override Score.RehearsalMark #'self-alignment-X = #LEFT + + \mark \markup {\left-align "Guitar tunings"} + \clef "treble_8" + \displayInstrumentDefaultTunings #"guitar" + \break + + \mark \markup {\left-align "Bass tunings"} + \clef "bass_8" + \displayInstrumentDefaultTunings #"bass" + \break + + \mark \markup {\left-align "Mandolin tunings"} + \clef "treble" + \displayInstrumentDefaultTunings #"mandolin" + \break + + \mark \markup {\left-align "Banjo tunings"} + \clef "treble_8" + \displayInstrumentDefaultTunings #"banjo" + \break + + \mark \markup {\left-align "Ukulele tunings"} + \clef "treble" + \displayInstrumentDefaultTunings #"ukulele" + \clef "alto" + \displayInstrumentDefaultTunings #"tenor-ukulele" + \displayInstrumentDefaultTunings #"baritone-ukulele" + \break + + \mark \markup {\left-align "Orchestral string tunings"} + \clef "treble" + \displayInstrumentDefaultTunings #"violin" + \clef "alto" + \displayInstrumentDefaultTunings #"viola" + \clef "bass" + \displayInstrumentDefaultTunings #"cello" + \clef "bass_8" + \displayInstrumentDefaultTunings #"double-bass" + } + } +} diff --git a/Documentation/notation/fretted-strings.itely b/Documentation/notation/fretted-strings.itely index 462de4096d..0ea8ea61e2 100644 --- a/Documentation/notation/fretted-strings.itely +++ b/Documentation/notation/fretted-strings.itely @@ -7,7 +7,7 @@ Guide, node Updating translation committishes.. @end ignore -@c \version "2.13.36" +@c \version "2.13.46" @node Fretted string instruments @section Fretted string instruments @@ -430,6 +430,11 @@ Guitar special effects are limited to harmonics and slides. @cindex tablature, predefined string tunings @cindex fretted instruments, predefined string tunings @cindex predefined string tunings for fretted instruments +@cindex tablature, violin +@cindex tablature, viola +@cindex tablature, cello +@cindex tablature, bass +@cindex tablature, double bass @funindex StringTunings @@ -440,7 +445,8 @@ specified. The tuning of the strings is given in the @code{stringTunings} property. LilyPond comes with predefined string tunings for banjo, mandolin, -guitar, bass guitar and ukulele. LilyPond automatically sets +guitar, bass guitar, ukulele, violin, viola, cello, and double bass. +LilyPond automatically sets the correct transposition for predefined tunings. The following example is for bass guitar, which sounds an octave lower than written. @@ -466,28 +472,96 @@ The default string tuning is @code{guitar-tuning}, which is the standard EADGBE tuning. Some other predefined tunings are @code{guitar-open-g-tuning}, @code{mandolin-tuning} and @code{banjo-open-g-tuning}. The predefined string tunings -are found in @file{scm/tablature.scm}. +are found in @file{ly/string-tuning-init.ly}. + +@funindex contextStringTunings +@funindex \contextStringTunings +@cindex tablature, custom string tunings +@cindex custom string tunings + +Any desired string tuning can be created. The +@code{\contextStringTuning} function can be +used to define a string tuning and set it as the +@code{stringTunings} for the current context. +@code{\contextStringTuning} takes two arguments: the +symbol in which the string tuning, and a chord construct +that defines the pitches of each string in the tuning. +The chord construct must be in absolute octave mode, +see @ref{Absolute octave entry}. The string +with the highest number (generally the lowest string) must +come first in the chord. For example, we can +define a string tuning for a four-string instrument with pitches +of @code{a''}, @code{d''}, @code{g'}, and @code{c'}: + +@lilypond[quote,verbatim] + +mynotes = { + c'4 e' g' c'' | + e''4 g'' b'' c''' +} + +<< + \new Staff { + \clef treble + \mynotes + } + \new TabStaff { + \contextStringTuning #'custom-tuning + \mynotes + } +>> +@end lilypond + +The @code{stringTunings} property is also used by +@code{FretBoards} to calculate automatic fret diagrams. + +@funindex makeStringTuning +@funindex \makeStringTuning + +String tunings are used as part of the hash key +for predefined fret diagrams +(see @ref{Predefined fret diagrams}). The @code{\makeStringTuning} +function is used to create a string tuning without setting the +@code{stringTunings} property in the current context. The +arguments to @code{\makeStringTuning} are the symbol to be +used for the new string tuning and a chord construct used +to define the tuning. +The previous example could also be written as follows: + +@lilypond[quote,verbatim] +\makeStringTuning #'custom-tuning -A string tuning is a Scheme list of string pitches, +mynotes = { + c'4 e' g' c'' | + e''4 g'' b'' c''' +} + +<< + \new Staff { + \clef treble + \mynotes + } + \new TabStaff { + \set TabStaff.stringTunings = #custom-tuning + \mynotes + } +>> +@end lilypond + +Internally, a string tuning is a Scheme list of string pitches, one for each string, ordered by string number from 1 to N, where string 1 is at the top of the tablature staff and string N is at the bottom. This ordinarily results in ordering from highest pitch to lowest pitch, but some instruments (e.g. ukulele) do not have strings ordered by pitch. -A string pitch in a string tuning list is the pitch difference -of the open string from middle C measured in semitones. The -string pitch must be an integer. LilyPond calculates the actual -pitch of the string by adding the string tuning pitch to the -actual pitch for middle C. - -LilyPond automatically calculates the number of strings in the -@code{TabStaff} as the number of elements in @code{stringTunings}. - -Any desired string tuning can be created. For example, we can -define a string tuning for a four-string instrument with pitches -of @code{a''}, @code{d''}, @code{g'}, and @code{c'}: +A string pitch in a string tuning list is a LilyPond pitch +object. Pitch objects are created with the Scheme function +@code{ly:make-pitch} (see @ref{Scheme functions}). +If desired, a string tuning can be created as a Scheme +literal. The example below recreates the examples above, +but the string tuning is not saved as a separate object: @lilypond[quote,verbatim] mynotes = { @@ -501,12 +575,20 @@ mynotes = { \mynotes } \new TabStaff { - \set TabStaff.stringTunings = #'(21 14 7 0) + \set TabStaff.stringTunings = #`(,(ly:make-pitch 1 5 0) + ,(ly:make-pitch 1 1 0) + ,(ly:make-pitch 0 4 0) + ,(ly:make-pitch 0 0 0)) \mynotes } >> @end lilypond +LilyPond automatically calculates the number of strings in the +@code{TabStaff} and the number of strings in an automatically +calculated @code{FretBoard} as the number of elements +in @code{stringTunings}. + @cindex moderntab clef @cindex clef, moderntab @cindex clef, tab @@ -527,7 +609,13 @@ A modern tab clef can also be used. The modern tab clef supports tablatures from 4 to 7 strings. @seealso +Notation Reference: +@ref{Absolute octave entry}, +@ref{Predefined fret diagrams}, +@ref{Scheme functions}. + Installed Files: +@file{ly/string-tuning-init.ly} @file{scm/tablature.scm}. Snippets: diff --git a/Documentation/notation/notation-appendices.itely b/Documentation/notation/notation-appendices.itely index 2ee583b1d5..fb5cb99cdb 100644 --- a/Documentation/notation/notation-appendices.itely +++ b/Documentation/notation/notation-appendices.itely @@ -8,7 +8,7 @@ Guide, node Updating translation committishes.. @end ignore -@c \version "2.13.36" +@c \version "2.13.46" @node Notation manual tables @appendix Notation manual tables @@ -16,6 +16,7 @@ @menu * Chord name chart:: * Common chord modifiers:: +* Predefined string tunings:: * Predefined fretboard diagrams:: * MIDI instruments:: * List of colors:: @@ -416,6 +417,13 @@ Perfect fifth, octave @end multitable +@node Predefined string tunings +@appendixsec Predefined string tunings + +The chart below shows the predefined string tunings. + +@lilypondfile{display-predefined-string-tunings.ly} + @node Predefined fretboard diagrams @appendixsec Predefined fretboard diagrams diff --git a/Documentation/snippets/accordion-discant-symbols.ly b/Documentation/snippets/accordion-discant-symbols.ly index 710f162c3c..e1dfb230ba 100644 --- a/Documentation/snippets/accordion-discant-symbols.ly +++ b/Documentation/snippets/accordion-discant-symbols.ly @@ -6,7 +6,7 @@ \header { lsrtags = "keyboards" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Los símbolos específicos de acordeón discanto se escriben mediante @code{\\markup}. Se puede trucar la colocación vertical de los diff --git a/Documentation/snippets/adding-a-figured-bass-above-or-below-the-notes.ly b/Documentation/snippets/adding-a-figured-bass-above-or-below-the-notes.ly index 2a29bbf42a..b8e2601166 100644 --- a/Documentation/snippets/adding-a-figured-bass-above-or-below-the-notes.ly +++ b/Documentation/snippets/adding-a-figured-bass-above-or-below-the-notes.ly @@ -6,7 +6,7 @@ \header { lsrtags = "chords, ancient-notation, contexts-and-engravers" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Al escribir un bajo cifrado, podemos situar las cifras encima o debajo diff --git a/Documentation/snippets/adding-ambitus-per-voice.ly b/Documentation/snippets/adding-ambitus-per-voice.ly index d2025a496d..548f9726b5 100644 --- a/Documentation/snippets/adding-ambitus-per-voice.ly +++ b/Documentation/snippets/adding-ambitus-per-voice.ly @@ -6,7 +6,7 @@ \header { lsrtags = "pitches, staff-notation, vocal-music" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Añadir un ámbito por voz" texidoces = " Se puede añadir un ámbito por cada voz. En este caso, el ámbito se diff --git a/Documentation/snippets/adding-an-extra-staff-at-a-line-break.ly b/Documentation/snippets/adding-an-extra-staff-at-a-line-break.ly index 9b9bbd0cde..bdf77ac853 100644 --- a/Documentation/snippets/adding-an-extra-staff-at-a-line-break.ly +++ b/Documentation/snippets/adding-an-extra-staff-at-a-line-break.ly @@ -6,7 +6,7 @@ \header { lsrtags = "staff-notation, contexts-and-engravers, breaks" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Al añadir un pentagrama nuevo en un salto de línea, por desgracia se añade un espacio adicional al final de la línea antes del salto diff --git a/Documentation/snippets/adding-an-extra-staff.ly b/Documentation/snippets/adding-an-extra-staff.ly index d856224e7b..02fddb0017 100644 --- a/Documentation/snippets/adding-an-extra-staff.ly +++ b/Documentation/snippets/adding-an-extra-staff.ly @@ -6,7 +6,7 @@ \header { lsrtags = "staff-notation, contexts-and-engravers" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede añadir (posiblemente de forma temporal) un pentagrama nuevo una vez que la pieza ha comenzado. diff --git a/Documentation/snippets/adding-bar-lines-to-chordnames-context.ly b/Documentation/snippets/adding-bar-lines-to-chordnames-context.ly index aea3f60385..5fd6e0d0d9 100644 --- a/Documentation/snippets/adding-bar-lines-to-chordnames-context.ly +++ b/Documentation/snippets/adding-bar-lines-to-chordnames-context.ly @@ -6,7 +6,7 @@ \header { lsrtags = "chords" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Para añadir indicaciones de línea divisoria dentro del contexto de los nombres de acorde @code{ChordNames}, incluya el grabador diff --git a/Documentation/snippets/adding-beams,-slurs,-ties-etc.-when-using-tuplet-and-non-tuplet-rhythms.ly b/Documentation/snippets/adding-beams,-slurs,-ties-etc.-when-using-tuplet-and-non-tuplet-rhythms.ly index e8228d84e0..b41565a270 100644 --- a/Documentation/snippets/adding-beams,-slurs,-ties-etc.-when-using-tuplet-and-non-tuplet-rhythms.ly +++ b/Documentation/snippets/adding-beams,-slurs,-ties-etc.-when-using-tuplet-and-non-tuplet-rhythms.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms, expressive-marks" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " La sintaxis de LilyPond puede implicar muchas colocaciones poco comunes para los paréntesis, corchetes, etc, que a veces se tienen diff --git a/Documentation/snippets/adding-drum-parts.ly b/Documentation/snippets/adding-drum-parts.ly index ea47f251d8..73d3f161e8 100644 --- a/Documentation/snippets/adding-drum-parts.ly +++ b/Documentation/snippets/adding-drum-parts.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms, percussion" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Mediante la utilización de las potentes herramientas preconfiguradas como la función @code{\\drummode} y el contexto @code{DrumStaff}, la diff --git a/Documentation/snippets/adding-fingerings-to-tablatures.ly b/Documentation/snippets/adding-fingerings-to-tablatures.ly index a15ba0b671..082c217ff9 100644 --- a/Documentation/snippets/adding-fingerings-to-tablatures.ly +++ b/Documentation/snippets/adding-fingerings-to-tablatures.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Para añadir digitaciones a las tablaturas, utilice una combinación de @code{\\markup} y @code{\\finger}. diff --git a/Documentation/snippets/adding-orchestral-cues-to-a-vocal-score.ly b/Documentation/snippets/adding-orchestral-cues-to-a-vocal-score.ly index cf6895718b..a5d99fa4d8 100644 --- a/Documentation/snippets/adding-orchestral-cues-to-a-vocal-score.ly +++ b/Documentation/snippets/adding-orchestral-cues-to-a-vocal-score.ly @@ -6,7 +6,7 @@ \header { lsrtags = "staff-notation, vocal-music" -%% Translation of GIT committish: 4c1aa3b16f7b94ca32b0c022f60ed66826d031b0 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Este ejemplo muestra una forma de simplificar la adición de muchas diff --git a/Documentation/snippets/adding-parentheses-around-an-expressive-mark-or-chordal-note.ly b/Documentation/snippets/adding-parentheses-around-an-expressive-mark-or-chordal-note.ly index 2c9312b130..253493ee87 100644 --- a/Documentation/snippets/adding-parentheses-around-an-expressive-mark-or-chordal-note.ly +++ b/Documentation/snippets/adding-parentheses-around-an-expressive-mark-or-chordal-note.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " La función @code{\\parenthesize} es un truco especial que encierra objetos entre paréntesis. El grob asociado es @code{ParenthesesItem}. diff --git a/Documentation/snippets/adding-the-current-date-to-a-score.ly b/Documentation/snippets/adding-the-current-date-to-a-score.ly index 54e6417e0b..dd7323da13 100644 --- a/Documentation/snippets/adding-the-current-date-to-a-score.ly +++ b/Documentation/snippets/adding-the-current-date-to-a-score.ly @@ -6,7 +6,7 @@ \header { lsrtags = "text, titles" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Con algo de código de Scheme, se puede añadir fácilmente la fecha actual a una partitura. diff --git a/Documentation/snippets/adding-volta-brackets-to-additional-staves.ly b/Documentation/snippets/adding-volta-brackets-to-additional-staves.ly index c2a04a0deb..268775b347 100644 --- a/Documentation/snippets/adding-volta-brackets-to-additional-staves.ly +++ b/Documentation/snippets/adding-volta-brackets-to-additional-staves.ly @@ -6,7 +6,7 @@ \header { lsrtags = "repeats" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " El grabador @code{Volta_engraver} reside de forma predeterminada dentro del contexto de @code{Score}, y los corchetes de la repetición diff --git a/Documentation/snippets/additional-voices-to-avoid-collisions.ly b/Documentation/snippets/additional-voices-to-avoid-collisions.ly index e6db50c5ee..f00ae40097 100644 --- a/Documentation/snippets/additional-voices-to-avoid-collisions.ly +++ b/Documentation/snippets/additional-voices-to-avoid-collisions.ly @@ -6,7 +6,7 @@ \header { lsrtags = "simultaneous-notes" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Voces adicionales para evitar colisiones" texidoces = " En ciertos casos de polifonía compleja, se necesitan voces adicionales diff --git a/Documentation/snippets/adjusting-grace-note-spacing.ly b/Documentation/snippets/adjusting-grace-note-spacing.ly index b438d0d57c..ac1cce2312 100644 --- a/Documentation/snippets/adjusting-grace-note-spacing.ly +++ b/Documentation/snippets/adjusting-grace-note-spacing.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede ajustar la separación entre las notas de adorno utilizando la propiedad @code{spacing-increment} de @code{Score.GraceSpacing}. diff --git a/Documentation/snippets/adjusting-lyrics-vertical-spacing.ly b/Documentation/snippets/adjusting-lyrics-vertical-spacing.ly index 32fd5e49c5..8c964e9ec7 100644 --- a/Documentation/snippets/adjusting-lyrics-vertical-spacing.ly +++ b/Documentation/snippets/adjusting-lyrics-vertical-spacing.ly @@ -1,11 +1,11 @@ % Do not edit this file; it is automatically % generated from Documentation/snippets/new % This file is in the public domain. -%% Note: this file works from version 2.13.39 -\version "2.13.42" +%% Note: this file works from version 2.13.42 +\version "2.13.46" \header { -%% Translation of GIT committish: 0b3f8eb5000541aacdb027a93db57c199fd8ba04 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Este fragmento de código muestra cómo situar la línea de base de la letra más cerca del pentagrama. diff --git a/Documentation/snippets/adjusting-the-shape-of-falls-and-doits.ly b/Documentation/snippets/adjusting-the-shape-of-falls-and-doits.ly index 42ad82a5ea..32fb8d3e4c 100644 --- a/Documentation/snippets/adjusting-the-shape-of-falls-and-doits.ly +++ b/Documentation/snippets/adjusting-the-shape-of-falls-and-doits.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Puede ser necesario trucar la propiedad @code{shortest-duration-space} para poder ajustar el tamaño de las diff --git a/Documentation/snippets/aligning-and-centering-instrument-names.ly b/Documentation/snippets/aligning-and-centering-instrument-names.ly index 47c7b87b97..ec70b3b133 100644 --- a/Documentation/snippets/aligning-and-centering-instrument-names.ly +++ b/Documentation/snippets/aligning-and-centering-instrument-names.ly @@ -6,7 +6,7 @@ \header { lsrtags = "text, paper-and-layout, titles" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " La alineación horizontal de los nombres de instrumento se puede trucar modificando la propiedad @code{Staff.InstrumentName diff --git a/Documentation/snippets/aligning-bar-numbers.ly b/Documentation/snippets/aligning-bar-numbers.ly index efdfa948d9..aa2fdc3841 100644 --- a/Documentation/snippets/aligning-bar-numbers.ly +++ b/Documentation/snippets/aligning-bar-numbers.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Los números de compás se alinean de forma predeterminada por la diff --git a/Documentation/snippets/aligning-marks-with-various-notation-objects.ly b/Documentation/snippets/aligning-marks-with-various-notation-objects.ly index b23f39a077..b1c81d678d 100644 --- a/Documentation/snippets/aligning-marks-with-various-notation-objects.ly +++ b/Documentation/snippets/aligning-marks-with-various-notation-objects.ly @@ -6,7 +6,7 @@ \header { lsrtags = "text" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Si están especificadas, las marcas de texto se pueden alinear con objetos de notación distintos a las líneas divisorias. Entre estos diff --git a/Documentation/snippets/allowing-fingerings-to-be-printed-inside-the-staff.ly b/Documentation/snippets/allowing-fingerings-to-be-printed-inside-the-staff.ly index a3f591000e..f050b54cff 100644 --- a/Documentation/snippets/allowing-fingerings-to-be-printed-inside-the-staff.ly +++ b/Documentation/snippets/allowing-fingerings-to-be-printed-inside-the-staff.ly @@ -6,7 +6,7 @@ \header { lsrtags = "editorial-annotations, fretted-strings, spacing" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Las cifras de digitación orientadas verticalmente se colocan de forma diff --git a/Documentation/snippets/altering-the-length-of-beamed-stems.ly b/Documentation/snippets/altering-the-length-of-beamed-stems.ly index dc93e75cc9..4707706ed4 100644 --- a/Documentation/snippets/altering-the-length-of-beamed-stems.ly +++ b/Documentation/snippets/altering-the-length-of-beamed-stems.ly @@ -6,7 +6,7 @@ \header { lsrtags = "pitches, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede variar la longitud de las plicas de las figuras unidas por una barra mediante la sobreescritura de la propiedad diff --git a/Documentation/snippets/ambitus-with-multiple-voices.ly b/Documentation/snippets/ambitus-with-multiple-voices.ly index f11c48dc0f..ec616de111 100644 --- a/Documentation/snippets/ambitus-with-multiple-voices.ly +++ b/Documentation/snippets/ambitus-with-multiple-voices.ly @@ -6,7 +6,7 @@ \header { lsrtags = "pitches, vocal-music" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Ámbitos con varias voces" texidoces = " La adición del grabador @code{Ambitus_engraver} al contexto de diff --git a/Documentation/snippets/analysis-brackets-above-the-staff.ly b/Documentation/snippets/analysis-brackets-above-the-staff.ly index ab2a228269..fc333d23a5 100644 --- a/Documentation/snippets/analysis-brackets-above-the-staff.ly +++ b/Documentation/snippets/analysis-brackets-above-the-staff.ly @@ -6,7 +6,7 @@ \header { lsrtags = "editorial-annotations, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " De forma predeterminada se añaden corchetes de análisis sencillos debajo del pentagrama. El ejemplo siguiente muestra una manera de diff --git a/Documentation/snippets/ancient-fonts.ly b/Documentation/snippets/ancient-fonts.ly index ccb7921591..e13454aed8 100644 --- a/Documentation/snippets/ancient-fonts.ly +++ b/Documentation/snippets/ancient-fonts.ly @@ -6,7 +6,7 @@ \header { lsrtags = "ancient-notation" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Aquí se muestran muchos de (¿o quizá todos?) los símbolos que están contemplados por la capacidad de LilyPond para la música diff --git a/Documentation/snippets/ancient-headword.ly b/Documentation/snippets/ancient-headword.ly index b73b9c2363..82684b6f05 100644 --- a/Documentation/snippets/ancient-headword.ly +++ b/Documentation/snippets/ancient-headword.ly @@ -2,7 +2,7 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" #(set-global-staff-size 15) \paper { diff --git a/Documentation/snippets/ancient-notation-template----modern-transcription-of-gregorian-music.ly b/Documentation/snippets/ancient-notation-template----modern-transcription-of-gregorian-music.ly index 401a5dafca..853b91378f 100644 --- a/Documentation/snippets/ancient-notation-template----modern-transcription-of-gregorian-music.ly +++ b/Documentation/snippets/ancient-notation-template----modern-transcription-of-gregorian-music.ly @@ -6,7 +6,7 @@ \header { lsrtags = "vocal-music, ancient-notation, template" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Este ejemplo muestra cómo hacer una transcripción moderna de canto gregoriano. El canto gregoriano no tiene compás ni plicas; utiliza diff --git a/Documentation/snippets/ancient-notation-template----modern-transcription-of-mensural-music.ly b/Documentation/snippets/ancient-notation-template----modern-transcription-of-mensural-music.ly index df586afdc4..85955230b1 100644 --- a/Documentation/snippets/ancient-notation-template----modern-transcription-of-mensural-music.ly +++ b/Documentation/snippets/ancient-notation-template----modern-transcription-of-mensural-music.ly @@ -6,7 +6,7 @@ \header { lsrtags = "ancient-notation, template" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Al transcribir música mensural, es útil un «incipit» al compienzo de la pieza para indicar la tonalidad y el tempo diff --git a/Documentation/snippets/ancient-time-signatures.ly b/Documentation/snippets/ancient-time-signatures.ly index f9e9ef8db8..eca6f6462d 100644 --- a/Documentation/snippets/ancient-time-signatures.ly +++ b/Documentation/snippets/ancient-time-signatures.ly @@ -6,7 +6,7 @@ \header { lsrtags = "ancient-notation" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Las indicaciones de compás también se pueden grabar en estilo antiguo. diff --git a/Documentation/snippets/applying-note-head-styles-depending-on-the-step-of-the-scale.ly b/Documentation/snippets/applying-note-head-styles-depending-on-the-step-of-the-scale.ly index 64f0eebecc..9372378ce5 100644 --- a/Documentation/snippets/applying-note-head-styles-depending-on-the-step-of-the-scale.ly +++ b/Documentation/snippets/applying-note-head-styles-depending-on-the-step-of-the-scale.ly @@ -6,7 +6,7 @@ \header { lsrtags = "pitches, editorial-annotations" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Aplicar estilos de cabeza según la nota de la escala" texidoces = " La propiedad @code{shapeNoteStyles} se puede usar para definir varios diff --git a/Documentation/snippets/arabic-improvisation.ly b/Documentation/snippets/arabic-improvisation.ly index 9ff4bba686..8033a79210 100644 --- a/Documentation/snippets/arabic-improvisation.ly +++ b/Documentation/snippets/arabic-improvisation.ly @@ -6,7 +6,7 @@ \header { lsrtags = "world-music" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Para las improvisaciones o @emph{taqasim} que son libres durante unos momentos, se puede omitir la indicación de compás y se puede usar diff --git a/Documentation/snippets/asymmetric-slurs.ly b/Documentation/snippets/asymmetric-slurs.ly index b4d6520b5f..1a77037180 100644 --- a/Documentation/snippets/asymmetric-slurs.ly +++ b/Documentation/snippets/asymmetric-slurs.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede hacer que una ligadura de expresión sea asimétrica para adaptarse mejor a un patrón asimétrico de notas. diff --git a/Documentation/snippets/automatic-beam-subdivisions.ly b/Documentation/snippets/automatic-beam-subdivisions.ly index c44cc27c7d..b75d6f305d 100644 --- a/Documentation/snippets/automatic-beam-subdivisions.ly +++ b/Documentation/snippets/automatic-beam-subdivisions.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se pueden subdividir las barras automáticamente. Estableciendo la propiedad @code{subdivideBeams}, las barras se subdividen en diff --git a/Documentation/snippets/avoiding-collisions-with-chord-fingerings.ly b/Documentation/snippets/avoiding-collisions-with-chord-fingerings.ly index 7df4deb9a1..b8e6a33700 100644 --- a/Documentation/snippets/avoiding-collisions-with-chord-fingerings.ly +++ b/Documentation/snippets/avoiding-collisions-with-chord-fingerings.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms, editorial-annotations, chords, tweaks-and-overrides" -%% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " diff --git a/Documentation/snippets/beam-endings-in-score-context.ly b/Documentation/snippets/beam-endings-in-score-context.ly index b90d7a25b0..b7ad07ca01 100644 --- a/Documentation/snippets/beam-endings-in-score-context.ly +++ b/Documentation/snippets/beam-endings-in-score-context.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: cde045f4e833aa491fb63f2222e14bef49507577 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Las reglas de final de barra especificadas en el contexto @code{Score} se aplican a todos los pentagramas, pero se pueden diff --git a/Documentation/snippets/beam-grouping-in-7-8-time.ly b/Documentation/snippets/beam-grouping-in-7-8-time.ly index d3e4c956be..260631fe68 100644 --- a/Documentation/snippets/beam-grouping-in-7-8-time.ly +++ b/Documentation/snippets/beam-grouping-in-7-8-time.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " No está especificada ninguna agrupación predeterminada automática de las barras para el compás de 7/8, de forma que si se requieren diff --git a/Documentation/snippets/beams-across-line-breaks.ly b/Documentation/snippets/beams-across-line-breaks.ly index 70b00be1ec..01dce11061 100644 --- a/Documentation/snippets/beams-across-line-breaks.ly +++ b/Documentation/snippets/beams-across-line-breaks.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Normalmente están prohibidos los saltos de línea si las barras atraviesan las líneas divisorias. Se puede cambiar este diff --git a/Documentation/snippets/blanking-staff-lines-using-the--whiteout-command.ly b/Documentation/snippets/blanking-staff-lines-using-the--whiteout-command.ly index 058126053f..9974933fab 100644 --- a/Documentation/snippets/blanking-staff-lines-using-the--whiteout-command.ly +++ b/Documentation/snippets/blanking-staff-lines-using-the--whiteout-command.ly @@ -6,7 +6,7 @@ \header { lsrtags = "editorial-annotations, text" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " La instrucción @code{\\whiteout} intercala un rectángulo blanco debajo de un elemento de marcado. Este rectángulo blanco no tapa diff --git a/Documentation/snippets/broken-crescendo-hairpin.ly b/Documentation/snippets/broken-crescendo-hairpin.ly index ac231acad3..090eeb51f1 100644 --- a/Documentation/snippets/broken-crescendo-hairpin.ly +++ b/Documentation/snippets/broken-crescendo-hairpin.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Para hacer invisibles partes de un regulador de crescendo, se usa el método de dibujar un rectángulo blanco encima de la parte diff --git a/Documentation/snippets/caesura-railtracks-with-fermata.ly b/Documentation/snippets/caesura-railtracks-with-fermata.ly index 610121df0d..7234faca59 100644 --- a/Documentation/snippets/caesura-railtracks-with-fermata.ly +++ b/Documentation/snippets/caesura-railtracks-with-fermata.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " A veces se denota una «cesura» mediante una doble marca de respiración parecida a las vías del tren, con un calderón encima. Este fragmento diff --git a/Documentation/snippets/center-text-below-hairpin-dynamics.ly b/Documentation/snippets/center-text-below-hairpin-dynamics.ly index fa48d0a37a..bcbb81c47e 100644 --- a/Documentation/snippets/center-text-below-hairpin-dynamics.ly +++ b/Documentation/snippets/center-text-below-hairpin-dynamics.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks, text" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Este ejemplo proporciona una función para tipografiar un regulador con texto por debajo, como @qq{molto} o @qq{poco}. El ejemplo ilustra diff --git a/Documentation/snippets/centering-markup-on-note-heads-automatically.ly b/Documentation/snippets/centering-markup-on-note-heads-automatically.ly index c599be1556..7857852509 100644 --- a/Documentation/snippets/centering-markup-on-note-heads-automatically.ly +++ b/Documentation/snippets/centering-markup-on-note-heads-automatically.ly @@ -2,7 +2,7 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { lsrtags = "text, tweaks-and-overrides, contexts-and-engravers" diff --git a/Documentation/snippets/changing--flageolet-mark-size.ly b/Documentation/snippets/changing--flageolet-mark-size.ly index 45b2fc0d09..404ec909b9 100644 --- a/Documentation/snippets/changing--flageolet-mark-size.ly +++ b/Documentation/snippets/changing--flageolet-mark-size.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks, unfretted-strings" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Para hacer más pequeño el círculo de @code{\\flageolet} (armónico) utilice la siguiente función de Scheme. diff --git a/Documentation/snippets/changing-a-single-notes-size-in-a-chord.ly b/Documentation/snippets/changing-a-single-notes-size-in-a-chord.ly index e3c25c6dcb..dd9abcf45f 100644 --- a/Documentation/snippets/changing-a-single-notes-size-in-a-chord.ly +++ b/Documentation/snippets/changing-a-single-notes-size-in-a-chord.ly @@ -6,7 +6,7 @@ \header { lsrtags = "simultaneous-notes, editorial-annotations, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se pueden modificar notas individuales de un acorde con la instrucción @code{\\tweak}, alterando la propiedad @code{font-size}. diff --git a/Documentation/snippets/changing-beam-knee-gap.ly b/Documentation/snippets/changing-beam-knee-gap.ly index 7e10afa19b..6708a62b3f 100644 --- a/Documentation/snippets/changing-beam-knee-gap.ly +++ b/Documentation/snippets/changing-beam-knee-gap.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se insertan automáticamente barras en ángulo cuando se detecta un intervalo muy grande entre las notas. Se puede hacer un ajuste diff --git a/Documentation/snippets/changing-chord-separator.ly b/Documentation/snippets/changing-chord-separator.ly index 14cd06a49b..a91acf8406 100644 --- a/Documentation/snippets/changing-chord-separator.ly +++ b/Documentation/snippets/changing-chord-separator.ly @@ -6,7 +6,7 @@ \header { lsrtags = "chords" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede establecer el separador entre las distintas partes del nombre de un acorde para que sea cualquier elemento de marcado. diff --git a/Documentation/snippets/changing-form-of-multi-measure-rests.ly b/Documentation/snippets/changing-form-of-multi-measure-rests.ly index 4668729081..6af956aa61 100644 --- a/Documentation/snippets/changing-form-of-multi-measure-rests.ly +++ b/Documentation/snippets/changing-form-of-multi-measure-rests.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Cambiar la forma de los silencios multicompás" texidoces = " Si hay diez compases de silencio o menos, se imprime en el pentagrama diff --git a/Documentation/snippets/changing-fret-orientations.ly b/Documentation/snippets/changing-fret-orientations.ly index b6dcc7d391..13075b8638 100644 --- a/Documentation/snippets/changing-fret-orientations.ly +++ b/Documentation/snippets/changing-fret-orientations.ly @@ -6,7 +6,7 @@ \header { lsrtags = "fretted-strings" -%% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " diff --git a/Documentation/snippets/changing-midi-output-to-one-channel-per-voice.ly b/Documentation/snippets/changing-midi-output-to-one-channel-per-voice.ly index 8949b825b4..cc24814e23 100644 --- a/Documentation/snippets/changing-midi-output-to-one-channel-per-voice.ly +++ b/Documentation/snippets/changing-midi-output-to-one-channel-per-voice.ly @@ -4,9 +4,29 @@ \version "2.13.39" \header { +%% Translation of GIT committish: d7cf09411ee80eaf0092af0aa532de64c0c6248e + texidocfr = " +Lorsque LilyPond génère un fichier MIDI, chaque portée sera par défaut +affectée à un canal, quel que soit le nombre de voix qu'elle contient. +Ceci permet d'éviter de se retrouver à court de canaux, sachant qu'il +n'y en a que seize de disponibles. + +Le fait de déplacer le @code{Staff_performer} dans le contexte +@code{Voice} permet d'affecter à chaque voix d'une même portée un canal +MIDI spécifique. Dans l'exemple suivant, la même portée donnera lieu à +deux canaux MIDI différents, chacun étant affecté de son propre +@code{midiInstrument}. + +" + doctitlefr = "Affectation d'un canal MIDI par voix" + lsrtags = "contexts-and-engravers, midi" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 + + + + +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Al producir una salida MIDI, el comportamiento predeterminado es que cada pentagrama representa un canal MIDI, con todas las voces diff --git a/Documentation/snippets/changing-partcombine-texts.ly b/Documentation/snippets/changing-partcombine-texts.ly index 1690e6fde4..ff031e7ea9 100644 --- a/Documentation/snippets/changing-partcombine-texts.ly +++ b/Documentation/snippets/changing-partcombine-texts.ly @@ -6,7 +6,7 @@ \header { lsrtags = "simultaneous-notes" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Al utilizar la posibilidad de combinación automática de partes, se puede modificar el texto que se imprime para las secciones de solo diff --git a/Documentation/snippets/changing-text-and-spanner-styles-for-text-dynamics.ly b/Documentation/snippets/changing-text-and-spanner-styles-for-text-dynamics.ly index 9d1c6c2357..525b4cc2d4 100644 --- a/Documentation/snippets/changing-text-and-spanner-styles-for-text-dynamics.ly +++ b/Documentation/snippets/changing-text-and-spanner-styles-for-text-dynamics.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede modificar el texto empleado para los crescendos y decrescendos modificando las propiedades de contexto diff --git a/Documentation/snippets/changing-the-ambitus-gap.ly b/Documentation/snippets/changing-the-ambitus-gap.ly index fce41fe403..682f7ec45c 100644 --- a/Documentation/snippets/changing-the-ambitus-gap.ly +++ b/Documentation/snippets/changing-the-ambitus-gap.ly @@ -2,9 +2,9 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Es posible ajustar la separación en las indicaciones de tesitura. diff --git a/Documentation/snippets/changing-the-appearance-of-a-slur-from-solid-to-dotted-or-dashed.ly b/Documentation/snippets/changing-the-appearance-of-a-slur-from-solid-to-dotted-or-dashed.ly index 334dd06f04..0c17129fa7 100644 --- a/Documentation/snippets/changing-the-appearance-of-a-slur-from-solid-to-dotted-or-dashed.ly +++ b/Documentation/snippets/changing-the-appearance-of-a-slur-from-solid-to-dotted-or-dashed.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks, editorial-annotations" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede cambiar el aspecto de las ligaduras de expresión de continuas a punteadas o intermitentes. diff --git a/Documentation/snippets/changing-the-breath-mark-symbol.ly b/Documentation/snippets/changing-the-breath-mark-symbol.ly index 5d0703f6fe..9a17e9ea1d 100644 --- a/Documentation/snippets/changing-the-breath-mark-symbol.ly +++ b/Documentation/snippets/changing-the-breath-mark-symbol.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " El glifo de la marca de respiración se puede ajustar sobreescribiendo la propiedad de texto del objeto de presentación diff --git a/Documentation/snippets/changing-the-chord-names-to-german-or-semi-german-notation.ly b/Documentation/snippets/changing-the-chord-names-to-german-or-semi-german-notation.ly index 76aac50a88..5c0b3ee35f 100644 --- a/Documentation/snippets/changing-the-chord-names-to-german-or-semi-german-notation.ly +++ b/Documentation/snippets/changing-the-chord-names-to-german-or-semi-german-notation.ly @@ -6,7 +6,7 @@ \header { lsrtags = "chords" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " La nomenclatura inglesa (predeterminada) para los acordes del cifrado americano se puede cambiar por la alemana (@code{\\germanChords} diff --git a/Documentation/snippets/changing-the-number-of-augmentation-dots-per-note.ly b/Documentation/snippets/changing-the-number-of-augmentation-dots-per-note.ly index c4a1b9d812..78b92c84c0 100644 --- a/Documentation/snippets/changing-the-number-of-augmentation-dots-per-note.ly +++ b/Documentation/snippets/changing-the-number-of-augmentation-dots-per-note.ly @@ -2,9 +2,9 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Este código muestra cómo cambiar la cantidad de puntillos de una nota. diff --git a/Documentation/snippets/changing-the-positions-of-figured-bass-alterations.ly b/Documentation/snippets/changing-the-positions-of-figured-bass-alterations.ly index e7f47044ef..67ecd3a2be 100644 --- a/Documentation/snippets/changing-the-positions-of-figured-bass-alterations.ly +++ b/Documentation/snippets/changing-the-positions-of-figured-bass-alterations.ly @@ -6,7 +6,7 @@ \header { lsrtags = "chords" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Las alteraciones y los signos «más» pueden aparecer antes o después de los números, según el valor de las propiedades diff --git a/Documentation/snippets/changing-the-size-of-woodwind-diagrams.ly b/Documentation/snippets/changing-the-size-of-woodwind-diagrams.ly index cbb50256cf..fc24b0ecaa 100644 --- a/Documentation/snippets/changing-the-size-of-woodwind-diagrams.ly +++ b/Documentation/snippets/changing-the-size-of-woodwind-diagrams.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%%% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce +%%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " diff --git a/Documentation/snippets/changing-the-tempo-without-a-metronome-mark.ly b/Documentation/snippets/changing-the-tempo-without-a-metronome-mark.ly index a06a36a31a..cb1cb428be 100644 --- a/Documentation/snippets/changing-the-tempo-without-a-metronome-mark.ly +++ b/Documentation/snippets/changing-the-tempo-without-a-metronome-mark.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms, tweaks-and-overrides, midi" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Para cambiar el tempo en la salida MIDI sin imprimir nada, hacemos invisible la indicación metronómica: diff --git a/Documentation/snippets/changing-the-text-for-sustain-markings.ly b/Documentation/snippets/changing-the-text-for-sustain-markings.ly index 64035db945..974eeb6fbf 100644 --- a/Documentation/snippets/changing-the-text-for-sustain-markings.ly +++ b/Documentation/snippets/changing-the-text-for-sustain-markings.ly @@ -6,7 +6,7 @@ \header { lsrtags = "keyboards, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede usar @code{Staff.pedalSustainStrings} para fijar el texto de las indicaciones de pisar pedal y levantar pedal. Observe que las diff --git a/Documentation/snippets/changing-the-time-signature-without-affecting-the-beaming.ly b/Documentation/snippets/changing-the-time-signature-without-affecting-the-beaming.ly index 6914193fd8..9c128241e0 100644 --- a/Documentation/snippets/changing-the-time-signature-without-affecting-the-beaming.ly +++ b/Documentation/snippets/changing-the-time-signature-without-affecting-the-beaming.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " La instrucción @code{\\time} establece las propiedades @code{timeSignatureFraction}, @code{beatLength}, @code{beatGrouping} y diff --git a/Documentation/snippets/changing-the-tuplet-number.ly b/Documentation/snippets/changing-the-tuplet-number.ly index 4aa12f3e3c..8262d33d78 100644 --- a/Documentation/snippets/changing-the-tuplet-number.ly +++ b/Documentation/snippets/changing-the-tuplet-number.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Cambiar el número del grupo especial" texidoces = " diff --git a/Documentation/snippets/changing-time-signatures-inside-a-polymetric-section-using--scaledurations.ly b/Documentation/snippets/changing-time-signatures-inside-a-polymetric-section-using--scaledurations.ly index fafa772f15..3d7357b42d 100644 --- a/Documentation/snippets/changing-time-signatures-inside-a-polymetric-section-using--scaledurations.ly +++ b/Documentation/snippets/changing-time-signatures-inside-a-polymetric-section-using--scaledurations.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms, contexts-and-engravers" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " La propiedad @code{measureLength}, junto con @code{measurePosition}, determina cuándo es necesario dibujar una diff --git a/Documentation/snippets/chant-or-psalms-notation.ly b/Documentation/snippets/chant-or-psalms-notation.ly index bceccdc32a..949ff1034e 100644 --- a/Documentation/snippets/chant-or-psalms-notation.ly +++ b/Documentation/snippets/chant-or-psalms-notation.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms, vocal-music, ancient-notation, contexts-and-engravers" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Este tipo de notación se utiliza para el canto de los Salmos, en que las estrofas no siempre tienen la misma longitud. diff --git a/Documentation/snippets/chord-name-exceptions.ly b/Documentation/snippets/chord-name-exceptions.ly index 195d92f9cf..e3375f450c 100644 --- a/Documentation/snippets/chord-name-exceptions.ly +++ b/Documentation/snippets/chord-name-exceptions.ly @@ -6,7 +6,7 @@ \header { lsrtags = "chords" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede usar la propiedad @code{chordNameExceptions} para almacenar una lista de notaciones espaciales para acordes diff --git a/Documentation/snippets/chord-name-major7.ly b/Documentation/snippets/chord-name-major7.ly index 958afb7678..852debe549 100644 --- a/Documentation/snippets/chord-name-major7.ly +++ b/Documentation/snippets/chord-name-major7.ly @@ -6,7 +6,7 @@ \header { lsrtags = "chords" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " La presentación del acorde de séptima mayor se puede ajustar mediante majorSevenSymbol. diff --git a/Documentation/snippets/chordchanges-for-fretboards.ly b/Documentation/snippets/chordchanges-for-fretboards.ly index 6d83c8bb2d..8c5dba8fbe 100644 --- a/Documentation/snippets/chordchanges-for-fretboards.ly +++ b/Documentation/snippets/chordchanges-for-fretboards.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede hacer que los diagramas de posiciones se muestren sólo cuando el acorde cambia o al comienzo de una nueva línea. diff --git a/Documentation/snippets/chords-headword.ly b/Documentation/snippets/chords-headword.ly index 5e5529f930..fd110d4245 100644 --- a/Documentation/snippets/chords-headword.ly +++ b/Documentation/snippets/chords-headword.ly @@ -2,7 +2,7 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" #(set-global-staff-size 15) \paper { ragged-right = ##f diff --git a/Documentation/snippets/clip-systems.ly b/Documentation/snippets/clip-systems.ly index 2dbc96b47c..bc5339eea6 100644 --- a/Documentation/snippets/clip-systems.ly +++ b/Documentation/snippets/clip-systems.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Este código muestra cómo recortar (extraer) fragmentos a partir de una partitura completa. diff --git a/Documentation/snippets/clusters.ly b/Documentation/snippets/clusters.ly index e460acd86a..0ba5cd5069 100644 --- a/Documentation/snippets/clusters.ly +++ b/Documentation/snippets/clusters.ly @@ -6,7 +6,7 @@ \header { lsrtags = "simultaneous-notes, chords, keyboards" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Los «clusters» o racimos son un mecanismo para indicar la interpretación de un ámbito de notas al mismo tiempo. diff --git a/Documentation/snippets/combining-dynamics-with-markup-texts.ly b/Documentation/snippets/combining-dynamics-with-markup-texts.ly index c1363f11bf..30b0b2dfb0 100644 --- a/Documentation/snippets/combining-dynamics-with-markup-texts.ly +++ b/Documentation/snippets/combining-dynamics-with-markup-texts.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks, text" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Ciertas indicaciones dinámicas pueden llevar textos (como @qq{più forte} o @qq{piano subito}). Se pueden producir usando un bloque diff --git a/Documentation/snippets/combining-two-parts-on-the-same-staff.ly b/Documentation/snippets/combining-two-parts-on-the-same-staff.ly index 8b396029bd..d759d9fbe0 100644 --- a/Documentation/snippets/combining-two-parts-on-the-same-staff.ly +++ b/Documentation/snippets/combining-two-parts-on-the-same-staff.ly @@ -6,7 +6,7 @@ \header { lsrtags = "simultaneous-notes, text" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " La herramienta de combinación de partes (instrucción diff --git a/Documentation/snippets/compound-time-signatures.ly b/Documentation/snippets/compound-time-signatures.ly index d418d0c956..693a3f0e0d 100644 --- a/Documentation/snippets/compound-time-signatures.ly +++ b/Documentation/snippets/compound-time-signatures.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Indicaciones de compases compuestos" texidoces = " Las indicaciones de compás poco frecuentes como @qq{5/8} se pueden diff --git a/Documentation/snippets/conducting-signs,-measure-grouping-signs.ly b/Documentation/snippets/conducting-signs,-measure-grouping-signs.ly index bd3f2788df..121da29cbf 100644 --- a/Documentation/snippets/conducting-signs,-measure-grouping-signs.ly +++ b/Documentation/snippets/conducting-signs,-measure-grouping-signs.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " La agrupación de pulsos dentro de un compás está controlada por la propiedad de contexto @code{beatStructure}. Hay establecidos valores diff --git a/Documentation/snippets/contemporary-glissando.ly b/Documentation/snippets/contemporary-glissando.ly index 290e2fb86a..eb56086fba 100644 --- a/Documentation/snippets/contemporary-glissando.ly +++ b/Documentation/snippets/contemporary-glissando.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede tipografiar un gissando contemporáneo sin nota final utilizando una nota oculta y temporalización de cadenza. diff --git a/Documentation/snippets/controlling-spanner-visibility-after-a-line-break.ly b/Documentation/snippets/controlling-spanner-visibility-after-a-line-break.ly index 5076468979..f94c3ecc48 100644 --- a/Documentation/snippets/controlling-spanner-visibility-after-a-line-break.ly +++ b/Documentation/snippets/controlling-spanner-visibility-after-a-line-break.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " La visibilidad de los objetos de extensión que acaban en la primera diff --git a/Documentation/snippets/controlling-the-placement-of-chord-fingerings.ly b/Documentation/snippets/controlling-the-placement-of-chord-fingerings.ly index dd8434417c..b61162eb6d 100644 --- a/Documentation/snippets/controlling-the-placement-of-chord-fingerings.ly +++ b/Documentation/snippets/controlling-the-placement-of-chord-fingerings.ly @@ -6,7 +6,7 @@ \header { lsrtags = "editorial-annotations, chords, keyboards, fretted-strings" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede controlar con precisión la colocación de los números de digitación. Para que se tenga en cuenta la orientación de las diff --git a/Documentation/snippets/controlling-the-vertical-ordering-of-scripts.ly b/Documentation/snippets/controlling-the-vertical-ordering-of-scripts.ly index b3c32a0a77..f5133a3424 100644 --- a/Documentation/snippets/controlling-the-vertical-ordering-of-scripts.ly +++ b/Documentation/snippets/controlling-the-vertical-ordering-of-scripts.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " El orden vertical que ocupan las inscripciones gráficas está controlado con la propiedad @code{'script-priority}. Cuanto más diff --git a/Documentation/snippets/controlling-tuplet-bracket-visibility.ly b/Documentation/snippets/controlling-tuplet-bracket-visibility.ly index 83d9eca230..5611d55218 100644 --- a/Documentation/snippets/controlling-tuplet-bracket-visibility.ly +++ b/Documentation/snippets/controlling-tuplet-bracket-visibility.ly @@ -4,7 +4,7 @@ \version "2.13.39" \header { -%% Translation of GIT committish: 67e7cb93611fa389c7e86c6e47e894ff30a8395c +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " El comportamiento predeterminado de la visibilidad de los corchetes de @@ -23,6 +23,10 @@ corchete solamente si no hay barra). + + + + %% Translation of GIT committish: 190a067275167c6dc9dd0afef683d14d392b7033 texidocfr = " diff --git a/Documentation/snippets/creating-a-delayed-turn.ly b/Documentation/snippets/creating-a-delayed-turn.ly index 2865ee93b2..b77764e91c 100644 --- a/Documentation/snippets/creating-a-delayed-turn.ly +++ b/Documentation/snippets/creating-a-delayed-turn.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks, editorial-annotations, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " La creación de un grupeto circular de anticipación entre dos notas, donde la nota inferior del grupeto utiliza una alteración, requiere diff --git a/Documentation/snippets/creating-a-sequence-of-notes-on-various-pitches.ly b/Documentation/snippets/creating-a-sequence-of-notes-on-various-pitches.ly index 8e00a97212..675184d1e2 100644 --- a/Documentation/snippets/creating-a-sequence-of-notes-on-various-pitches.ly +++ b/Documentation/snippets/creating-a-sequence-of-notes-on-various-pitches.ly @@ -6,7 +6,7 @@ \header { lsrtags = "pitches" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " En una música que tenga muchas apariciones de la misma secuencia de notas a distintas alturas, podría ser de diff --git a/Documentation/snippets/creating-arpeggios-across-notes-in-different-voices.ly b/Documentation/snippets/creating-arpeggios-across-notes-in-different-voices.ly index e1cc74e9a1..2c11d344f1 100644 --- a/Documentation/snippets/creating-arpeggios-across-notes-in-different-voices.ly +++ b/Documentation/snippets/creating-arpeggios-across-notes-in-different-voices.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede trazar un símbolo de arpegio entre notas de distintas voces que están sobre el mismo pentagrama si el grabador diff --git a/Documentation/snippets/creating-blank-staves.ly b/Documentation/snippets/creating-blank-staves.ly index d75d132633..bb07d9ff4c 100644 --- a/Documentation/snippets/creating-blank-staves.ly +++ b/Documentation/snippets/creating-blank-staves.ly @@ -6,7 +6,7 @@ \header { lsrtags = "staff-notation, editorial-annotations, contexts-and-engravers, paper-and-layout" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Para crear pentagramas en blanco, genere compases vacíos y después elimine el grabador de números de compás @code{Bar_number_engraver} diff --git a/Documentation/snippets/creating-cross-staff-arpeggios-in-a-piano-staff.ly b/Documentation/snippets/creating-cross-staff-arpeggios-in-a-piano-staff.ly index 44f450cf84..4c73f02b1f 100644 --- a/Documentation/snippets/creating-cross-staff-arpeggios-in-a-piano-staff.ly +++ b/Documentation/snippets/creating-cross-staff-arpeggios-in-a-piano-staff.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Dentro de un @code{PianoStaff}, es posible hacer que un arpegio cruce entre los pentagramas ajustando la propiedad diff --git a/Documentation/snippets/creating-cross-staff-arpeggios-in-other-contexts.ly b/Documentation/snippets/creating-cross-staff-arpeggios-in-other-contexts.ly index 241a4a1160..83b7a9e162 100644 --- a/Documentation/snippets/creating-cross-staff-arpeggios-in-other-contexts.ly +++ b/Documentation/snippets/creating-cross-staff-arpeggios-in-other-contexts.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se pueden crear arpegios que se cruzan entre pentagramas dentro de contextos distintos a @code{GrandStaff}, @code{PianoStaff} y diff --git a/Documentation/snippets/creating-metronome-marks-in-markup-mode.ly b/Documentation/snippets/creating-metronome-marks-in-markup-mode.ly index 87bec2f7d3..c163406815 100644 --- a/Documentation/snippets/creating-metronome-marks-in-markup-mode.ly +++ b/Documentation/snippets/creating-metronome-marks-in-markup-mode.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se pueden crear indicaciones metronómicas nuevas en modo de marcado, pero no cambian el tempo en la salida MIDI. diff --git a/Documentation/snippets/creating-real-parenthesized-dynamics.ly b/Documentation/snippets/creating-real-parenthesized-dynamics.ly index 87ef63c8a2..d970b9354a 100644 --- a/Documentation/snippets/creating-real-parenthesized-dynamics.ly +++ b/Documentation/snippets/creating-real-parenthesized-dynamics.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks, text" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Aunque la manera más fácil de añadir paréntesis a una indicación de dinámica es utilizar un bloque @code{\\markup}, este método diff --git a/Documentation/snippets/creating-simultaneous-rehearsal-marks.ly b/Documentation/snippets/creating-simultaneous-rehearsal-marks.ly index 7dd8ecdba5..54811c9fa0 100644 --- a/Documentation/snippets/creating-simultaneous-rehearsal-marks.ly +++ b/Documentation/snippets/creating-simultaneous-rehearsal-marks.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks, text, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " A diferencia de las inscripciones de texto, las lestras de ensayo no se pueden apilar en un punto concreto de la partitura: sólo se diff --git a/Documentation/snippets/creating-slurs-across-voices.ly b/Documentation/snippets/creating-slurs-across-voices.ly index 00acc7d3fc..592e706bd4 100644 --- a/Documentation/snippets/creating-slurs-across-voices.ly +++ b/Documentation/snippets/creating-slurs-across-voices.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks, keyboards, unfretted-strings" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " En determinadas situaciones es necesario crear ligaduras de expresión entre notas que están en voces distintas. diff --git a/Documentation/snippets/creating-text-spanners.ly b/Documentation/snippets/creating-text-spanners.ly index c815d24342..f100bd5d45 100644 --- a/Documentation/snippets/creating-text-spanners.ly +++ b/Documentation/snippets/creating-text-spanners.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks, text, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Las instrucciones @code{\\startTextSpan} y @code{\\stopTextSpan} permiten la creación de elementos de extensión textuales tan diff --git a/Documentation/snippets/cross-staff-tremolos.ly b/Documentation/snippets/cross-staff-tremolos.ly index c62bdf8eb4..26e6f47756 100644 --- a/Documentation/snippets/cross-staff-tremolos.ly +++ b/Documentation/snippets/cross-staff-tremolos.ly @@ -6,7 +6,7 @@ \header { lsrtags = "repeats, keyboards" -%% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " diff --git a/Documentation/snippets/custodes.ly b/Documentation/snippets/custodes.ly index ce7ba7486f..48a7f511c2 100644 --- a/Documentation/snippets/custodes.ly +++ b/Documentation/snippets/custodes.ly @@ -6,7 +6,7 @@ \header { lsrtags = "ancient-notation, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se pueden tipografiar «custos» en diferentes estilos. diff --git a/Documentation/snippets/customizing-fretboard-fret-diagrams.ly b/Documentation/snippets/customizing-fretboard-fret-diagrams.ly index 909b87da27..5e1f39f2e6 100644 --- a/Documentation/snippets/customizing-fretboard-fret-diagrams.ly +++ b/Documentation/snippets/customizing-fretboard-fret-diagrams.ly @@ -6,7 +6,7 @@ \header { lsrtags = "fretted-strings, tweaks-and-overrides" -%% Translation of GIT committish: 47c3d16c5044555afa49637310a7ee324b06af51 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se pueden establecer las propiedades de los diagramas de posiciones de acordes por medio de @code{'fret-diagram-details}. diff --git a/Documentation/snippets/customizing-markup-fret-diagrams.ly b/Documentation/snippets/customizing-markup-fret-diagrams.ly index ff857f9955..68bc314074 100644 --- a/Documentation/snippets/customizing-markup-fret-diagrams.ly +++ b/Documentation/snippets/customizing-markup-fret-diagrams.ly @@ -6,7 +6,7 @@ \header { lsrtags = "fretted-strings, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se pueden establecer las propiedades de los diagramas de posiciones a través de @code{'fret-diagram-details}. Para los diff --git a/Documentation/snippets/default-direction-of-stems-on-the-center-line-of-the-staff.ly b/Documentation/snippets/default-direction-of-stems-on-the-center-line-of-the-staff.ly index 4a9ea5a4ba..db86542c4f 100644 --- a/Documentation/snippets/default-direction-of-stems-on-the-center-line-of-the-staff.ly +++ b/Documentation/snippets/default-direction-of-stems-on-the-center-line-of-the-staff.ly @@ -6,7 +6,7 @@ \header { lsrtags = "editorial-annotations" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " La dirección predeterminada de las plicas sobre la tercera línea del pentagrama está determinada por la propiedad diff --git a/Documentation/snippets/defining-an-engraver-in-scheme-ambitus-engraver.ly b/Documentation/snippets/defining-an-engraver-in-scheme-ambitus-engraver.ly index 3a2b66fb12..c7ae5f4c2f 100644 --- a/Documentation/snippets/defining-an-engraver-in-scheme-ambitus-engraver.ly +++ b/Documentation/snippets/defining-an-engraver-in-scheme-ambitus-engraver.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Este ejemplo demuestra cómo se puede definir el grabador de ámbito en diff --git a/Documentation/snippets/defining-predefined-fretboards-for-other-instruments.ly b/Documentation/snippets/defining-predefined-fretboards-for-other-instruments.ly index 302df08a9f..db73396533 100644 --- a/Documentation/snippets/defining-predefined-fretboards-for-other-instruments.ly +++ b/Documentation/snippets/defining-predefined-fretboards-for-other-instruments.ly @@ -1,9 +1,67 @@ -%% Do not edit this file; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it -%% This file is in the public domain. -\version "2.13.39" +% Do not edit this file; it is automatically +% generated from Documentation/snippets/new +% This file is in the public domain. +%% Note: this file works from version 2.13.46 +\version "2.13.46" \header { +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 + texidoces = " + +Se pueden añadir diagramas de posiciones predefinidas para +instrumentos nuevos además de los estándar que se usan para la +guitarra. Este archivo muestra cómo se hace, definiendo una afinación +nueva y unas cuantas posiciones para el cuatro venezolano. + +Este archivo también muestra cómo se pueden incluir las digitaciones +en los acordes que se usan como puntos de referencia para la búsqueda +de acordes en la tabla, y mostrarse en el diagrama de posiciones y la +tablatura @code{TabStaff}, pero no en la música. + +Estas posiciones no se pueden transportar porque contienen información +de las cuerdas. Hay planes para corregir esto en un futuro. + +" + doctitlees = "Definición de posiciones predefinidas para otros instrumentos" + + +%% Translation of GIT committish: f23429bc5cfa9d141ef7b4509afc46c140308a1e + texidocde = " +Vordefinierte Bunddiagramme können für neue Instrumente hinzugefügt werden +neben denen, die schon für die Gitarre definiert sind. Dieses Schnipsel +zeigt, wie man eine neue Saitenstimmung definiert und dann eigene vordefinierte +Bunddiagramme bestimmt. Das Beispiel ist für das venezualische Cuatro. + +Dieses Schnipsel zeigt auch, wie Fingersatz in die Akkorde eingebunden +werden kann, um als Referenzpunkt für die Akkordauswahl benutzt werden +kann. Dieser Fingersatz wird im Bunddiagramm und in der Tabulatur, +aber nicht in den Noten angezeigt. + +Diese Bunddiagramme sind nicht transponierbar, weil sie Saiteninformationen +enthalten. Das soll in der Zukunft verbessert werden. + +" + doctitlede = "Eigene vordefinierte Bunddiagramme für andere Instrumente erstellen" + +%% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e + + texidocfr = " +La liste des diagrammes standards prédéfinis pour la guitare peut être +augmentée d'autres définitions spécifiques à d'autres instruments. +Voici comment définir un nouvel accordage ainsi que quelques diagrammes +prédéfinis pour le @qq{cuatro vénézuélien}. + +Cet exemple illustre aussi la manière d'ajouter des doigtés aux +accords ; ils serviront de référence pour la boucle d'accord et seront +indiqués dans les diagrammes et le @code{TabStaff}, mais pas dans la musique. + +Ces diagrammes ne peuvent pas être transposés, dans la mesure où ils +contiennent des informations sur les cordes. Ceci est amené à évoluer. + +" + doctitlefr = "Création de diagrammes de fret prédéfinis pour d'autres instruments" + + lsrtags = "fretted-strings" %% Translation of GIT committish: cde045f4e833aa491fb63f2222e14bef49507577 @@ -81,12 +139,16 @@ information. This is planned to be corrected in the future. doctitle = "Defining predefined fretboards for other instruments" } % begin verbatim + % add FretBoards for the Cuatro % Note: This section could be put into a separate file % predefined-cuatro-fretboards.ly % and \included into each of your compositions -cuatroTuning = #'(11 18 14 9) +cuatroTuning = #`(,(ly:make-pitch 0 6 0) + ,(ly:make-pitch 1 3 SHARP) + ,(ly:make-pitch 1 1 0) + ,(ly:make-pitch 0 5 0)) dSix = { } dMajor = { } @@ -142,8 +204,8 @@ primeros = { \new FretBoards { \set stringTunings = #cuatroTuning - \override FretBoard - #'(fret-diagram-details string-count) = #'4 +% \override FretBoard +% #'(fret-diagram-details string-count) = #'4 \override FretBoard #'(fret-diagram-details finger-code) = #'in-dot \primeros diff --git a/Documentation/snippets/display-bracket-with-only-one-staff-in-a-system.ly b/Documentation/snippets/display-bracket-with-only-one-staff-in-a-system.ly index 225420c6ed..f2f3d9c107 100644 --- a/Documentation/snippets/display-bracket-with-only-one-staff-in-a-system.ly +++ b/Documentation/snippets/display-bracket-with-only-one-staff-in-a-system.ly @@ -6,7 +6,7 @@ \header { lsrtags = "staff-notation, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Si hay un solo pentagrama en un de los tipos de sistema @code{ChoirStaff} o @code{StaffGroup}, el comportamiento diff --git a/Documentation/snippets/displaying-complex-chords.ly b/Documentation/snippets/displaying-complex-chords.ly index 71f8ae84da..f369aea201 100644 --- a/Documentation/snippets/displaying-complex-chords.ly +++ b/Documentation/snippets/displaying-complex-chords.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " He aquí una forma de imprimir un acorde en el que suena la misma nota diff --git a/Documentation/snippets/displaying-grob-ancestry.ly b/Documentation/snippets/displaying-grob-ancestry.ly index 74dd132e69..06d9a7664d 100644 --- a/Documentation/snippets/displaying-grob-ancestry.ly +++ b/Documentation/snippets/displaying-grob-ancestry.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Al trabajar con los callbacks de un grob, puede ser de mucha ayuda diff --git a/Documentation/snippets/dodecaphonic-style-accidentals-for-each-note-including-naturals.ly b/Documentation/snippets/dodecaphonic-style-accidentals-for-each-note-including-naturals.ly index ce4df9cf07..4a0367b91f 100644 --- a/Documentation/snippets/dodecaphonic-style-accidentals-for-each-note-including-naturals.ly +++ b/Documentation/snippets/dodecaphonic-style-accidentals-for-each-note-including-naturals.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Alteraciones de estilo dodecafónico para todas las notas incluidas las naturales" texidoces = " En las obras de principios del s.XX, empezando por Schoenberg, Berg y diff --git a/Documentation/snippets/dynamics-custom-text-spanner-postfix.ly b/Documentation/snippets/dynamics-custom-text-spanner-postfix.ly index ff928493d1..908d433546 100644 --- a/Documentation/snippets/dynamics-custom-text-spanner-postfix.ly +++ b/Documentation/snippets/dynamics-custom-text-spanner-postfix.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Funciones postfijas para la creación de objetos de extensión de texto diff --git a/Documentation/snippets/dynamics-text-spanner-postfix.ly b/Documentation/snippets/dynamics-text-spanner-postfix.ly index 7e148f8de2..2d5d151269 100644 --- a/Documentation/snippets/dynamics-text-spanner-postfix.ly +++ b/Documentation/snippets/dynamics-text-spanner-postfix.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Los objetos de extensión \cresc, \dim y \decresc ahora se pueden @@ -49,11 +49,9 @@ une indication textuelle avec extension. lsrtags = "expressive-marks, tweaks-and-overrides" - texidoc = "The \cresc, \dim and \decresc spanners can now be redefined as -postfix operators and produce one text spanner. Defining custom spanners is -also easy. Hairpin and text crescendi can be easily mixed. \< and \> produce -hairpins by default, \cresc etc. produce text spanners by default. -" + texidoc = "Custom text spanners can be defined and used with hairpin + and text crescendos. @code{\<} and @code{\>} produce hairpins by + default, @code{\\cresc} etc. produce text spanners by default." doctitle = "Dynamics text spanner postfix" } % begin verbatim @@ -64,22 +62,6 @@ crpoco = 'span-direction START 'span-type 'text 'span-text "cresc. poco a poco") -% Redefine the existing \cresc, \dim and \decresc commands to use postfix syntax -cresc = -#(make-music 'CrescendoEvent - 'span-direction START - 'span-type 'text - 'span-text "cresc.") -dim = -#(make-music 'DecrescendoEvent - 'span-direction START - 'span-type 'text - 'span-text "dim.") -decresc = -#(make-music 'DecrescendoEvent - 'span-direction START - 'span-type 'text - 'span-text "decresc.") \relative c' { c4\cresc d4 e4 f4 | diff --git a/Documentation/snippets/editorial-headword.ly b/Documentation/snippets/editorial-headword.ly index 769b82d074..a8f642d517 100644 --- a/Documentation/snippets/editorial-headword.ly +++ b/Documentation/snippets/editorial-headword.ly @@ -2,7 +2,7 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \include "english.ly" #(set-global-staff-size 15) \paper { diff --git a/Documentation/snippets/embedding-native-postscript-in-a--markup-block.ly b/Documentation/snippets/embedding-native-postscript-in-a--markup-block.ly index e1df8cd871..5d2605d1be 100644 --- a/Documentation/snippets/embedding-native-postscript-in-a--markup-block.ly +++ b/Documentation/snippets/embedding-native-postscript-in-a--markup-block.ly @@ -6,7 +6,7 @@ \header { lsrtags = "editorial-annotations, text" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede insertar códico PostScript directamente dentro de un bloque @code{\\markup}. diff --git a/Documentation/snippets/engravers-one-by-one.ly b/Documentation/snippets/engravers-one-by-one.ly index 72cc670dbc..7c8b72874a 100644 --- a/Documentation/snippets/engravers-one-by-one.ly +++ b/Documentation/snippets/engravers-one-by-one.ly @@ -6,7 +6,7 @@ \header { lsrtags = "contexts-and-engravers" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Del problema central de la notación, esto es, crear un determinado símbolo, se encargan los «plugins» o complementos añadidos. Cada diff --git a/Documentation/snippets/engraving-ties-manually.ly b/Documentation/snippets/engraving-ties-manually.ly index 9d5c482965..216b46e9bc 100644 --- a/Documentation/snippets/engraving-ties-manually.ly +++ b/Documentation/snippets/engraving-ties-manually.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Grabado manual de las ligaduras" texidoces = " Se pueden grabar a mano las ligaduras modificando la propiedad diff --git a/Documentation/snippets/entering-several-tuplets-using-only-one--times-command.ly b/Documentation/snippets/entering-several-tuplets-using-only-one--times-command.ly index 1ff014cc16..12fb1da8a9 100644 --- a/Documentation/snippets/entering-several-tuplets-using-only-one--times-command.ly +++ b/Documentation/snippets/entering-several-tuplets-using-only-one--times-command.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Escribir varios grupos especiales usando una sola instrucción \\times" texidoces = " La propiedad @code{tupletSpannerDuration} establece cuánto debe durar diff --git a/Documentation/snippets/expressive-headword.ly b/Documentation/snippets/expressive-headword.ly index 7768a95234..67d6aae247 100644 --- a/Documentation/snippets/expressive-headword.ly +++ b/Documentation/snippets/expressive-headword.ly @@ -2,7 +2,7 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \include "english.ly" #(set-global-staff-size 15) \paper { diff --git a/Documentation/snippets/faking-a-hammer-in-tablatures.ly b/Documentation/snippets/faking-a-hammer-in-tablatures.ly index 48c97b954a..acb732f627 100644 --- a/Documentation/snippets/faking-a-hammer-in-tablatures.ly +++ b/Documentation/snippets/faking-a-hammer-in-tablatures.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede simular un @qq{hammer} o ligado ascendente con ligaduras de diff --git a/Documentation/snippets/figured-bass-headword.ly b/Documentation/snippets/figured-bass-headword.ly index f6b5275bc7..067ba82df8 100644 --- a/Documentation/snippets/figured-bass-headword.ly +++ b/Documentation/snippets/figured-bass-headword.ly @@ -2,7 +2,7 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" #(set-global-staff-size 15) \paper { ragged-right = ##f diff --git a/Documentation/snippets/fingering-symbols-for-wind-instruments.ly b/Documentation/snippets/fingering-symbols-for-wind-instruments.ly index f95dc11fd7..928aa857dc 100644 --- a/Documentation/snippets/fingering-symbols-for-wind-instruments.ly +++ b/Documentation/snippets/fingering-symbols-for-wind-instruments.ly @@ -6,7 +6,7 @@ \header { lsrtags = "winds" -%% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se pueden conseguir símbolos especiales combinando glifos existentes, lo que es de utilidad para la notación de instrumentos de viento. diff --git a/Documentation/snippets/fingerings,-string-indications,-and-right-hand-fingerings.ly b/Documentation/snippets/fingerings,-string-indications,-and-right-hand-fingerings.ly index 76a137c2e8..f9f7e66bc4 100644 --- a/Documentation/snippets/fingerings,-string-indications,-and-right-hand-fingerings.ly +++ b/Documentation/snippets/fingerings,-string-indications,-and-right-hand-fingerings.ly @@ -6,7 +6,7 @@ \header { lsrtags = "fretted-strings" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " En este ejemplo se combinan las digitaciones de la mano izquierda, indicaciones del número de cuerda y digitaciones de la mano diff --git a/Documentation/snippets/flamenco-notation.ly b/Documentation/snippets/flamenco-notation.ly index 5dddf92ccf..a8601a674a 100644 --- a/Documentation/snippets/flamenco-notation.ly +++ b/Documentation/snippets/flamenco-notation.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " diff --git a/Documentation/snippets/flat-flags-and-beam-nibs.ly b/Documentation/snippets/flat-flags-and-beam-nibs.ly index 74bddd3ac6..6661f3cc2c 100644 --- a/Documentation/snippets/flat-flags-and-beam-nibs.ly +++ b/Documentation/snippets/flat-flags-and-beam-nibs.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Son posibles tanto los corchetes rectos sobre notas sueltas como extremos de barra sueltos en figuras unidas, con una combinación de diff --git a/Documentation/snippets/forcing-horizontal-shift-of-notes.ly b/Documentation/snippets/forcing-horizontal-shift-of-notes.ly index cd677dc6e7..395ac03d37 100644 --- a/Documentation/snippets/forcing-horizontal-shift-of-notes.ly +++ b/Documentation/snippets/forcing-horizontal-shift-of-notes.ly @@ -6,7 +6,7 @@ \header { lsrtags = "simultaneous-notes, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Forzar el desplazamiento horizontal de las notas" diff --git a/Documentation/snippets/forcing-hyphens-to-be-shown.ly b/Documentation/snippets/forcing-hyphens-to-be-shown.ly index 894863a226..342418d1b0 100644 --- a/Documentation/snippets/forcing-hyphens-to-be-shown.ly +++ b/Documentation/snippets/forcing-hyphens-to-be-shown.ly @@ -6,7 +6,7 @@ \header { lsrtags = "vocal-music" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Si LilyPond no cree que haya sitio suficiente para un guión separador diff --git a/Documentation/snippets/fretboards-alternate-tables.ly b/Documentation/snippets/fretboards-alternate-tables.ly index 0341e93ce4..1e65517d7f 100644 --- a/Documentation/snippets/fretboards-alternate-tables.ly +++ b/Documentation/snippets/fretboards-alternate-tables.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 67e7cb93611fa389c7e86c6e47e894ff30a8395c +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se pueden crear tablas alternativas de diagramas de posiciones. Se diff --git a/Documentation/snippets/fretted-headword.ly b/Documentation/snippets/fretted-headword.ly index bf8904176e..d487b57399 100644 --- a/Documentation/snippets/fretted-headword.ly +++ b/Documentation/snippets/fretted-headword.ly @@ -7,7 +7,7 @@ % on melodies from Bellini's "Norma" % %*****************************************************************% -\version "2.13.40" +\version "2.13.46" #(set-global-staff-size 15) \paper { diff --git a/Documentation/snippets/generating-random-notes.ly b/Documentation/snippets/generating-random-notes.ly index edef2c8249..c52624e716 100644 --- a/Documentation/snippets/generating-random-notes.ly +++ b/Documentation/snippets/generating-random-notes.ly @@ -6,7 +6,7 @@ \header { lsrtags = "pitches" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Este fragmento de código basado en Scheme genera 24 notas aleatorias (o tantas como se necesiten), basándose en la diff --git a/Documentation/snippets/graphical-and-text-woodwind-diagrams.ly b/Documentation/snippets/graphical-and-text-woodwind-diagrams.ly index 2516345fc0..948f48e82c 100644 --- a/Documentation/snippets/graphical-and-text-woodwind-diagrams.ly +++ b/Documentation/snippets/graphical-and-text-woodwind-diagrams.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%%% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce +%%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " En muchos casos, las llaves que no están en la columna central se diff --git a/Documentation/snippets/grid-lines--changing-their-appearance.ly b/Documentation/snippets/grid-lines--changing-their-appearance.ly index 56fb6623ca..7dfbe6340b 100644 --- a/Documentation/snippets/grid-lines--changing-their-appearance.ly +++ b/Documentation/snippets/grid-lines--changing-their-appearance.ly @@ -6,7 +6,7 @@ \header { lsrtags = "editorial-annotations" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede cambiar el aspecto de las líneas de rejilla sobreescribiendo algunas de sus propiedades. @@ -25,11 +25,11 @@ geändert werden. %% Translation of GIT committish: 9ccf7f0f5e52e074f3b7852416ad5b78718395c8 texidocfr = " -Modifier certaines des propriétés du cadrillage temporel aura pour effet +Modifier certaines des propriétés du quadrillage temporel aura pour effet d'en changer l'apparence. " - doctitlefr = "Apparence du cadrillage temporel" + doctitlefr = "Apparence du quadrillage temporel" texidoc = " diff --git a/Documentation/snippets/grid-lines--emphasizing-rhythms-and-notes-synchronization.ly b/Documentation/snippets/grid-lines--emphasizing-rhythms-and-notes-synchronization.ly index 544074da62..b49e15d068 100644 --- a/Documentation/snippets/grid-lines--emphasizing-rhythms-and-notes-synchronization.ly +++ b/Documentation/snippets/grid-lines--emphasizing-rhythms-and-notes-synchronization.ly @@ -6,7 +6,7 @@ \header { lsrtags = "editorial-annotations" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se pueden trazar líneas verticales normales entre pentagramas para mostrar la relación entre notas; sin embargo, en caso de música diff --git a/Documentation/snippets/grouping-beats.ly b/Documentation/snippets/grouping-beats.ly index c223493ce4..e2d519292e 100644 --- a/Documentation/snippets/grouping-beats.ly +++ b/Documentation/snippets/grouping-beats.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Los patrones de barrado se pueden alterar con la propiedad @code{beatGrouping}: diff --git a/Documentation/snippets/guitar-slides.ly b/Documentation/snippets/guitar-slides.ly index 737deea49e..020ecefd38 100644 --- a/Documentation/snippets/guitar-slides.ly +++ b/Documentation/snippets/guitar-slides.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " diff --git a/Documentation/snippets/guitar-strum-rhythms.ly b/Documentation/snippets/guitar-strum-rhythms.ly index 427f93f7bd..f7b92957ba 100644 --- a/Documentation/snippets/guitar-strum-rhythms.ly +++ b/Documentation/snippets/guitar-strum-rhythms.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms, fretted-strings" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Para la música de guitarra, es posible mostrar los ritmos de rasgueo, además de las notas de la melodía, acordes y diagramas de posiciones. diff --git a/Documentation/snippets/hairpins-with-different-line-styles.ly b/Documentation/snippets/hairpins-with-different-line-styles.ly index 4cfff48ada..3c8f5385f6 100644 --- a/Documentation/snippets/hairpins-with-different-line-styles.ly +++ b/Documentation/snippets/hairpins-with-different-line-styles.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Los reguladores pueden imprimirse en uno cualquiera de los estilos de @code{line-interface}: discontinuo, punteado, línea, trino o zig-zag. diff --git a/Documentation/snippets/hiding-accidentals-on-tied-notes-at-the-start-of-a-new-system.ly b/Documentation/snippets/hiding-accidentals-on-tied-notes-at-the-start-of-a-new-system.ly index bd80b8c369..a4bf58a8aa 100644 --- a/Documentation/snippets/hiding-accidentals-on-tied-notes-at-the-start-of-a-new-system.ly +++ b/Documentation/snippets/hiding-accidentals-on-tied-notes-at-the-start-of-a-new-system.ly @@ -2,9 +2,9 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Aquí se muestra la manera de ocultar las alteraciones de las notas diff --git a/Documentation/snippets/hiding-the-extender-line-for-text-dynamics.ly b/Documentation/snippets/hiding-the-extender-line-for-text-dynamics.ly index 93a66ae9ee..0fc3a9d441 100644 --- a/Documentation/snippets/hiding-the-extender-line-for-text-dynamics.ly +++ b/Documentation/snippets/hiding-the-extender-line-for-text-dynamics.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Los cambios de dinámica con estilo de texto (como cresc. y dim.) se imprimen con una línea intermitente que muestra su alcance. diff --git a/Documentation/snippets/hymn-template.ly b/Documentation/snippets/hymn-template.ly index 080b78a651..fb3088f6aa 100644 --- a/Documentation/snippets/hymn-template.ly +++ b/Documentation/snippets/hymn-template.ly @@ -6,7 +6,7 @@ \header { lsrtags = "vocal-music, template" -%% Translation of GIT committish: 8b9a694a483632437fb5110b3531074ddb31c04a +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Este fragmento de código muestra una forma de preparar un himno cuando cada línea comienza con un compás parcial. También muestra cómo diff --git a/Documentation/snippets/incipit.ly b/Documentation/snippets/incipit.ly index 1b8e0ef435..7ed3a6b70b 100644 --- a/Documentation/snippets/incipit.ly +++ b/Documentation/snippets/incipit.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Los «incipit» se pueden escribir utilizando el grob del nombre del instruemento, pero manteniendo independientes las definiciones del diff --git a/Documentation/snippets/indicating-cross-staff-chords-with-arpeggio-bracket.ly b/Documentation/snippets/indicating-cross-staff-chords-with-arpeggio-bracket.ly index 363e967fcf..061b77bfcc 100644 --- a/Documentation/snippets/indicating-cross-staff-chords-with-arpeggio-bracket.ly +++ b/Documentation/snippets/indicating-cross-staff-chords-with-arpeggio-bracket.ly @@ -6,7 +6,7 @@ \header { lsrtags = "keyboards" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Un corchete de arpegio puede indicar que se tienen que tocar con la misma mano notas que están en dos pentagramas distintos. Para hacerlo, diff --git a/Documentation/snippets/inserting-a-caesura.ly b/Documentation/snippets/inserting-a-caesura.ly index 93ebf24e47..020425aa4b 100644 --- a/Documentation/snippets/inserting-a-caesura.ly +++ b/Documentation/snippets/inserting-a-caesura.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Las marcas de cesura se pueden crear sobreescribiendo la propiedad @code{'text} del objeto @code{BreathingSign}. También está disponible diff --git a/Documentation/snippets/isolated-percent-repeats.ly b/Documentation/snippets/isolated-percent-repeats.ly index a6561527b8..1208c9bce4 100644 --- a/Documentation/snippets/isolated-percent-repeats.ly +++ b/Documentation/snippets/isolated-percent-repeats.ly @@ -6,7 +6,7 @@ \header { lsrtags = "repeats" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " También se pueden imprimir símbolos de porcentaje sueltos. diff --git a/Documentation/snippets/jazz-combo-template.ly b/Documentation/snippets/jazz-combo-template.ly index d296fc213e..7018b613b9 100644 --- a/Documentation/snippets/jazz-combo-template.ly +++ b/Documentation/snippets/jazz-combo-template.ly @@ -6,7 +6,7 @@ \header { lsrtags = "keyboards, percussion, fretted-strings, template" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Ésta es una plantilla bastante avanzada, para un conjunto de jazz. Observe que la notación de todos los instrumentos está en diff --git a/Documentation/snippets/keep-change-clefs-full-sized.ly b/Documentation/snippets/keep-change-clefs-full-sized.ly index dbe655bee0..2aafeebf9a 100644 --- a/Documentation/snippets/keep-change-clefs-full-sized.ly +++ b/Documentation/snippets/keep-change-clefs-full-sized.ly @@ -6,7 +6,7 @@ \header { lsrtags = "pitches, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Cuando se produce un cambio de clave, el símbolo de clave se imprime a un tamaño menor que la clave inicial. Esto se puede ajustar con diff --git a/Documentation/snippets/keyboard-headword.ly b/Documentation/snippets/keyboard-headword.ly index dc1a540641..0643eac53e 100644 --- a/Documentation/snippets/keyboard-headword.ly +++ b/Documentation/snippets/keyboard-headword.ly @@ -2,7 +2,7 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \include "english.ly" #(set-global-staff-size 15) diff --git a/Documentation/snippets/letter-tablature-formatting.ly b/Documentation/snippets/letter-tablature-formatting.ly index 60f997dfde..226e34f53c 100644 --- a/Documentation/snippets/letter-tablature-formatting.ly +++ b/Documentation/snippets/letter-tablature-formatting.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " La tablatura se puede formatear utilizando letras en lugar de números. diff --git a/Documentation/snippets/line-arrows.ly b/Documentation/snippets/line-arrows.ly index b5149c0f5d..3bf2c717a6 100644 --- a/Documentation/snippets/line-arrows.ly +++ b/Documentation/snippets/line-arrows.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se pueden aplicar puntas de flecha a los elementos de extensión de texto y de línea (como el Glissando). diff --git a/Documentation/snippets/lyrics-alignment.ly b/Documentation/snippets/lyrics-alignment.ly index 6d85d9eecd..174bf3d042 100644 --- a/Documentation/snippets/lyrics-alignment.ly +++ b/Documentation/snippets/lyrics-alignment.ly @@ -6,7 +6,7 @@ \header { lsrtags = "text, vocal-music" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " La alineación horizontal de la letra se puede ajustar sobreescribiendo la propiedad @code{self-alignment-X} del objeto @code{LyricText}. diff --git a/Documentation/snippets/makam-example.ly b/Documentation/snippets/makam-example.ly index 602227f3a5..a062e9d982 100644 --- a/Documentation/snippets/makam-example.ly +++ b/Documentation/snippets/makam-example.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " El «Makam» es un tipo de melodía de Turquía que utiliza alteraciones microtonales de 1/9 de tono. Consulte el diff --git a/Documentation/snippets/making-slurs-with-complex-dash-structure.ly b/Documentation/snippets/making-slurs-with-complex-dash-structure.ly index be216b7d82..26416ef4dd 100644 --- a/Documentation/snippets/making-slurs-with-complex-dash-structure.ly +++ b/Documentation/snippets/making-slurs-with-complex-dash-structure.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Las ligaduras de expresión se pueden construir con patrones de diff --git a/Documentation/snippets/making-some-staff-lines-thicker-than-the-others.ly b/Documentation/snippets/making-some-staff-lines-thicker-than-the-others.ly index 1ade793d52..e28111ae7e 100644 --- a/Documentation/snippets/making-some-staff-lines-thicker-than-the-others.ly +++ b/Documentation/snippets/making-some-staff-lines-thicker-than-the-others.ly @@ -6,7 +6,7 @@ \header { lsrtags = "staff-notation, editorial-annotations" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede engrosar una línea del pentagrama con fines pedagógicos (p.ej. la tercera línea o la de la clave de Sol). Esto se puede diff --git a/Documentation/snippets/measure-counter.ly b/Documentation/snippets/measure-counter.ly index 0feabc1f3b..6df2e0a127 100644 --- a/Documentation/snippets/measure-counter.ly +++ b/Documentation/snippets/measure-counter.ly @@ -6,7 +6,7 @@ \header { lsrtags = "repeats, staff-notation, editorial-annotations" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Este fragmento de código proporciona una solución alternativa a la producción de contadores de compás utilizando repeticiones diff --git a/Documentation/snippets/mensurstriche-layout-bar-lines-between-the-staves.ly b/Documentation/snippets/mensurstriche-layout-bar-lines-between-the-staves.ly index 26cf952d3c..4fe709419e 100644 --- a/Documentation/snippets/mensurstriche-layout-bar-lines-between-the-staves.ly +++ b/Documentation/snippets/mensurstriche-layout-bar-lines-between-the-staves.ly @@ -6,7 +6,7 @@ \header { lsrtags = "staff-notation, ancient-notation, contexts-and-engravers, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " La disposición «mensurstriche» en que las líneas divisorias no están dibujadas sobre los pentagramas, sino entre ellos, se puede diff --git a/Documentation/snippets/modern-tab-text-clef.ly b/Documentation/snippets/modern-tab-text-clef.ly index c2142eb333..5beda27c49 100644 --- a/Documentation/snippets/modern-tab-text-clef.ly +++ b/Documentation/snippets/modern-tab-text-clef.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Utilice un texto de marcado para sustituir el glifo de clave (TAB) con una fuente tipográfica moderna. diff --git a/Documentation/snippets/modifying-default-values-for-articulation-shorthand-notation.ly b/Documentation/snippets/modifying-default-values-for-articulation-shorthand-notation.ly index fb8c6f382b..fc7cb28634 100644 --- a/Documentation/snippets/modifying-default-values-for-articulation-shorthand-notation.ly +++ b/Documentation/snippets/modifying-default-values-for-articulation-shorthand-notation.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Las abreviaturas se encuentran definidas dentro del archivo @file{ly/script-init.ly}, donde las variables @code{dashHat}, diff --git a/Documentation/snippets/moving-dotted-notes-in-polyphony.ly b/Documentation/snippets/moving-dotted-notes-in-polyphony.ly index 491b02ef14..d71848db93 100644 --- a/Documentation/snippets/moving-dotted-notes-in-polyphony.ly +++ b/Documentation/snippets/moving-dotted-notes-in-polyphony.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms, simultaneous-notes, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Cuando se puede una nota en la voz superior para evitar la colisión con una nota de otra voz, el comportamiento predeterminado es diff --git a/Documentation/snippets/moving-slur-positions-vertically.ly b/Documentation/snippets/moving-slur-positions-vertically.ly index be0a59073a..b3886467b3 100644 --- a/Documentation/snippets/moving-slur-positions-vertically.ly +++ b/Documentation/snippets/moving-slur-positions-vertically.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede ajustar la posición vertical de una ligadura de expresiónutilizando la propiedad @code{positions} del objeto diff --git a/Documentation/snippets/multi-measure-rest-markup.ly b/Documentation/snippets/multi-measure-rest-markup.ly index 8a7103e101..a6d5d6c2ed 100644 --- a/Documentation/snippets/multi-measure-rest-markup.ly +++ b/Documentation/snippets/multi-measure-rest-markup.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms, text" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Los elementos de marcado aplicados a un silencio multicompás se centran encima o debajo de éste. Los elementos de marcado extensos diff --git a/Documentation/snippets/nesting-staves.ly b/Documentation/snippets/nesting-staves.ly index 84f1ea2978..39fb070489 100644 --- a/Documentation/snippets/nesting-staves.ly +++ b/Documentation/snippets/nesting-staves.ly @@ -6,7 +6,7 @@ \header { lsrtags = "staff-notation, contexts-and-engravers, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede utilizar la propiedad @code{systemStartDelimiterHierarchy} para crear grupos de diff --git a/Documentation/snippets/new/defining-predefined-fretboards-for-other-instruments.ly b/Documentation/snippets/new/defining-predefined-fretboards-for-other-instruments.ly new file mode 100644 index 0000000000..98197b09cb --- /dev/null +++ b/Documentation/snippets/new/defining-predefined-fretboards-for-other-instruments.ly @@ -0,0 +1,167 @@ +\version "2.13.46" + +\header { + lsrtags = "fretted-strings" + +%% Translation of GIT committish: cde045f4e833aa491fb63f2222e14bef49507577 + texidoces = " + +Se pueden añadir diagramas de posiciones predefinidas para +instrumentos nuevos además de los estándar que se usan para la +guitarra. Este archivo muestra cómo se hace, definiendo una afinación +nueva y unas cuantas posiciones para el cuatro venezolano. + +Este archivo también muestra cómo se pueden incluir las digitaciones +en los acordes que se usan como puntos de referencia para la búsqueda +de acordes en la tabla, y mostrarse en el diagrama de posiciones y la +tablatura @code{TabStaff}, pero no en la música. + +Estas posiciones no se pueden transportar porque contienen información +de las cuerdas. Hay planes para corregir esto en un futuro. + +" + doctitlees = "Definición de posiciones predefinidas para otros instrumentos" + + +%% Translation of GIT committish: f23429bc5cfa9d141ef7b4509afc46c140308a1e + texidocde = " +Vordefinierte Bunddiagramme können für neue Instrumente hinzugefügt werden +neben denen, die schon für die Gitarre definiert sind. Dieses Schnipsel +zeigt, wie man eine neue Saitenstimmung definiert und dann eigene vordefinierte +Bunddiagramme bestimmt. Das Beispiel ist für das venezualische Cuatro. + +Dieses Schnipsel zeigt auch, wie Fingersatz in die Akkorde eingebunden +werden kann, um als Referenzpunkt für die Akkordauswahl benutzt werden +kann. Dieser Fingersatz wird im Bunddiagramm und in der Tabulatur, +aber nicht in den Noten angezeigt. + +Diese Bunddiagramme sind nicht transponierbar, weil sie Saiteninformationen +enthalten. Das soll in der Zukunft verbessert werden. + +" + doctitlede = "Eigene vordefinierte Bunddiagramme für andere Instrumente erstellen" + +%% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e + + texidocfr = " +La liste des diagrammes standards prédéfinis pour la guitare peut être +augmentée d'autres définitions spécifiques à d'autres instruments. +Voici comment définir un nouvel accordage ainsi que quelques diagrammes +prédéfinis pour le @qq{cuatro vénézuélien}. + +Cet exemple illustre aussi la manière d'ajouter des doigtés aux +accords ; ils serviront de référence pour la boucle d'accord et seront +indiqués dans les diagrammes et le @code{TabStaff}, mais pas dans la musique. + +Ces diagrammes ne peuvent pas être transposés, dans la mesure où ils +contiennent des informations sur les cordes. Ceci est amené à évoluer. + +" + doctitlefr = "Création de diagrammes de fret prédéfinis pour d'autres instruments" + + + texidoc = " +Predefined fret diagrams can be added for new instruments in addition +to the standards used for guitar. This file shows how this is done by +defining a new string-tuning and a few predefined fretboards for the +Venezuelan cuatro. + +This file also shows how fingerings can be included in the chords used +as reference points for the chord lookup, and displayed in the fret +diagram and the @code{TabStaff}, but not the music. + + +These fretboards are not transposable because they contain string +information. This is planned to be corrected in the future. + +" + doctitle = "Defining predefined fretboards for other instruments" +} + +% add FretBoards for the Cuatro +% Note: This section could be put into a separate file +% predefined-cuatro-fretboards.ly +% and \included into each of your compositions + +cuatroTuning = #`(,(ly:make-pitch 0 6 0) + ,(ly:make-pitch 1 3 SHARP) + ,(ly:make-pitch 1 1 0) + ,(ly:make-pitch 0 5 0)) + +dSix = { } +dMajor = { } +aMajSeven = { } +dMajSeven = { } +gMajor = { } + +\storePredefinedDiagram #default-fret-table \dSix + #cuatroTuning + #"o;o;o;o;" +\storePredefinedDiagram #default-fret-table \dMajor + #cuatroTuning + #"o;o;o;3-3;" +\storePredefinedDiagram #default-fret-table \aMajSeven + #cuatroTuning + #"o;2-2;1-1;2-3;" +\storePredefinedDiagram #default-fret-table \dMajSeven + #cuatroTuning + #"o;o;o;1-1;" +\storePredefinedDiagram #default-fret-table \gMajor + #cuatroTuning + #"2-2;o;1-1;o;" + +% end of potential include file /predefined-cuatro-fretboards.ly + + +#(set-global-staff-size 16) + +primerosNames = \chordmode { + d:6 d a:maj7 d:maj7 + g +} +primeros = { + \dSix \dMajor \aMajSeven \dMajSeven + \gMajor +} + +\score { + << + \new ChordNames { + \set chordChanges = ##t + \primerosNames + } + + \new Staff { + \new Voice \with { + \remove "New_fingering_engraver" + } + \relative c'' { + \primeros + } + } + + \new FretBoards { + \set stringTunings = #cuatroTuning +% \override FretBoard +% #'(fret-diagram-details string-count) = #'4 + \override FretBoard + #'(fret-diagram-details finger-code) = #'in-dot + \primeros + } + + \new TabStaff \relative c'' { + \set TabStaff.stringTunings = #cuatroTuning + \primeros + } + + >> + + \layout { + \context { + \Score + \override SpacingSpanner + #'base-shortest-duration = #(ly:make-moment 1 16) + } + } + \midi { } +} diff --git a/Documentation/snippets/non-default-tuplet-numbers.ly b/Documentation/snippets/non-default-tuplet-numbers.ly index 4408ee9d5e..3fcd73a31b 100644 --- a/Documentation/snippets/non-default-tuplet-numbers.ly +++ b/Documentation/snippets/non-default-tuplet-numbers.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " LilyPond también proporciona funciones de formato para imprimir números de grupo especial diferentes a la propia fracción, así diff --git a/Documentation/snippets/non-traditional-key-signatures.ly b/Documentation/snippets/non-traditional-key-signatures.ly index 4bea0db9d2..47d6d65f58 100644 --- a/Documentation/snippets/non-traditional-key-signatures.ly +++ b/Documentation/snippets/non-traditional-key-signatures.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Armaduras de tonalidad no tradicionales" texidoces = " diff --git a/Documentation/snippets/numbers-as-easy-note-heads.ly b/Documentation/snippets/numbers-as-easy-note-heads.ly index 8edd187f59..86031cd328 100644 --- a/Documentation/snippets/numbers-as-easy-note-heads.ly +++ b/Documentation/snippets/numbers-as-easy-note-heads.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 67e7cb93611fa389c7e86c6e47e894ff30a8395c +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Las cabezas de nota de notación fácil utilizan la propiedad diff --git a/Documentation/snippets/orchestra,-choir-and-piano-template.ly b/Documentation/snippets/orchestra,-choir-and-piano-template.ly index 7e7a47008d..d545791965 100644 --- a/Documentation/snippets/orchestra,-choir-and-piano-template.ly +++ b/Documentation/snippets/orchestra,-choir-and-piano-template.ly @@ -6,7 +6,7 @@ \header { lsrtags = "pitches, staff-notation, vocal-music, template" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Esta plantilla muestra el uso de contextos @code{StaffGroup} y @code{GrandStaff} anidados para sub-agrupar instrumentos del mismo diff --git a/Documentation/snippets/ottava-text.ly b/Documentation/snippets/ottava-text.ly index 60883b5eaa..ca906690a9 100644 --- a/Documentation/snippets/ottava-text.ly +++ b/Documentation/snippets/ottava-text.ly @@ -6,7 +6,7 @@ \header { lsrtags = "pitches, text" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Internamente, @code{\\ottava} establece las propiedades diff --git a/Documentation/snippets/partcombine-and-autobeamoff.ly b/Documentation/snippets/partcombine-and-autobeamoff.ly index 98cf687f4b..635b09f588 100644 --- a/Documentation/snippets/partcombine-and-autobeamoff.ly +++ b/Documentation/snippets/partcombine-and-autobeamoff.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms" -%% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " diff --git a/Documentation/snippets/percent-repeat-count-visibility.ly b/Documentation/snippets/percent-repeat-count-visibility.ly index 357ae5ccac..8d348210b3 100644 --- a/Documentation/snippets/percent-repeat-count-visibility.ly +++ b/Documentation/snippets/percent-repeat-count-visibility.ly @@ -6,7 +6,7 @@ \header { lsrtags = "repeats, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se pueden mostrar los contadores de las repeticiones del tipo porcentaje a intervalos regulares mediante el establecimiento de diff --git a/Documentation/snippets/percent-repeat-counter.ly b/Documentation/snippets/percent-repeat-counter.ly index 0e9e229e81..056ec6689e 100644 --- a/Documentation/snippets/percent-repeat-counter.ly +++ b/Documentation/snippets/percent-repeat-counter.ly @@ -6,7 +6,7 @@ \header { lsrtags = "repeats" -%% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Las repeticiones de compases completos de más de dos repeticiones pueden llevar un contador si se activa la propiedad adecuada, como se diff --git a/Documentation/snippets/permitting-line-breaks-within-beamed-tuplets.ly b/Documentation/snippets/permitting-line-breaks-within-beamed-tuplets.ly index 7c45880523..a47eddcace 100644 --- a/Documentation/snippets/permitting-line-breaks-within-beamed-tuplets.ly +++ b/Documentation/snippets/permitting-line-breaks-within-beamed-tuplets.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Permitir saltos de línea dentro de grupos especiales con barra" texidoces = " Este ejemplo artificial muestra cómo se pueden permitir tanto los diff --git a/Documentation/snippets/piano-template-simple.ly b/Documentation/snippets/piano-template-simple.ly index 1a26f93cf5..258bc65630 100644 --- a/Documentation/snippets/piano-template-simple.ly +++ b/Documentation/snippets/piano-template-simple.ly @@ -6,7 +6,7 @@ \header { lsrtags = "keyboards, template" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Presentamos a continuación una plantilla de piano sencilla con algunas notas. diff --git a/Documentation/snippets/piano-template-with-centered-dynamics.ly b/Documentation/snippets/piano-template-with-centered-dynamics.ly index b04b1b5c29..cca22291ba 100644 --- a/Documentation/snippets/piano-template-with-centered-dynamics.ly +++ b/Documentation/snippets/piano-template-with-centered-dynamics.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Muchas partituras de piano tienen las indicaciones dinámicas centradas entre los dos pentagramas. El contexto @code{Dynamics}, si se sitúa diff --git a/Documentation/snippets/piano-template-with-centered-lyrics.ly b/Documentation/snippets/piano-template-with-centered-lyrics.ly index 50f03de360..bac62057cb 100644 --- a/Documentation/snippets/piano-template-with-centered-lyrics.ly +++ b/Documentation/snippets/piano-template-with-centered-lyrics.ly @@ -6,7 +6,7 @@ \header { lsrtags = "text, keyboards, template" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " En lugar de tener un pentagrama dedicado a la melodía y la letra, ésta se puede centrar entre los pentagramas de un sistema de piano. diff --git a/Documentation/snippets/piano-template-with-melody-and-lyrics.ly b/Documentation/snippets/piano-template-with-melody-and-lyrics.ly index 5b73621468..66099f2ed7 100644 --- a/Documentation/snippets/piano-template-with-melody-and-lyrics.ly +++ b/Documentation/snippets/piano-template-with-melody-and-lyrics.ly @@ -6,7 +6,7 @@ \header { lsrtags = "vocal-music, keyboards, template" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " He aquí el típico formato dde una canción: un pentagrama con la melodía y la letra, y el acompañamiento de piano por debajo. diff --git a/Documentation/snippets/pitches-headword.ly b/Documentation/snippets/pitches-headword.ly index 05de3c4a68..a889858968 100644 --- a/Documentation/snippets/pitches-headword.ly +++ b/Documentation/snippets/pitches-headword.ly @@ -2,7 +2,7 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \include "english.ly" #(set-global-staff-size 15) \paper { diff --git a/Documentation/snippets/placement-of-right-hand-fingerings.ly b/Documentation/snippets/placement-of-right-hand-fingerings.ly index d5fdd9c1a6..3aa2807008 100644 --- a/Documentation/snippets/placement-of-right-hand-fingerings.ly +++ b/Documentation/snippets/placement-of-right-hand-fingerings.ly @@ -6,7 +6,7 @@ \header { lsrtags = "fretted-strings" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Es posible ejercer un mayor control sobre la colocación de las digitaciones de la mano derecha estableciendo el valor de una diff --git a/Documentation/snippets/polyphony-in-tablature.ly b/Documentation/snippets/polyphony-in-tablature.ly index ec30ce7e7f..0562c1812e 100644 --- a/Documentation/snippets/polyphony-in-tablature.ly +++ b/Documentation/snippets/polyphony-in-tablature.ly @@ -6,7 +6,7 @@ \header { lsrtags = "fretted-strings" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " La polifonía se crea de la misma forma en un @code{TabStaff} que en una pauta normal. diff --git a/Documentation/snippets/positioning-arpeggios.ly b/Documentation/snippets/positioning-arpeggios.ly index 600589be08..b9583ffaa6 100644 --- a/Documentation/snippets/positioning-arpeggios.ly +++ b/Documentation/snippets/positioning-arpeggios.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Si necesitamos alargar o acortar un símbolo de arpegio, podemos modificar independientemente los extremos superior e inferior. diff --git a/Documentation/snippets/positioning-grace-note-beams-at-the-height-of-normal-note-beams.ly b/Documentation/snippets/positioning-grace-note-beams-at-the-height-of-normal-note-beams.ly index 9548684304..7ddfb0fe41 100644 --- a/Documentation/snippets/positioning-grace-note-beams-at-the-height-of-normal-note-beams.ly +++ b/Documentation/snippets/positioning-grace-note-beams-at-the-height-of-normal-note-beams.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Cuando se colocan figuras sobre líneas adicionales, sus barras se diff --git a/Documentation/snippets/positioning-grace-notes-with-floating-space.ly b/Documentation/snippets/positioning-grace-notes-with-floating-space.ly index bb0849e06c..e8a790fa28 100644 --- a/Documentation/snippets/positioning-grace-notes-with-floating-space.ly +++ b/Documentation/snippets/positioning-grace-notes-with-floating-space.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Al establecer la propiedad @code{'strict-grace-spacing} hacemos que diff --git a/Documentation/snippets/positioning-multi-measure-rests.ly b/Documentation/snippets/positioning-multi-measure-rests.ly index e8520a4afe..fd20084816 100644 --- a/Documentation/snippets/positioning-multi-measure-rests.ly +++ b/Documentation/snippets/positioning-multi-measure-rests.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Posicionar los silencios multicompás" texidoces = " A diferencia de los silencios normales, no existe una instrucción diff --git a/Documentation/snippets/positioning-text-markups-inside-slurs.ly b/Documentation/snippets/positioning-text-markups-inside-slurs.ly index 27ca860939..0d2439413c 100644 --- a/Documentation/snippets/positioning-text-markups-inside-slurs.ly +++ b/Documentation/snippets/positioning-text-markups-inside-slurs.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks, editorial-annotations, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Los elementos de marcado de texto deben tener la propiedad diff --git a/Documentation/snippets/preventing-extra-naturals-from-being-automatically-added.ly b/Documentation/snippets/preventing-extra-naturals-from-being-automatically-added.ly index 49192e87ab..ea44339d6a 100644 --- a/Documentation/snippets/preventing-extra-naturals-from-being-automatically-added.ly +++ b/Documentation/snippets/preventing-extra-naturals-from-being-automatically-added.ly @@ -6,7 +6,7 @@ \header { lsrtags = "pitches" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Evitar que se añadan becuadros adicionales automáticamente" texidoces = " diff --git a/Documentation/snippets/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly b/Documentation/snippets/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly index 9820abaaae..b1778caee0 100644 --- a/Documentation/snippets/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly +++ b/Documentation/snippets/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly @@ -6,7 +6,7 @@ \header { lsrtags = "pitches" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Evitar que se impriman becuadros cuando cambia la armadura" texidoces = " diff --git a/Documentation/snippets/printing-a-repeat-sign-at-the-beginning-of-a-piece.ly b/Documentation/snippets/printing-a-repeat-sign-at-the-beginning-of-a-piece.ly index f9a1c852f6..f8ea83a38e 100644 --- a/Documentation/snippets/printing-a-repeat-sign-at-the-beginning-of-a-piece.ly +++ b/Documentation/snippets/printing-a-repeat-sign-at-the-beginning-of-a-piece.ly @@ -6,7 +6,7 @@ \header { lsrtags = "repeats, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede imprimir una línea divisoria de la forma @code{|:} al principio de la pieza, sobreescribiendo la propiedad correspondiente: diff --git a/Documentation/snippets/printing-bar-numbers-at-regular-intervals.ly b/Documentation/snippets/printing-bar-numbers-at-regular-intervals.ly index 0ec6795729..3828075f10 100644 --- a/Documentation/snippets/printing-bar-numbers-at-regular-intervals.ly +++ b/Documentation/snippets/printing-bar-numbers-at-regular-intervals.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se pueden imprimir los números de compás a intervalos regulares diff --git a/Documentation/snippets/printing-bar-numbers-inside-boxes-or-circles.ly b/Documentation/snippets/printing-bar-numbers-inside-boxes-or-circles.ly index 0e0e4dde21..5a5f638b49 100644 --- a/Documentation/snippets/printing-bar-numbers-inside-boxes-or-circles.ly +++ b/Documentation/snippets/printing-bar-numbers-inside-boxes-or-circles.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Los números de compás también se pueden imprimir dentro de rectángulos o de circunferencias. diff --git a/Documentation/snippets/printing-hairpins-using-al-niente-notation.ly b/Documentation/snippets/printing-hairpins-using-al-niente-notation.ly index 23b4ee2fce..abb953eda4 100644 --- a/Documentation/snippets/printing-hairpins-using-al-niente-notation.ly +++ b/Documentation/snippets/printing-hairpins-using-al-niente-notation.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se pueden imprimir reguladores con un círculo en la punta (notación «al niente») estableciendo la propiedad @code{circled-tip} del objeto diff --git a/Documentation/snippets/printing-marks-at-the-end-of-a-line.ly b/Documentation/snippets/printing-marks-at-the-end-of-a-line.ly index 4e95292632..0b7ab65851 100644 --- a/Documentation/snippets/printing-marks-at-the-end-of-a-line.ly +++ b/Documentation/snippets/printing-marks-at-the-end-of-a-line.ly @@ -6,7 +6,7 @@ \header { lsrtags = "text" -%% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " diff --git a/Documentation/snippets/printing-marks-on-every-staff.ly b/Documentation/snippets/printing-marks-on-every-staff.ly index 02d2698ef7..aa001a7cf4 100644 --- a/Documentation/snippets/printing-marks-on-every-staff.ly +++ b/Documentation/snippets/printing-marks-on-every-staff.ly @@ -6,7 +6,7 @@ \header { lsrtags = "text" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Aunque normalmente las marcas de texto sólo se imprimen sobre el pentagrama superior, también se pueden imprimir en otro pentagrama diff --git a/Documentation/snippets/printing-metronome-and-rehearsal-marks-below-the-staff.ly b/Documentation/snippets/printing-metronome-and-rehearsal-marks-below-the-staff.ly index cf91d61acc..282aeed146 100644 --- a/Documentation/snippets/printing-metronome-and-rehearsal-marks-below-the-staff.ly +++ b/Documentation/snippets/printing-metronome-and-rehearsal-marks-below-the-staff.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms, expressive-marks, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " De forma predeterminada, las indicaciones metronómicas y las letras de ensayo se imprimen encima del pentagrama. Para diff --git a/Documentation/snippets/printing-note-names-with-and-without-an-octave-marker.ly b/Documentation/snippets/printing-note-names-with-and-without-an-octave-marker.ly index 261f198913..7c095ba549 100644 --- a/Documentation/snippets/printing-note-names-with-and-without-an-octave-marker.ly +++ b/Documentation/snippets/printing-note-names-with-and-without-an-octave-marker.ly @@ -6,7 +6,7 @@ \header { lsrtags = "tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede usar el contexto @code{NoteNames} para imprimir el valor textual de las notas. La propiedad @code{printOctaveNames} activa o diff --git a/Documentation/snippets/printing-the-bar-number-for-the-first-measure.ly b/Documentation/snippets/printing-the-bar-number-for-the-first-measure.ly index 8b32b93de5..17ebe598f2 100644 --- a/Documentation/snippets/printing-the-bar-number-for-the-first-measure.ly +++ b/Documentation/snippets/printing-the-bar-number-for-the-first-measure.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " De forma predeterminada se suprime el número del primer compás de una diff --git a/Documentation/snippets/quoting-another-voice-with-transposition.ly b/Documentation/snippets/quoting-another-voice-with-transposition.ly index af3e7e83c6..769e0d60be 100644 --- a/Documentation/snippets/quoting-another-voice-with-transposition.ly +++ b/Documentation/snippets/quoting-another-voice-with-transposition.ly @@ -6,7 +6,7 @@ \header { lsrtags = "pitches, staff-notation" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Los pasajes citados tienen en cuenta la transposición de la fuente tanto como la del destino. En este ejemplo, todos los diff --git a/Documentation/snippets/quoting-another-voice.ly b/Documentation/snippets/quoting-another-voice.ly index db4e5e1bf1..d2a80281c8 100644 --- a/Documentation/snippets/quoting-another-voice.ly +++ b/Documentation/snippets/quoting-another-voice.ly @@ -6,7 +6,7 @@ \header { lsrtags = "staff-notation" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " La propiedad @code{quotedEventTypes} determina los tipos de eventos diff --git a/Documentation/snippets/recorder-fingering-chart.ly b/Documentation/snippets/recorder-fingering-chart.ly index 4309fea150..988c5eec15 100644 --- a/Documentation/snippets/recorder-fingering-chart.ly +++ b/Documentation/snippets/recorder-fingering-chart.ly @@ -4,7 +4,7 @@ \version "2.13.39" \header { -%% Translation of GIT committish: 67e7cb93611fa389c7e86c6e47e894ff30a8395c +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " El ejemplo siguiente muestra cómo se pueden realizar diagramas de @@ -18,6 +18,10 @@ digitación para instrumentos de viento. + + + + %% Translation of GIT committish: 496c48f1f2e4d345ae3637b2c38ec748a55cda1d texidocfr = " Cet exemple illustre la manière de créer et afficher des indications de diff --git a/Documentation/snippets/redefining-grace-note-global-defaults.ly b/Documentation/snippets/redefining-grace-note-global-defaults.ly index 9e2e2d696e..4ea0cf6a17 100644 --- a/Documentation/snippets/redefining-grace-note-global-defaults.ly +++ b/Documentation/snippets/redefining-grace-note-global-defaults.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Los valores predeterminados para las notas de adorno están diff --git a/Documentation/snippets/removing-bar-numbers-from-a-score.ly b/Documentation/snippets/removing-bar-numbers-from-a-score.ly index b9ccaabf70..08fbead282 100644 --- a/Documentation/snippets/removing-bar-numbers-from-a-score.ly +++ b/Documentation/snippets/removing-bar-numbers-from-a-score.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms, contexts-and-engravers" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se pueden eliminar completamente los números de compás quitando el diff --git a/Documentation/snippets/removing-connecting-bar-lines-on-staffgroup,-pianostaff,-or-grandstaff.ly b/Documentation/snippets/removing-connecting-bar-lines-on-staffgroup,-pianostaff,-or-grandstaff.ly index 34a06af814..e0f1de2035 100644 --- a/Documentation/snippets/removing-connecting-bar-lines-on-staffgroup,-pianostaff,-or-grandstaff.ly +++ b/Documentation/snippets/removing-connecting-bar-lines-on-staffgroup,-pianostaff,-or-grandstaff.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " De forma predeterminada, las líneas divisorias en los grupos StaffGroup, PianoStaff o GrandStaff se conectan entre los pentagramas. diff --git a/Documentation/snippets/removing-the-first-empty-line.ly b/Documentation/snippets/removing-the-first-empty-line.ly index 9860646e0a..63bf4f2d0b 100644 --- a/Documentation/snippets/removing-the-first-empty-line.ly +++ b/Documentation/snippets/removing-the-first-empty-line.ly @@ -6,7 +6,7 @@ \header { lsrtags = "staff-notation, tweaks-and-overrides, breaks" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " El primer pentagrama vacío también se puede suprimir de la partitura estableciendo la propiedad @code{remove-first} de diff --git a/Documentation/snippets/repeats-headword.ly b/Documentation/snippets/repeats-headword.ly index 0b6208480d..c485be2164 100644 --- a/Documentation/snippets/repeats-headword.ly +++ b/Documentation/snippets/repeats-headword.ly @@ -2,7 +2,7 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \include "english.ly" #(set-global-staff-size 15) \paper { diff --git a/Documentation/snippets/rest-styles.ly b/Documentation/snippets/rest-styles.ly index 63b049b43f..11fb9e8a06 100644 --- a/Documentation/snippets/rest-styles.ly +++ b/Documentation/snippets/rest-styles.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms, ancient-notation, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Estilos de silencios" texidoces = " Los silencios se pueden imprimir en distintos estilos. diff --git a/Documentation/snippets/reverting-default-beam-endings.ly b/Documentation/snippets/reverting-default-beam-endings.ly index 5e2330fdb5..17b3814e3b 100644 --- a/Documentation/snippets/reverting-default-beam-endings.ly +++ b/Documentation/snippets/reverting-default-beam-endings.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Para tipografiar las barras agrupadas en la forma @code{3-4-3-2} sólo es necesario modificar la estructura de pulsos: diff --git a/Documentation/snippets/rhythms-headword.ly b/Documentation/snippets/rhythms-headword.ly index a78b67d608..dce585eeb0 100644 --- a/Documentation/snippets/rhythms-headword.ly +++ b/Documentation/snippets/rhythms-headword.ly @@ -2,7 +2,7 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \include "english.ly" #(set-global-staff-size 15) \paper { diff --git a/Documentation/snippets/screech-boink.ly b/Documentation/snippets/screech-boink.ly index 8a8387f3e0..67f6a33522 100644 --- a/Documentation/snippets/screech-boink.ly +++ b/Documentation/snippets/screech-boink.ly @@ -2,7 +2,7 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { lsrtags = "headwords" texidoc = "Random complex notation" diff --git a/Documentation/snippets/setting-hairpin-behavior-at-bar-lines.ly b/Documentation/snippets/setting-hairpin-behavior-at-bar-lines.ly index 508d14fc0c..7297d01f15 100644 --- a/Documentation/snippets/setting-hairpin-behavior-at-bar-lines.ly +++ b/Documentation/snippets/setting-hairpin-behavior-at-bar-lines.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Si la nota que da fin a un regulador cae sobre la primera parte de un compás, el regulador se detiene en la línea divisoria diff --git a/Documentation/snippets/setting-system-separators.ly b/Documentation/snippets/setting-system-separators.ly index 2ffeb079f3..9373e38d08 100644 --- a/Documentation/snippets/setting-system-separators.ly +++ b/Documentation/snippets/setting-system-separators.ly @@ -6,7 +6,7 @@ \header { lsrtags = "staff-notation, tweaks-and-overrides, paper-and-layout" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se pueden insertar separadores sistema entre los sistemas de una página. Se puede usar cualquier elemento de marcado, pero diff --git a/Documentation/snippets/setting-the-double-repeat-default-for-volte.ly b/Documentation/snippets/setting-the-double-repeat-default-for-volte.ly index 66109c3901..574be3f0c3 100644 --- a/Documentation/snippets/setting-the-double-repeat-default-for-volte.ly +++ b/Documentation/snippets/setting-the-double-repeat-default-for-volte.ly @@ -2,9 +2,9 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " diff --git a/Documentation/snippets/setting-the-minimum-length-of-hairpins.ly b/Documentation/snippets/setting-the-minimum-length-of-hairpins.ly index f7727b9a3c..de93f4dc62 100644 --- a/Documentation/snippets/setting-the-minimum-length-of-hairpins.ly +++ b/Documentation/snippets/setting-the-minimum-length-of-hairpins.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Si los reguladores son demasiado cortos, se pueden alargar modificando la propiedad @code{minimum-length} del objeto diff --git a/Documentation/snippets/shortening-volta-brackets.ly b/Documentation/snippets/shortening-volta-brackets.ly index c5a1826758..e75436f44a 100644 --- a/Documentation/snippets/shortening-volta-brackets.ly +++ b/Documentation/snippets/shortening-volta-brackets.ly @@ -6,7 +6,7 @@ \header { lsrtags = "repeats" -%% Translation of GIT committish: 67e7cb93611fa389c7e86c6e47e894ff30a8395c +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " De forma predeterminada, los corchetes de primera y segunda vez se trazan encima de los finales alternativos completos, pero es posible diff --git a/Documentation/snippets/showing-chords-at-changes.ly b/Documentation/snippets/showing-chords-at-changes.ly index 8a44adeb7f..f04a5c4c0a 100644 --- a/Documentation/snippets/showing-chords-at-changes.ly +++ b/Documentation/snippets/showing-chords-at-changes.ly @@ -6,7 +6,7 @@ \header { lsrtags = "chords" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se pueden imprimir los acordes exclusivamente al comienzo de las líneas y cuando cambia el acorde. diff --git a/Documentation/snippets/showing-the-same-articulation-above-and-below-a-note-or-chord.ly b/Documentation/snippets/showing-the-same-articulation-above-and-below-a-note-or-chord.ly index 9bf193f310..b6269abfdf 100644 --- a/Documentation/snippets/showing-the-same-articulation-above-and-below-a-note-or-chord.ly +++ b/Documentation/snippets/showing-the-same-articulation-above-and-below-a-note-or-chord.ly @@ -2,7 +2,7 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { lsrtags = "expressive-marks, tweaks-and-overrides" diff --git a/Documentation/snippets/simple-lead-sheet.ly b/Documentation/snippets/simple-lead-sheet.ly index 5cdf054156..400105f42d 100644 --- a/Documentation/snippets/simple-lead-sheet.ly +++ b/Documentation/snippets/simple-lead-sheet.ly @@ -6,7 +6,7 @@ \header { lsrtags = "chords" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Al juntar nombres de acorde en cifrado americano, melodía y letra, obtenemos una hoja guía de acordes o «lead sheet»: diff --git a/Documentation/snippets/simultaneous-headword.ly b/Documentation/snippets/simultaneous-headword.ly index 458effd488..224565b6da 100644 --- a/Documentation/snippets/simultaneous-headword.ly +++ b/Documentation/snippets/simultaneous-headword.ly @@ -2,7 +2,7 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \include "english.ly" #(set-global-staff-size 15) \paper { diff --git a/Documentation/snippets/single-staff-template-with-notes,-lyrics,-and-chords.ly b/Documentation/snippets/single-staff-template-with-notes,-lyrics,-and-chords.ly index 1a5d5f2501..c794afc305 100644 --- a/Documentation/snippets/single-staff-template-with-notes,-lyrics,-and-chords.ly +++ b/Documentation/snippets/single-staff-template-with-notes,-lyrics,-and-chords.ly @@ -6,7 +6,7 @@ \header { lsrtags = "vocal-music, chords, template" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Esta plantilla facilita la preparación de una canción con melodía, letra y acordes. diff --git a/Documentation/snippets/single-staff-template-with-notes,-lyrics,-chords-and-frets.ly b/Documentation/snippets/single-staff-template-with-notes,-lyrics,-chords-and-frets.ly index b57604957c..f3edd3c30c 100644 --- a/Documentation/snippets/single-staff-template-with-notes,-lyrics,-chords-and-frets.ly +++ b/Documentation/snippets/single-staff-template-with-notes,-lyrics,-chords-and-frets.ly @@ -6,7 +6,7 @@ \header { lsrtags = "vocal-music, chords, template" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Presentamos a continuación un ejemplo de plantilla para una hoja guía de acordes con melodía, letra, acordes y diagramas de diff --git a/Documentation/snippets/single-staff-template-with-notes-and-chords.ly b/Documentation/snippets/single-staff-template-with-notes-and-chords.ly index c200bbebb2..873f79e2a5 100644 --- a/Documentation/snippets/single-staff-template-with-notes-and-chords.ly +++ b/Documentation/snippets/single-staff-template-with-notes-and-chords.ly @@ -6,7 +6,7 @@ \header { lsrtags = "chords, template" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " ¿Quiere preparar una hoja guía de acordes (o «lead sheet») con melodía y acordes? ¡No busque más! diff --git a/Documentation/snippets/single-staff-template-with-notes-and-lyrics.ly b/Documentation/snippets/single-staff-template-with-notes-and-lyrics.ly index e78889a5bb..4e437345d0 100644 --- a/Documentation/snippets/single-staff-template-with-notes-and-lyrics.ly +++ b/Documentation/snippets/single-staff-template-with-notes-and-lyrics.ly @@ -6,7 +6,7 @@ \header { lsrtags = "vocal-music, template" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Esta pequeña plantilla muestra una melodía sencilla con letra. Córtela y péguela, escriba las notas y luego la letra. Este ejemplo desactiva diff --git a/Documentation/snippets/single-staff-template-with-only-notes.ly b/Documentation/snippets/single-staff-template-with-only-notes.ly index 7ec07c004b..656fd9dda0 100644 --- a/Documentation/snippets/single-staff-template-with-only-notes.ly +++ b/Documentation/snippets/single-staff-template-with-only-notes.ly @@ -6,7 +6,7 @@ \header { lsrtags = "template" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Esta plantilla simple prepara un pentagrama con notas, adecuado para un instrumento solista o un fragmento melódico. Córtelo y péguelo en diff --git a/Documentation/snippets/snap-pizzicato-bartok-pizzicato.ly b/Documentation/snippets/snap-pizzicato-bartok-pizzicato.ly index a8a1cbeb82..b488a91080 100644 --- a/Documentation/snippets/snap-pizzicato-bartok-pizzicato.ly +++ b/Documentation/snippets/snap-pizzicato-bartok-pizzicato.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Marca de pizzicato de chasquido (`pizzicato de Bartók')" texidoces = " El pizzicato de chasquido (también llamado @q{Pizzicato de Bartók}) es un diff --git a/Documentation/snippets/staff-headword.ly b/Documentation/snippets/staff-headword.ly index 12fba0ee4e..493724f556 100644 --- a/Documentation/snippets/staff-headword.ly +++ b/Documentation/snippets/staff-headword.ly @@ -2,7 +2,7 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \include "catalan.ly" #(set-global-staff-size 15) \paper{ diff --git a/Documentation/snippets/stand-alone-two-column-markup.ly b/Documentation/snippets/stand-alone-two-column-markup.ly index 9b499eba83..bee815cc0b 100644 --- a/Documentation/snippets/stand-alone-two-column-markup.ly +++ b/Documentation/snippets/stand-alone-two-column-markup.ly @@ -6,7 +6,7 @@ \header { lsrtags = "text" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Los textos independientes se pueden disponer en varias columnas utilizando instrucciones @code{\\markup}: diff --git a/Documentation/snippets/stem-and-beam-behavior-in-tablature.ly b/Documentation/snippets/stem-and-beam-behavior-in-tablature.ly index ae5531ca71..dab025568d 100644 --- a/Documentation/snippets/stem-and-beam-behavior-in-tablature.ly +++ b/Documentation/snippets/stem-and-beam-behavior-in-tablature.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " La dirección de las plicas se contola de la misma forma en la tablatura que en la notación tradicional. Las barras se pueden diff --git a/Documentation/snippets/string-quartet-template-simple.ly b/Documentation/snippets/string-quartet-template-simple.ly index 1684536830..83f3e85063 100644 --- a/Documentation/snippets/string-quartet-template-simple.ly +++ b/Documentation/snippets/string-quartet-template-simple.ly @@ -6,7 +6,7 @@ \header { lsrtags = "unfretted-strings, template" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Esta plantilla muestra un cuarteto de cuerda normal. También utiliza una sección @code{\\global} para el compás y la armadura diff --git a/Documentation/snippets/string-quartet-template-with-separate-parts.ly b/Documentation/snippets/string-quartet-template-with-separate-parts.ly index 7d6d387891..b6a3c671fa 100644 --- a/Documentation/snippets/string-quartet-template-with-separate-parts.ly +++ b/Documentation/snippets/string-quartet-template-with-separate-parts.ly @@ -6,7 +6,7 @@ \header { lsrtags = "unfretted-strings, template" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " El fragmento de código @qq{Plantilla de cuarteto de cuerda} produce un resultado satisfactorio para el cuarteto, pero ¿y si tenemos que diff --git a/Documentation/snippets/subdividing-beams.ly b/Documentation/snippets/subdividing-beams.ly index 999b1823c3..b903ce7d30 100644 --- a/Documentation/snippets/subdividing-beams.ly +++ b/Documentation/snippets/subdividing-beams.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " diff --git a/Documentation/snippets/text-headword.ly b/Documentation/snippets/text-headword.ly index dfbfec4cf8..2ff592bc25 100644 --- a/Documentation/snippets/text-headword.ly +++ b/Documentation/snippets/text-headword.ly @@ -2,7 +2,7 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \include "english.ly" #(set-global-staff-size 15) \paper { diff --git a/Documentation/snippets/time-signature-printing-only-the-numerator-as-a-number-instead-of-the-fraction.ly b/Documentation/snippets/time-signature-printing-only-the-numerator-as-a-number-instead-of-the-fraction.ly index 4046ae3ec5..769703a9db 100644 --- a/Documentation/snippets/time-signature-printing-only-the-numerator-as-a-number-instead-of-the-fraction.ly +++ b/Documentation/snippets/time-signature-printing-only-the-numerator-as-a-number-instead-of-the-fraction.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms, tweaks-and-overrides" -%% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " A veces, la indicación de compás no debe imprimir la fracción completa diff --git a/Documentation/snippets/transcription-of-ancient-music-with-incipit.ly b/Documentation/snippets/transcription-of-ancient-music-with-incipit.ly index 479360a904..c025eacd97 100644 --- a/Documentation/snippets/transcription-of-ancient-music-with-incipit.ly +++ b/Documentation/snippets/transcription-of-ancient-music-with-incipit.ly @@ -6,7 +6,7 @@ \header { lsrtags = "ancient-notation, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " A modo de alternativa para obtener auténticos «incipit» independientes de la partitura principal, se incluyen como diff --git a/Documentation/snippets/transposing-pitches-with-minimum-accidentals-smart-transpose.ly b/Documentation/snippets/transposing-pitches-with-minimum-accidentals-smart-transpose.ly index f559506720..6bf4238e6e 100644 --- a/Documentation/snippets/transposing-pitches-with-minimum-accidentals-smart-transpose.ly +++ b/Documentation/snippets/transposing-pitches-with-minimum-accidentals-smart-transpose.ly @@ -6,7 +6,7 @@ \header { lsrtags = "pitches" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Transportar música con el menor número de alteraciones" texidoces = " Este ejemplo utiliza código de Scheme para forzar las diff --git a/Documentation/snippets/tweaking-clef-properties.ly b/Documentation/snippets/tweaking-clef-properties.ly index af510877aa..3b9652962c 100644 --- a/Documentation/snippets/tweaking-clef-properties.ly +++ b/Documentation/snippets/tweaking-clef-properties.ly @@ -6,7 +6,7 @@ \header { lsrtags = "pitches, staff-notation, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Trucaje de las propiedades de clave" texidoces = " La instrucción @code{\\clef \"treble_8\"} equivale a un ajuste de diff --git a/Documentation/snippets/tweaking-grace-layout-within-music.ly b/Documentation/snippets/tweaking-grace-layout-within-music.ly index 471439e892..b3163ee810 100644 --- a/Documentation/snippets/tweaking-grace-layout-within-music.ly +++ b/Documentation/snippets/tweaking-grace-layout-within-music.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " La disposición de las expresiones de adorno se puede cambiar a lo diff --git a/Documentation/snippets/unfretted-headword.ly b/Documentation/snippets/unfretted-headword.ly index 6f1a16f1d1..4c6f3f8c33 100644 --- a/Documentation/snippets/unfretted-headword.ly +++ b/Documentation/snippets/unfretted-headword.ly @@ -33,7 +33,7 @@ -\version "2.13.40" +\version "2.13.46" #(set-global-staff-size 15) %%% diff --git a/Documentation/snippets/use-square-bracket-at-the-start-of-a-staff-group.ly b/Documentation/snippets/use-square-bracket-at-the-start-of-a-staff-group.ly index 0ae477c5c5..f8b55cd3ff 100644 --- a/Documentation/snippets/use-square-bracket-at-the-start-of-a-staff-group.ly +++ b/Documentation/snippets/use-square-bracket-at-the-start-of-a-staff-group.ly @@ -6,7 +6,7 @@ \header { lsrtags = "staff-notation, contexts-and-engravers" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se puede usar el delimitador de comienzo de un sistema @code{SystemStartSquare} estableciéndolo explícitamente dentro de diff --git a/Documentation/snippets/using-alternative-flag-styles.ly b/Documentation/snippets/using-alternative-flag-styles.ly index b45322426c..e4e5a68692 100644 --- a/Documentation/snippets/using-alternative-flag-styles.ly +++ b/Documentation/snippets/using-alternative-flag-styles.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Se pueden imprimir estilos alternativos del corchete o gancho de las diff --git a/Documentation/snippets/using-arpeggiobracket-to-make-divisi-more-visible.ly b/Documentation/snippets/using-arpeggiobracket-to-make-divisi-more-visible.ly index 1f0134c376..c865dfd029 100644 --- a/Documentation/snippets/using-arpeggiobracket-to-make-divisi-more-visible.ly +++ b/Documentation/snippets/using-arpeggiobracket-to-make-divisi-more-visible.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks, vocal-music" -%% Translation of GIT committish: 8b9a694a483632437fb5110b3531074ddb31c04a +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " El corchete de arpegios @code{arpeggioBracket} se puede usar para indicar la división de voces cuando no hay plicas que puedan ofrecer diff --git a/Documentation/snippets/using-double-slurs-for-legato-chords.ly b/Documentation/snippets/using-double-slurs-for-legato-chords.ly index 3bb1663d22..1202a641a7 100644 --- a/Documentation/snippets/using-double-slurs-for-legato-chords.ly +++ b/Documentation/snippets/using-double-slurs-for-legato-chords.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Algunos compositores escriben dos ligaduras cuando quieren acordes legato. Esto se puede conseguir estableciendo @code{doubleSlurs}. diff --git a/Documentation/snippets/using-grace-note-slashes-with-normal-heads.ly b/Documentation/snippets/using-grace-note-slashes-with-normal-heads.ly index f41bd73091..a4096debc0 100644 --- a/Documentation/snippets/using-grace-note-slashes-with-normal-heads.ly +++ b/Documentation/snippets/using-grace-note-slashes-with-normal-heads.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Es posible aplicar la barrita que cruza la barra de las diff --git a/Documentation/snippets/using-ly-grob-object-to-access-grobs-with--tweak.ly b/Documentation/snippets/using-ly-grob-object-to-access-grobs-with--tweak.ly index d086c18b7d..bd20f30da6 100644 --- a/Documentation/snippets/using-ly-grob-object-to-access-grobs-with--tweak.ly +++ b/Documentation/snippets/using-ly-grob-object-to-access-grobs-with--tweak.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " diff --git a/Documentation/snippets/using-the-whiteout-property.ly b/Documentation/snippets/using-the-whiteout-property.ly index 1abadc54c6..5d5fd1513c 100644 --- a/Documentation/snippets/using-the-whiteout-property.ly +++ b/Documentation/snippets/using-the-whiteout-property.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " diff --git a/Documentation/snippets/using-ties-with-arpeggios.ly b/Documentation/snippets/using-ties-with-arpeggios.ly index f161cfd76c..ee5ac5e6df 100644 --- a/Documentation/snippets/using-ties-with-arpeggios.ly +++ b/Documentation/snippets/using-ties-with-arpeggios.ly @@ -6,7 +6,7 @@ \header { lsrtags = "rhythms" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 doctitlees = "Uso de ligaduras en los arpegios" texidoces = " En ocasiones se usan ligaduras de unión para escribir los arpegios. diff --git a/Documentation/snippets/vertically-aligned-dynamics-and-textscripts.ly b/Documentation/snippets/vertically-aligned-dynamics-and-textscripts.ly index de2dea5510..e820c33a40 100644 --- a/Documentation/snippets/vertically-aligned-dynamics-and-textscripts.ly +++ b/Documentation/snippets/vertically-aligned-dynamics-and-textscripts.ly @@ -6,7 +6,7 @@ \header { lsrtags = "tweaks-and-overrides, spacing" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Mediante el establecimiento de la propiedad @code{'Y-extent} a un valor adecuado, todos los objetos @code{DynamicLineSpanner} (reguladores e diff --git a/Documentation/snippets/vertically-aligning-dynamics-across-multiple-notes.ly b/Documentation/snippets/vertically-aligning-dynamics-across-multiple-notes.ly index 502f515338..de437aca4a 100644 --- a/Documentation/snippets/vertically-aligning-dynamics-across-multiple-notes.ly +++ b/Documentation/snippets/vertically-aligning-dynamics-across-multiple-notes.ly @@ -6,7 +6,7 @@ \header { lsrtags = "expressive-marks" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Las expresiones dinámicas que se comienzan, terminan o se producen en la misma nota se alinean verticalmente. Para asegurar que las diff --git a/Documentation/snippets/vertically-aligning-ossias-and-lyrics.ly b/Documentation/snippets/vertically-aligning-ossias-and-lyrics.ly index 9e0bd3d795..2ef6095e2e 100644 --- a/Documentation/snippets/vertically-aligning-ossias-and-lyrics.ly +++ b/Documentation/snippets/vertically-aligning-ossias-and-lyrics.ly @@ -6,7 +6,7 @@ \header { lsrtags = "vocal-music, tweaks-and-overrides, spacing" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Este fragmento de código muestra el uso de las propiedades de contexto @code{alignBelowContext} y @code{alignAboveContext} para diff --git a/Documentation/snippets/vertically-centering-paired-figured-bass-extenders.ly b/Documentation/snippets/vertically-centering-paired-figured-bass-extenders.ly index 5e68a12edb..6fafe76fe2 100644 --- a/Documentation/snippets/vertically-centering-paired-figured-bass-extenders.ly +++ b/Documentation/snippets/vertically-centering-paired-figured-bass-extenders.ly @@ -6,7 +6,7 @@ \header { lsrtags = "chords, tweaks-and-overrides" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Allí donde se utilicen líneas extensoras para el bajo cifrado mediante el establecimiento de @code{useBassFigureExtenders} al valor diff --git a/Documentation/snippets/vocal-ensemble-template-with-automatic-piano-reduction.ly b/Documentation/snippets/vocal-ensemble-template-with-automatic-piano-reduction.ly index c2989a6328..dca5718ae7 100644 --- a/Documentation/snippets/vocal-ensemble-template-with-automatic-piano-reduction.ly +++ b/Documentation/snippets/vocal-ensemble-template-with-automatic-piano-reduction.ly @@ -6,7 +6,7 @@ \header { lsrtags = "vocal-music, keyboards, template" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Esta plantilla añade una reducción de piano automática a la partitura diff --git a/Documentation/snippets/vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly b/Documentation/snippets/vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly index a4bbc993cb..20916b9544 100644 --- a/Documentation/snippets/vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly +++ b/Documentation/snippets/vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly @@ -6,7 +6,7 @@ \header { lsrtags = "text, vocal-music, contexts-and-engravers, template" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Esta plantilla es, básicamente, la misma que la sencilla plantilla @qq{Conjunto vocal}, excepto que aquí todas las líneas de letra se diff --git a/Documentation/snippets/vocal-ensemble-template-with-verse-and-refrain.ly b/Documentation/snippets/vocal-ensemble-template-with-verse-and-refrain.ly index 9e1b671b24..79d8d3d580 100644 --- a/Documentation/snippets/vocal-ensemble-template-with-verse-and-refrain.ly +++ b/Documentation/snippets/vocal-ensemble-template-with-verse-and-refrain.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Esta plantilla crea una partitura que comienza con una estrofa para diff --git a/Documentation/snippets/vocal-ensemble-template.ly b/Documentation/snippets/vocal-ensemble-template.ly index dd5088bf53..70efd9402e 100644 --- a/Documentation/snippets/vocal-ensemble-template.ly +++ b/Documentation/snippets/vocal-ensemble-template.ly @@ -6,7 +6,7 @@ \header { lsrtags = "vocal-music, template" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " He aquí una partitura vocal estándar para cuatro voces SATB. Con grupos mayores, suele ser útil incluir una sección que aparezca en diff --git a/Documentation/snippets/volta-below-chords.ly b/Documentation/snippets/volta-below-chords.ly index fa174df890..780715643d 100644 --- a/Documentation/snippets/volta-below-chords.ly +++ b/Documentation/snippets/volta-below-chords.ly @@ -6,7 +6,7 @@ \header { lsrtags = "repeats, staff-notation, chords" -%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " Mediante la adición del grabador @code{Volta_engraver} al pentagrama pertinente, se pueden poner los corchetes de primera y diff --git a/Documentation/snippets/wind-headword.ly b/Documentation/snippets/wind-headword.ly index 889dbcc595..c2b71b12de 100644 --- a/Documentation/snippets/wind-headword.ly +++ b/Documentation/snippets/wind-headword.ly @@ -2,7 +2,7 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" #(set-global-staff-size 15) \paper { line-width = 16\cm diff --git a/Documentation/snippets/woodwind-diagrams-key-lists.ly b/Documentation/snippets/woodwind-diagrams-key-lists.ly index f91af70dd8..d0a56e9fa4 100644 --- a/Documentation/snippets/woodwind-diagrams-key-lists.ly +++ b/Documentation/snippets/woodwind-diagrams-key-lists.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%%% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce +%%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " diff --git a/Documentation/snippets/woodwind-diagrams-listing.ly b/Documentation/snippets/woodwind-diagrams-listing.ly index 7832329e14..e457b55c68 100644 --- a/Documentation/snippets/woodwind-diagrams-listing.ly +++ b/Documentation/snippets/woodwind-diagrams-listing.ly @@ -2,10 +2,10 @@ % generated from Documentation/snippets/new % This file is in the public domain. %% Note: this file works from version 2.13.36 -\version "2.13.40" +\version "2.13.46" \header { -%%% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce +%%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 texidoces = " El fragmento de música que aparece a continuación presenta todos los diagramas de viento madera que se encuentran definidos en LilyPond por diff --git a/input/regression/tablature-letter.ly b/input/regression/tablature-letter.ly index 5ff06d5ae0..d52a2500a5 100644 --- a/input/regression/tablature-letter.ly +++ b/input/regression/tablature-letter.ly @@ -1,6 +1,8 @@ -\version "2.13.10" +\version "2.13.46" -\header { texidoc = "A sample tablature with lettered tab, +\header { + texidoc = " +A sample tablature with lettered tab, using fretLabels to modify the fret letters. By default, letters are drawn sequentially from the alphabet, @@ -27,13 +29,15 @@ notes = \relative c' { \score { \new TabStaff \with { - stringTunings = #'(17 14 9 5 2 -3) + stringTunings = #`(,(ly:make-pitch 1 3 0) + ,(ly:make-pitch 1 1 0) + ,(ly:make-pitch 0 5 0) + ,(ly:make-pitch 0 3 0) + ,(ly:make-pitch 0 1 0) + ,(ly:make-pitch -1 5 0)) tablatureFormat = #fret-letter-tablature-format } \new TabVoice { \notes } } - - - diff --git a/input/regression/tablature-string-tunings.ly b/input/regression/tablature-string-tunings.ly index d8f735e435..893c3c2c1d 100644 --- a/input/regression/tablature-string-tunings.ly +++ b/input/regression/tablature-string-tunings.ly @@ -1,3 +1,5 @@ +\version "2.13.46" + \header { texidoc = "For other tunings, it is sufficient to set @@ -6,12 +8,13 @@ } -\version "2.12.0" - \new TabStaff { - \set TabStaff.stringTunings = #'(5 10 15 20) + \set TabStaff.stringTunings = #`(,(ly:make-pitch 0 3 0) + ,(ly:make-pitch 0 5 SHARP) + ,(ly:make-pitch 1 1 SHARP) + ,(ly:make-pitch 1 4 SHARP)) \relative c'' { c4 d e f } } - + diff --git a/ly/declarations-init.ly b/ly/declarations-init.ly index 08ff4d21a3..39aeabdb61 100644 --- a/ly/declarations-init.ly +++ b/ly/declarations-init.ly @@ -94,6 +94,31 @@ melismaEnd = #(context-spec-music (make-property-unset 'melismaBusy) 'Bottom) laissezVibrer = #(make-music 'LaissezVibrerEvent) repeatTie = #(make-music 'RepeatTieEvent) +\include "dynamic-scripts-init.ly" +\include "spanners-init.ly" + +%% MAKE-HASH-TABLE in GUILE 1.6 takes mandatory size parameter. +#(define musicQuotes (make-hash-table 29)) + +#(define toplevel-book-handler print-book-with-defaults) +#(define toplevel-bookpart-handler collect-bookpart-for-book) +#(define toplevel-music-handler collect-music-for-book) +#(define toplevel-score-handler collect-scores-for-book) +#(define toplevel-text-handler collect-scores-for-book) + +#(define book-bookpart-handler ly:book-add-bookpart!) +#(define book-music-handler collect-book-music-for-book) +#(define book-score-handler ly:book-add-score!) +#(define book-text-handler ly:book-add-score!) + +#(define bookpart-score-handler ly:book-add-score!) +#(define bookpart-text-handler ly:book-add-score!) +#(define bookpart-music-handler collect-book-music-for-book) + +\include "predefined-fretboards-init.ly" +\include "string-tunings-init.ly" +\include "property-init.ly" + \include "grace-init.ly" \include "midi-init.ly" \include "paper-defaults-init.ly" @@ -112,7 +137,6 @@ repeatTie = #(make-music 'RepeatTieEvent) } #(set-default-paper-size (ly:get-option 'paper-size)) - partCombineListener = \layout { \context { \Score @@ -122,28 +146,7 @@ partCombineListener = \layout { } } -\include "dynamic-scripts-init.ly" -\include "spanners-init.ly" -\include "property-init.ly" - setDefaultDurationToQuarter = { c4 } -%% MAKE-HASH-TABLE in GUILE 1.6 takes mandatory size parameter. -#(define musicQuotes (make-hash-table 29)) -#(define toplevel-book-handler print-book-with-defaults) -#(define toplevel-bookpart-handler collect-bookpart-for-book) -#(define toplevel-music-handler collect-music-for-book) -#(define toplevel-score-handler collect-scores-for-book) -#(define toplevel-text-handler collect-scores-for-book) - -#(define book-bookpart-handler ly:book-add-bookpart!) -#(define book-music-handler collect-book-music-for-book) -#(define book-score-handler ly:book-add-score!) -#(define book-text-handler ly:book-add-score!) -#(define bookpart-score-handler ly:book-add-score!) -#(define bookpart-text-handler ly:book-add-score!) -#(define bookpart-music-handler collect-book-music-for-book) - -\include "predefined-fretboards-init.ly" diff --git a/ly/string-tunings-init.ly b/ly/string-tunings-init.ly new file mode 100644 index 0000000000..5bcdbfdd86 --- /dev/null +++ b/ly/string-tunings-init.ly @@ -0,0 +1,135 @@ +%%%% This file is part of LilyPond, the GNU music typesetter. +%%%% +%%%% Copyright (C) 2010 Carl D. Sorensen +%%%% +%%%% LilyPond is free software: you can redistribute it and/or modify +%%%% it under the terms of the GNU General Public License as published by +%%%% the Free Software Foundation, either version 3 of the License, or +%%%% (at your option) any later version. +%%%% +%%%% LilyPond is distributed in the hope that it will be useful, +%%%% but WITHOUT ANY WARRANTY; without even the implied warranty of +%%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +%%%% GNU General Public License for more details. +%%%% +%%%% You should have received a copy of the GNU General Public License +%%%% along with LilyPond. If not, see . + +\version "2.13.46" + +%% A stringTuning is a list of pitches ordered by string number +%% from 1 to N. +%% Here we define a number of default string tunings. + +%% A scheme function for converting a chord to a string tuning +#(define (chord->tuning parser tuning-symbol chord) + (let* ((ev-chord (car (extract-named-music chord 'EventChord))) + (pitches (event-chord-pitches ev-chord))) + (ly:parser-define! parser tuning-symbol (reverse pitches)))) + +%% A music function for converting a chord to a string tuning. +%% The music argument for \makeStringTuning must be a chord in +%% absolute mode ordered from the highest string number to the +%% lowest string number + +makeStringTuning = +#(define-music-function (parser location tuning chord) + (symbol? ly:music?) + (_ "Convert @{chord} to a string tuning stored in @code{tuning}. +@{chord} must be in absolute pitches and should have the highest +string number (generally the lowest pitch) first. @code{tuning} +should be a string that will be converted to a symbol.") + (begin + (chord->tuning parser tuning chord) + (make-music 'SequentialMusic 'void #t))) + + +%% A music function for converting a chord to a string tuning +%% and setting the current context stringTunings property to +%% the newly-defined-string tuning. + +contextStringTuning = +#(define-music-function (parser location tuning chord) + (symbol? ly:music?) + (_ "Convert @{chord} to a string tuning stored in @code{tuning}, +and set @code{stringTunings} of the current context to the +newly-defined tuning. +@{chord} must be in absolute pitches and should have the highest +string number (generally the lowest pitch) first. @code{tuning} +should be a string that will be converted to a symbol.") + (begin + (chord->tuning parser tuning chord) + #{ + \set TabStaff.stringTunings = $(ly:parser-lookup parser tuning) + \set FretBoards.stringTunings = $(ly:parser-lookup parser tuning) + #})) + +%% A music function for converting an alist to string-tunings +makeDefaultStringTunings = +#(define-music-function (parser location default-tuning-alist) + (cheap-list?) + (_ "Define default string tunings for each element of +@code{default-tuning-alist}.") + (begin + (for-each (lambda (alist-entry) + (chord->tuning parser (car alist-entry) (cdr alist-entry))) + default-tuning-alist) + (make-music 'SequentialMusic 'void #t))) + +% tuning definitions require default pitchnames +\languageSaveAndChange #default-language + +%% Define alist of default string tunings +defaultStringTunings = +#`( + ;; guitar tunings + (guitar-tuning . ,#{#}) + (guitar-seven-string-tuning . ,#{#}) + (guitar-drop-d-tuning . ,#{#}) + (guitar-open-g-tuning . ,#{#}) + (guitar-open-d-tuning . ,#{#}) + (guitar-dadgad-tuning . ,#{#}) + (guitar-lute-tuning . ,#{#}) + (guitar-asus4-tuning . ,#{#}) + + ;; bass tunings + (bass-tuning . ,#{#}) + (bass-four-string-tuning . ,#{#}) + (bass-drop-d-tuning . ,#{#}) + (bass-five-string-tuning . ,#{#}) + (bass-six-string-tuning . ,#{#}) + + ;; mandolin tunings + (mandolin-tuning . ,#{#}) + + ;; tunings for 5-string banjo + (banjo-open-g-tuning . ,#{#}) + (banjo-c-tuning . ,#{#}) + (banjo-modal-tuning . ,#{#}) + (banjo-open-d-tuning . ,#{#}) + (banjo-open-dm-tuning . ,#{#}) + + ;; ukulele tunings + (ukulele-tuning . ,#{#}) + (ukulele-d-tuning . ,#{#}) + (tenor-ukulele-tuning . ,#{#}) + (baritone-ukulele-tuning . ,#{#}) + + ;; orchestral strings + (violin-tuning . ,#{#}) + (viola-tuning . ,#{#}) + (cello-tuning . ,#{#}) + (double-bass-tuning . ,#{#}) + ) + +%% convert 5-string banjo tuning to 4-string by removing the 5th string +#(define-public (four-string-banjo tuning) + (reverse (cdr (reverse tuning)))) + +%% make all of the default string tunings + +\makeDefaultStringTunings #defaultStringTunings + +% restore the language +\languageRestore + diff --git a/python/convertrules.py b/python/convertrules.py index e17095c388..06e144a23f 100644 --- a/python/convertrules.py +++ b/python/convertrules.py @@ -3123,11 +3123,45 @@ def conv(str): return str @rule ((2, 13, 44), - _ ("Remove context from overrideTimeSignatureSettings and revertTimeSignatureSettings.")) + _ ("Remove context from overrideTimeSignatureSettings and revertTimeSignatureSettings.\n")) + def conv(str): str = re.sub (r"\\(override|revert)TimeSignatureSettings(\s+[^#]*)(#[^#]*)#", r"\\\1TimeSignatureSettings\2#", str) return str +@rule ((2, 13, 46), + _ ("Change stringTunings from a list of semitones to a list of pitches.\n"\ + "Change tenor and baritone ukulele names in string tunings.")) + +def conv(str): + def semitones2pitch(semitones): + steps = [0, 0, 1, 1, 2, 3, 3, 4, 4, 5, 5, 6] + alterations = ["NATURAL", "SHARP", "NATURAL", "SHARP", "NATURAL", "NATURAL", "SHARP", "NATURAL", "SHARP", "NATURAL", "SHARP", "NATURAL"] + octave = 0 + while semitones > 11: + octave += 1 + semitones -=12 + while semitones < 0: + octave -= 1 + semitones += 12 + pitchArgs = "%d %d %s" % (octave, steps[semitones], alterations[semitones]) + return pitchArgs + + def convert_tones (semitone_list): + tones = semitone_list.split () + res = "" + for tone in tones: + args = semitones2pitch(int(tone)) + res += ",(ly:make-pitch " + args + ") " + return res + + def new_tunings (matchobj): + return "stringTunings = #`(" + convert_tones(matchobj.group(1)) + ")" + str = re.sub (r"stringTunings\s*=\s*#'\(([\d\s-]*)\)", \ + new_tunings , str) + + str = re.sub (r"ukulele-(tenor|baritone)-tuning", r"\1-ukulele-tuning", str) + return str # Guidelines to write rules (please keep this at the end of this file) # diff --git a/python/musicexp.py b/python/musicexp.py index 1c9f3effb1..c02c7fea48 100644 --- a/python/musicexp.py +++ b/python/musicexp.py @@ -1885,9 +1885,9 @@ class TabStaff (Staff): if self.string_tunings or self.tablature_format: printer.dump ("\\with {") if self.string_tunings: - printer.dump ("stringTunings = #'(") + printer.dump ("stringTunings = #`(") for i in self.string_tunings: - printer.dump ("%s" % i.semitones ()) + printer.dump (",%s" % i.lisp_expression ()) printer.dump (")") if self.tablature_format: printer.dump ("tablatureFormat = #%s" % self.tablature_format) diff --git a/scm/tablature.scm b/scm/tablature.scm index 7865b9bff5..8d80356d9a 100644 --- a/scm/tablature.scm +++ b/scm/tablature.scm @@ -15,39 +15,6 @@ ;;;; You should have received a copy of the GNU General Public License ;;;; along with LilyPond. If not, see . -;; default tunings for common string instruments -;; guitar tunings -(define-public guitar-tuning '(4 -1 -5 -10 -15 -20)) -(define-public guitar-seven-string-tuning '(4 -1 -5 -10 -15 -20 -25)) -(define-public guitar-drop-d-tuning '(4 -1 -5 -10 -15 -22)) -(define-public guitar-open-g-tuning '(2 -1 -5 -10 -17 -22)) -(define-public guitar-open-d-tuning '(2 -3 -6 -10 -15 -22)) -(define-public guitar-dadgad-tuning '(2 -3 -5 -10 -15 -22)) -(define-public guitar-lute-tuning '(4 -1 -6 -10 -15 -20)) -(define-public guitar-asus4-tuning '(4 -3 -8 -10 -15 -20)) -;; bass tunings -(define-public bass-tuning '(-17 -22 -27 -32)) -(define-public bass-four-string-tuning '(-17 -22 -27 -32)) -(define-public bass-drop-d-tuning '(-17 -22 -27 -34)) -(define-public bass-five-string-tuning '(-17 -22 -27 -32 -37)) -(define-public bass-six-string-tuning '(-12 -17 -22 -27 -32 -37)) -;; mandolin -(define-public mandolin-tuning '(16 9 2 -5)) -;; tunings for 5-string banjo -(define-public banjo-open-g-tuning '(2 -1 -5 -10 7)) -(define-public banjo-c-tuning '(2 -1 -5 -12 7)) -(define-public banjo-modal-tuning '(2 0 -5 -10 7)) -(define-public banjo-open-d-tuning '(2 -3 -6 -10 9)) -(define-public banjo-open-dm-tuning '(2 -3 -6 -10 9)) -;; convert 5-string banjo tuning to 4-string by removing the 5th string -(define-public (four-string-banjo tuning) - (reverse (cdr (reverse tuning)))) -;; ukulele tunings -(define-public ukulele-tuning '(9 4 0 7)) ;ukulele a' e' c' g' -(define-public ukulele-d-tuning '(11 6 2 9)) ;ukulele d tuning, b' fis' d' a' -(define-public ukulele-tenor-tuning '(-5 0 4 9)) ;tenor ukulele, g c' e' a' -(define-public ukulele-baritone-tuning '(-10 -5 -1 4)) ;baritone ukulele, d g b e' - ;; for more control over glyph-name calculations, ;; we use a custom callback for tab note heads diff --git a/scm/translation-functions.scm b/scm/translation-functions.scm index b559a77137..a2ee8b9ddb 100644 --- a/scm/translation-functions.scm +++ b/scm/translation-functions.scm @@ -341,7 +341,7 @@ chords. Returns a placement-list." tuning) (define (calc-fret pitch string tuning) - (- (ly:pitch-semitones pitch) (list-ref tuning (1- string)))) + (- (ly:pitch-semitones pitch) (ly:pitch-semitones (list-ref tuning (1- string))))) (define (note-pitch a) (ly:event-property a 'pitch))