Re: Tidying Score

2017-11-17 Thread Richard Chonak
The first line is indented because of the default indent setting.  You can
control this in the \layout block.  For example:

\layout  {
   indent = 1\cm
}

If you specify a zero, then omit the units and enter simply:  "indent = 0".

If you have two \score objects in a single .ly file, each one has its own
\layout specification.

--RC



On Fri, Nov 17, 2017 at 2:01 PM, Vivyan 
wrote:

> I'm just starting writing music using lilypond. Im getting this problem
> where
> my staves arn't lining up how can I fix this?
>  Shot_2017-11-17_at_19.png>
>
>
>
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Tidying Score

2017-11-17 Thread Urs Liska

Hi Vivyan,


Am 17.11.2017 um 20:01 schrieb Vivyan:

I'm just starting writing music using lilypond.


This is a good idea ;-)


Im getting this problem where
my staves arn't lining up how can I fix this?



It's not completely clear from your screenshot, but: are this two 
separate \score {} blocks?


It looks like it, and you are seeing the default indentation classical 
scores tend to have.


If you add

\paper {
  indent = 0
}

to your file the "problem" should go away.

HTH
Urs

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Tidying Score

2017-11-17 Thread Vivyan
I'm just starting writing music using lilypond. Im getting this problem where
my staves arn't lining up how can I fix this?

 



--
Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Tidying Score

2017-11-17 Thread Simon Albrecht

On 17.11.2017 20:01, Vivyan wrote:

I'm just starting writing music using lilypond. Im getting this problem where
my staves arn't lining up how can I fix this?


Welcome to the Pond! In general, starting out with LilyPond gets a lot 
easier if you work your way through the Learning Manual – it takes a 
while to understand, but it will save you a lot of misunderstandings.


Best, Simon

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Tidying Score

2017-11-17 Thread Ben

On 11/17/2017 2:01 PM, Vivyan wrote:

I'm just starting writing music using lilypond. Im getting this problem where
my staves arn't lining up how can I fix this?




--
Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html

_


One more thing, I don't know how you have the score setup above the 
screenshot you shared (scrolled up code), but in a very *very* basic way 
you can line up things by just doing simultaneous staves like this:



\version "2.19.80"

{
  <<
    {
 \new Staff
 \time 5/4
 c'' d'' e'' f''

    }
 \new Staff
 {
 \time 5/4
 c'' d'' e'' f''

 }

 \new Staff
 {
 \time 5/4
 c'' d'' e'' f''

 }

 \new Staff
 {
 \time 5/4
 c'' d'' e'' f''

 }

>>
}
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Tidying Score

2017-11-17 Thread Caagr98
That looks like you're creating a new score for the third line. It has 
indentation, no measure number, a new clef without a courtesy clef, etc.. It 
looks like you intended to place both staves in parallel inside a PianoStaff, 
but you've somehow put them in different \score blocks instead.

On 11/17/17 20:01, Vivyan wrote:
> I'm just starting writing music using lilypond. Im getting this problem where
> my staves arn't lining up how can I fix this?
> 
>  
> 
> 
> 
> --
> Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html
> 
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
> 

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Tidying Score

2017-11-17 Thread Ben

On 11/17/2017 2:01 PM, Vivyan wrote:

I'm just starting writing music using lilypond. Im getting this problem where
my staves arn't lining up how can I fix this?






Hi Vivyan,

Can you please share the code of your working file so we can see how 
you're setting up the score exactly? It's pretty difficult to see the 
whole picture from just the snapshot you attached.


You can control the staves and alignment quite easily with certain 
blocks of code, reply back with a minimal amount of code so we can help you.




PS. I remember how much fun rotational arrays were back as an 
undergraduate ;)
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Tidying Score

2017-11-17 Thread Vivyan
I'm just starting writing music using lilypond. Im getting this problem where
my staves arn't lining up how can I fix this?

 



--
Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user