The attached .ly file generate two pdf files.  
1. test_utf-8_filename.pdf 
2. test_uft-8_filename-SA_TB.pdf

I was anticipating that the 2nd pdf file name to be 
"test_utf-8_filename-SA+TB.pdf"  Instead it generates 
"test_utf-8_filename-SA_TB.pdf". 

Is it that lilypond cannot generate utf-8 character in the file name?
Any work around?
Emmanuel,
Ming 
\version "2.19.3"
\language "english"

\header {
  title = "test"
  % Remove default LilyPond tagline
  tagline = ##f
}

\paper {
  #(set-paper-size "letter")
}

global = {
  \key c \major
  \time 4/4
  \tempo 4=100
}

soprano =  {
  \global
   c''2 b'2 
}

alto =  {
  \global
  a'2. b'4
}

tenor =  {
  \global
  c4 d4 e4 f4
}

bass =  {
  \global
  a,4 c4 a,4 c4
}

 

\score {
  \new ChoirStaff <<
    \new Staff \with {    } \new Voice = "soprano" \soprano
    
    \new Staff \with {    } \new Voice = "alto" \alto
     
      
    \new Staff \with {    } 
    {
      \clef bass
      \new Voice = "tenor" \tenor
    }
     
    \new Staff \with {     } 
    {
      \clef bass
      \new Voice = "bass" \bass
    }
  >>
  \layout { }
  \midi { }
}

\book {
  \bookOutputSuffix "SA+TB"
  \score {
  \new ChoirStaff <<   
  \new Staff \with {  
    
  } << 
    \new Voice = "soprano"    { \voiceOne \soprano }
    \new Voice = "alto" { \voiceTwo   \alto }
  >>
   
  \new Staff \with {
     
  } <<  
    \clef bass
    \new Voice = "tenor"   { \voiceOne    \tenor }
    \new Voice = "bass" { \voiceTwo \bass }
  >>
>>
\layout { }
  }
}




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

Reply via email to