Jump to content

Layout Examples - 4 voices


Recommended Posts

Four voices.

(setf vox1 '(q d4 g4 a4 b4 a4 h. g4))
(setf vox2 '(q b3 e4 g4 g4 fs4 h. d4))
(setf vox3 '(q g3 b3 d4 d4 d4 h. b3))
(setf vox4 '(q g3 e3 d3 g3 d3 h. g2))

 

1st layout:

(def-score layout1
           (:key-signature '(g maj)
            :time-signature '((1 1 1 1) 4)
            :tempo 85
            :layout (list
                     (treble-layout 'inst1)
                     (treble-layout 'inst2)
                     (treble-layout 'inst3)
                     (treble-layout 'inst4)))
  
  (inst1 :omn vox1 :channel 1 :sound 'gm :program 0)
  (inst2 :omn vox2)
  (inst3 :omn vox3)
  (inst4 :omn vox4)
  )

post-1-0-24808100-1412350942_thumb.png

 

2nd layout:

(def-score layout2
            (:key-signature '(g maj)
            :time-signature '((1 1 1 1) 4)
            :tempo 85
            :layout (list
                     (treble-layout 'inst1)
                     (treble-layout 'inst2)
                     (tenor-layout 'inst3)
                     (bass-layout 'inst4)))
  
  (inst1 :omn vox1 :channel 1 :sound 'gm :program 0)
  (inst2 :omn vox2)
  (inst3 :omn vox3)
  (inst4 :omn vox4)
  )

post-1-0-24774500-1412350948_thumb.png

 

3rd layout:

(def-score layout3
            (:key-signature '(g maj)
            :time-signature '((1 1 1 1) 4)
            :tempo 85
            :layout (bracket-group
                      (treble-layout 'inst1)
                      (treble-layout 'inst2)
                      (tenor-layout 'inst3)
                      (bass-layout 'inst4)))
  
  (inst1 :omn vox1 :channel 1 :sound 'gm :program 0)
  (inst2 :omn vox2)
  (inst3 :omn vox3)
  (inst4 :omn vox4)
  )

post-1-0-40895900-1412350954_thumb.png

 

4th layout:

(def-score layout4
            (:key-signature '(g maj)
            :time-signature '((1 1 1 1) 4)
            :tempo 85
            :layout (choir-satb-layout
                     'inst1 'inst2 'inst3 'inst4))
  
  (inst1 :omn vox1 :channel 1 :sound 'gm :program 0)
  (inst2 :omn vox2)
  (inst3 :omn vox3)
  (inst4 :omn vox4)
  ) 

post-1-0-33307700-1412350961_thumb.png

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

Terms of Use Privacy Policy