Sorry for the oversight. The attached code is as minimal as I can get it.
Thanks,
Peter

On 10/29/2012 02:48 PM, Daniel Rosen wrote:
Can't really tell from the attachment. As a rule, tiny excerpts of code (which 
other users can compile themselves) are more useful for debugging than PDFs. 
Check out: http://www.lilypond.org/tiny-examples.html

DR

From: Peter O'Doherty [mailto:m...@peterodoherty.net]
Sent: Monday, October 29, 2012 9:45 AM
To: Daniel Rosen
Cc: lilypond-user
Subject: Re: dynamics positioning

Thanks.
My logic suggests it should be enough to add this line above the cymbals part, 
but it doesn't seems to work (see attached file).


\new Dynamics {
\time 3/8
\times 2/3 { s8\mf s32 s32 s8.\pp \times 8/13 { s64 s16 s16 s16\pp } s64. s64 
s64.] } |
}

What am I doing wrong?
Thanks,
Peter

On 10/29/2012 02:19 PM, Daniel Rosen wrote:
Try using two Dynamics contexts, one above and one below.

DR


-----Original Message-----
From: Peter O'Doherty [mailto:m...@peterodoherty.net]
Sent: Monday, October 29, 2012 9:14 AM
To: lilypond-user
Subject: dynamics positioning

Hi,

Could someone please take a look at the attached file and help with the 
placement of dynamics + hairpins? (I also attach an example output.) Ideally 
they would be grouped together above the top stave for the upper notes and 
below the lower stave for the lower notes. ^ and _ have little effect.

Many thanks,
Peter

--
//=============================
-> Peter O'Doherty
-> http://www.peterodoherty.net
-> m...@peterodoherty.net
-> https://joindiaspora.com/people/70716
//=============================







--
//=============================
-> Peter O'Doherty
-> http://www.peterodoherty.net
-> m...@peterodoherty.net
-> https://joindiaspora.com/people/70716
//=============================

\version "2.16.0"
\language "english"

\header {
   tagline = ##f
}
  
#(set-default-paper-size "a4" 'portrait)

\paper{
  top-margin = 2.0\cm
}


\new Dynamics {
  \time 3/8
    \times 2/3 { s8\mf s32 s32 s8.\pp \times 8/13 { s64 s16 s16 s16\pp } s64. s64 s64.] } |
  }
  
cymbals = { 
  \clef percussion
  \stemUp
  \time 3/8
  \change Staff = "conga" \times 2/3 { d'8[\mf \change Staff = "cymbals" a32 e'32 \change Staff = "temple" d'8.\pp \change Staff = "cymbals" \times 8/13 { r64 c'16^\mp^\< a16 \change Staff = "temple" b16 } \change Staff = "cymbals" e'64. \change Staff = "temple" g64^\f \change Staff = "cymbals" c'64.] }|
} 

temple = {
 \clef percussion
 s8 s8 s8 |
}

toms = {
  \clef percussion
  s8 s8 s8 |
}
  
conga = {
 \clef percussion
 s8 s8 s8 |
}   

snare = {
\clef percussion
\stemDown
r8 \change Staff = "temple" g8[\pp \change Staff = "conga" d'32\mf\> b32 \change Staff = "snare" c'16]\mp | 
}   

{
  \new StaffGroup <<
    \new Staff = "cymbals" \cymbals
    \new Staff = "temple" \temple
    \new Staff = "toms" \toms
    \new Staff = "conga" \conga
    \new Staff = "snare"  \snare
   
  >>
}

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

Reply via email to