lilypond-user
[Top][All Lists]
Advanced

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

Book


From: Carlos Martinez
Subject: Book
Date: Tue, 21 Sep 2021 15:21:26 -0500

Hi, 

I posted a about reuquesting help on how to do book in lilypond… and I believe 
may have done a bad job about it! lol


Here is the quesiton

How one goes about setting up a book:

1. Files are independent  would like to use include.
2. I want their title and the author to show. 
3. Copyright in the bottoms. 

Thanks!

Each file is setup like this 


\version "2.20.0"

\include "../definitions.ily"

#(define (degrees->radians deg)
  (* PI (/ deg 180.0)))



#(set-global-staff-size 20)

\paper {
  
  #(set-paper-size "letter")
  top-margin = .50\in
   right-margin = .50\in
   left-margin = .50\in
   bottom-margin =  .50\in
     
   \include "../footer001.ily"
  evenFooterMarkup = \oddFooterMarkup  
  
} 


%dynamics with expression

\header {
    emotitle = "Radiant"
    title = \emotitle
    subtitle = "for violin and piano"
    mutopiacomposer = "Julianna Waller & Carlos R Martinez"
    %instrument = "Radiant"
    composer = "Carlos & Julianna Martínez"
    mutopiainstrument = "Violin"
    source = "Julianna Waller & Carlos R Martinez Library"
    style = "Classical original Composition"
    maintainer = "Carlos R Martinez"
    maintainerEmail = "admin@essentialmusic.org"
    lastupdated = "September 2021"
    filename = "maintemplate.ly"
    footer = "Essential Music"
    tagline = \markup {  \override #'(box-padding . 1.0) \override 
#'(baseline-skip . 2.7) \box \center-column { \small \line { This work is 
published and distributed by \with-url #"https://essentialmusic.org"; \line { 
Essential Music LLC \hspace #0.5 }  } \line { \small \line { © 2020 Copyright 
Julianna Waller & Carlos R Martinez |  Essential Music \with-url 
#"https://www.essentialmusic.org"; \line { www. \hspace #-.6 essentialmusic.org 
\hspace #-.5  .org } by  \hspace #-1.0 . \hspace #0.5  } } \line { \teeny \line 
{ more information we can add here if needed  \with-url 
#"https://essentilamusic.org"; at essentialmusic.org } } } }

   copyright =  \markup {\vspace #1 \override #'(font-name . "DejaVu Sans, 
Bold") 
   \override #'(baseline-skip . 0) \right-column {\with-url 
#"https://essentialmusic.org";  {\abs-fontsize #9  "Essential Music." \concat 
     {\abs-fontsize #12 \with-color #white "ǀ" \abs-fontsize #9 "Org 
"}}}\override #'(font-name . "DejaVu Sans, Bold") \override #'(baseline-skip . 
0 ) \center-column 
   {\abs-fontsize #11.9 \with-color #black \bold {"ǀ" "ǀ"}}\override 
#'(font-name . "DejaVu Sans,sans-serif") \override #'(baseline-skip . 0) 
\column 
   {\abs-fontsize #8 \concat  {  \line {© 2021 Carlos R Martínez} " | " \footer}
     \concat {\concat {\abs-fontsize #8 
     { \with-url #"https://essentialmusic.org"; " Published and distributed by 
Essential Music LLC"  }}
       }}}
  

}




violin =  \relative c' {
    \key a \major
    %\override Staff.TimeSignature  #'style = #'single-digit
    \time 12/8
    \tempo Joyfully 4.= 112
    \clef "treble"
    \set Staff.instrumentName = \markup { "Violin" }

       
      
      
      < a e'>4->( < a' e'>8)  <a, e'>4->\(< a' e'>8\)  < a, e'>4->( < a' e'>8) 
<a, e'>4->\(< a' e'>8\)|%m2 
    
      
      \bar "|."
      %fine yay!!! Soli deo glory
    

   
}



  \score {
        \context GrandStaff <<
            \context Staff = "one" <<
                \set Staff.instrumentName = \markup { "Violin" }
                \violin
                
            >>
        >>
    
        \layout{
        

      
        
        }
    
        \midi {
            \context {
                \Score
                tempoWholesPerMinute = #(ly:make-moment 80 2)
            }
        }
    }

   






reply via email to

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