lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Template: String Quartet (score-only), first draft


From: MarcM
Subject: Re: Template: String Quartet (score-only), first draft
Date: Sun, 20 Jul 2014 05:52:11 -0700 (PDT)

I found this thread via google and it dates from few years back.

I include the sample at the end of this mail.

You can compare it with the one here:
http://www.lilypond.org/doc/v2.18/Documentation/learning/string-quartet


The documentation shows a sample for string quartet parts  which requires to
uncomment lines.
http://www.lilypond.org/doc/v2.18/Documentation/learning/string-quartet-parts

Would anyone already have another template for quartet part that does not 
 require to uncomment lines of code like the one in the documentation? 
 When i am working on each part i want to print the score of the part then 
 if  i need to print the set of parts i just want to open the 
 quartet_AllParts.ly, typeset and print without having to uncomment lines 
of code everytime.


- String Quartet Template from Kieran - 


\version "2.11.55" 

\header 
{ 
        title = "Quartett für 2 Violinen, Viola und Violoncell" 
        composer = "Wolfgang Amadeus Mozart" 
} 

global = 
{ 
        \time 4/4 
        \key c \major 
        s1*4 
        \bar "|." 
} 

violinOneNotes = \relative c' 
{ 
        c4.(\p d8) e4-. e-.   | % 1 
        e8( d f e d4) r   | % 2 
        d4.(\p e8) f4-. f-.   | % 3 
        f8( e g f e4) r   | % 4 
} 

violinTwoNotes = \relative c' 
{ 
        c4.(\p b8) c4-. c-.   | % 1 
        c8( b d c b4) r   | % 2 
        b4.(\p c8) d4-. d-.   | % 3 
        d8( c e d c4) r   | % 4 
} 

violaNotes = \relative c' 
{ 
        \clef alto 
        g1\p ~   | % 1 
        g2 ~ g8( b d b)   | % 2 
        g1 ~   | % 3 
        g2 ~ g8 e'( g e)   | % 2 
} 

celloNotes = \relative c 
{ 
        \clef bass 
        c8\p c c c c c c c   | % 1 
        g g g g g4 r   | % 2 
        g8 g g g g g g g   | % 3 
        c c c c c4 r   | % 4 
} 

\score 
{ 
        \new StaffGroup 
        << 
                \new Staff \with { instrumentName = "Violin I" } 
                        << \global \violinOneNotes >> 
                \new Staff \with { instrumentName = "Violin II" } 
                        << \global \violinTwoNotes >> 
                \new Staff \with { instrumentName = "Viola" } 
                        << \global \violaNotes >> 
                \new Staff \with { instrumentName = "Violoncello" } 
                        << \global \celloNotes >> 
        >> 
        
        \layout { } 
        %\midi { }  %% uncomment this line to enable MIDI output 
} 
 






--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/no-subject-tp34746p164708.html
Sent from the User mailing list archive at Nabble.com.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]