Discussion:
Sample files
mansouraoun
2018-11-21 19:39:56 UTC
Permalink
Hello Lilypond community,

I'm an absolute beginner, I watched the full playlist on youtube and read a
fair amount of the manual yet it is all fragmented in my head now. I just
would like to see how the structure of a finished file would look like,
specifically a multi-staves score. I've searched on the website but I found
the graphic results of such files, not the actual code.

Thanks in advance!
Mansour



--
Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html
Karlin High
2018-11-21 21:31:42 UTC
Permalink
Post by mansouraoun
I just
would like to see how the structure of a finished file would look like,
specifically a multi-staves score. I've searched on the website but I found
the graphic results of such files, not the actual code.
You found the graphic results in the manuals? You can click the graphics
and the code generating them will be displayed.

<http://lilypond.org/doc/v2.19/Documentation/learning/multiple-staves>
<Loading Image...>
<http://lilypond.org/doc/v2.19/Documentation/11/lily-906d6897.ly>
--
Karlin High
Missouri, USA
Karlin High
2018-11-21 21:35:50 UTC
Permalink
Post by mansouraoun
I just
would like to see how the structure of a finished file would look like
Also see the "Templates" section in the Learning Manual.

<http://lilypond.org/doc/v2.19/Documentation/learning/templates>

There are multi-staff templates for several different styles of music,
including piano, string quartet, vocal ensemble, and orchestra.
--
Karlin High
Missouri, USA
mansouraoun
2018-11-21 22:18:15 UTC
Permalink
Thanks for your quick replies!

The references you sent will help me a lot. What I would love to see is a
finished complex score code with score blocks, just to observe how it was
done so I can fit all the separate lessons that I learned into place, like
those:
Loading Image...
<http://lilypond.org/ly-examples/cary.png>
Loading Image...
<http://lilypond.org/ly-examples/orchestra.png>

Are there any depository for such scores?

Thanks!

Mansour



--
Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html
Urs Liska
2018-11-21 23:33:05 UTC
Permalink
Post by mansouraoun
Thanks for your quick replies!
The references you sent will help me a lot. What I would love to see is a
finished complex score code with score blocks, just to observe how it was
done so I can fit all the separate lessons that I learned into place, like
http://lilypond.org/ly-examples/cary.png
<http://lilypond.org/ly-examples/cary.png>
http://lilypond.org/ly-examples/orchestra.png
<http://lilypond.org/ly-examples/orchestra.png>
Are there any depository for such scores?
I'm pretty sure these example scores are generated from some code, but I
don't recall off the top of my hat where they are stored. But you may
want to have a look at http://www.mutopiaproject.org/ which provides
lots of scores of various complexity, as PDF *and* .ly files.

HTH
Urs
Post by mansouraoun
Thanks!
Mansour
--
Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html
_______________________________________________
lilypond-user mailing list
https://lists.gnu.org/mailman/listinfo/lilypond-user
Federico Bruni
2018-11-22 07:52:18 UTC
Permalink
Il giorno mer 21 nov 2018 alle 23:18, mansouraoun
Post by mansouraoun
Thanks for your quick replies!
The references you sent will help me a lot. What I would love to see is a
finished complex score code with score blocks, just to observe how it was
done so I can fit all the separate lessons that I learned into place, like
http://lilypond.org/ly-examples/cary.png
<http://lilypond.org/ly-examples/cary.png>
http://lilypond.org/ly-examples/orchestra.png
<http://lilypond.org/ly-examples/orchestra.png>
Are there any depository for such scores?
You can find them here:
http://git.savannah.gnu.org/cgit/lilypond.git/tree/Documentation/ly-examples

We discussed in the past about adding the sources in the website, but
IIRC some thought that some examples may be too complex and might scare
away new users.

Lukas-Fabian Moser
2018-11-21 21:29:20 UTC
Permalink
Hi Mansour,
Post by mansouraoun
Hello Lilypond community,
I'm an absolute beginner, I watched the full playlist on youtube and read a
fair amount of the manual yet it is all fragmented in my head now. I just
would like to see how the structure of a finished file would look like,
specifically a multi-staves score. I've searched on the website but I found
the graphic results of such files, not the actual code.
Thanks in advance!
Mansour
One very simple example (which you could extend easily):

\version "2.18.2"


Soprano = \relative c' {
  c4 d e2
  \bar "|."
}
\addlyrics {
  This is great!
}

Bass = \relative g {
  \clef bass
  f4 e8( d) a2
}
\addlyrics {
  Well well well
}

\new ChoirStaff <<
  \new Staff \Soprano
  \new Staff \Bass
Loading...