Next: , Previous: , Up: ("dirTop")  

Top

Firenze-4

[file-code; "ly,texi,sh are UTF-8"]
Normally; Windows & Linux "[Prompt] lilypond --png --pdf name.ly[Enter]"
And---- Only; Linux(Prompt) $ ./run--lily.sh name[Enter](need makeinfo) ----

      firenze-4.midi(//The one below is mp3//)         firenze-4.pdf          • All files (firenze-4.tar.gz;<2,960bytes)


Next: , Previous: , Up: Top  

Music Sheet

[picture of music]




Next: , Previous: , Up: Top  

firenze-4.ly

%%  3:28 AM Tuesday, April 18, 2023
%% Yukio Yoshida
\version "2.24.1"
#(set-default-paper-size "letter")
#(set-global-staff-size 14)

\header {
  dedication = \markup { \column { " " " " "Wordless Poem" " " } }
  title = "A lane of Firenze"
  subtitle = \markup \center-column {
                   "soprano; C clef on 1th line,   alto; C clef on 3th line."
                   \italic " Please, Piano is free " }
  composer = \markup { \italic "yukio yoshida" }
  arranger = \markup{\tiny "No.24(Oct. 19, 2007)"}
copyright = "public Domain"
%% tagline = " "
}

soprano = {
%1--4
      \autoBeamOff
      e'2 fis'4. gis'4 a'8[ b'] a'8~ | a'4. gis'2 fis'8[ e'] d'4~ d'16. r32 |
      e'2 fis'4. gis'4 a'8[ b'] cis''8~ | cis''4. a'2 b'8[ gis'] e'4 r8 |
\break
%5--9
      e'2 fis'4. d'8[ cis'] e'4. | fis'8[ e' d'] b2..~ b8.. r32 |
      gis'8[ a'] r16 b'4.. cis''2. | b'8-. cis''-. d''2-. a'2. |
      e'8-. d'-. cis'2-. b2. |
\break
%10--14
      cis'8-. d'-. b'2. a'4 \stemUp gis'8-. \stemNeutral fis'-. | b2\( r4 b'2. |
      d''1. | cis''1.\) | r4 e'-. r4 d'-. r4 cis'-. |
\break
%15--19
      r4 b4-. r1 | cis''2\( d''2 cis'' | d''1. | cis''2\) r4 b' r a' |
      r gis'\( d''2 cis''2 |
\break
%20--24
       d''1.\) | b'8[ a' gis'] fis'2 e'8[ d'] cis'4. |
       gis'8[ d' cis'] fis'2 e'8[ d'] cis'4. | b2. cis'8[ e'] a'2~ |
       a'1.^\fermata \bar "|."
}

alto = {
%1--4
       \autoBeamOff
       e'2 d'8[ cis' b] e'2~ e'8 | a'2 gis'8[ fis' e'] fis'2~ fis'8 |
       e'8[ cis' b] r8 fis'8[ e' d'] r8 b2 | a8[ b cis'] d'2 fis8[ a b] e'4~ |
\break
%5--9
       e'2 d'8[ e' fis'] gis'2~ gis'8 | e'8[ d' cis'] fis'4. gis'2. |
       fis'8[ d' b] a8 gis2. fis8[ gis] | fis'8[ d'] cis'2 a2. |
       b2 d'8[ e'] fis'2. |
\break
%10--14
       gis'8[ fis'] b2. cis'8[ d' e' fis'~] |
       fis'2 e'16[ d' cis' b] cis'4 b8[ cis'] b4 |
       d'16[ cis' b a] b4 e'16[ d' cis' b] a4 b2 | a1. |
       gis'4 r fis' r gis' r |
\break
%15--19
       fis'4 r a16[ b cis' d'] b16[ cis' d' e'] fis'2 |
       r1 gis'16[ fis' e' d' cis' b a8] | r2 a1_\( | r4 fis1^~ fis4 | gis1. |
\break
%20-24
       fis1\) r4 gis8[ b] | e'2 d'8[ cis' b] e'4 cis'8[ e' fis'] |
       cis'8[ d' e'] cis'2 e'8[ fis'] gis'4.~ |
       gis'8[ fis'] gis'2 fis'8[ e' d' cis'] a4~ | a1. \bar "|."
}


pianoUP = {
%1-
       << { s1. * 24 } \\ {s1. * 24 } >>

}

pianoDown = {
%1-
       << { s1. * 24 } \\ {s1. * 24 } >>

}

%% get sheet music --------------------------------------------------------
\score {
         <<
           \context ChoirStaff = "FourPartStaffaddchorus" <<
           \new Voice = "soprano" { \clef soprano \key a\major \time 3/2
                        \set Staff.midiInstrument = "pad 4 (choir)"
                        \set Staff.instrumentName = "soprano" \soprano }

           \new Voice = "alto" { \clef alto \key a\major \time 3/2
                        \set Staff.midiInstrument = "pad 4 (choir)"
                        \set Staff.instrumentName = "alto   " \alto }
                                            >>

         \context PianoStaff
             %% \with { \override VerticalAlignment.forced-distance = #6 }
                  <<
         \context Staff = "upper" \new Voice { \clef treble \key a\major \time 3/2
            \set Staff.fontSize = #-3
                   \override Staff.StaffSymbol.staff-space = #(magstep -3)
                   \override Staff.StaffSymbol.thickness =#(magstep -3)
             \set Staff.instrumentName = \markup {\column{" " " " "piano  "}}
             \set Staff.midiInstrument = "acoustic grand"       \pianoUP }

         \context Staff = "lower" \new Voice { \clef bass \key a\major \time 3/2
             \set Staff.fontSize = #-3
                   \override Staff.StaffSymbol.staff-space = #(magstep -3)
                   \override Staff.StaffSymbol.thickness =#(magstep -3)
             \set Staff.midiInstrument = "acoustic grand"       \pianoDown }
                    >>
         >>
  \layout { }
  \midi { tempoWholesPerMinute = #(ly:make-moment 68 4) }
}

Next: , Previous: , Up: Top  

firenze-4.texi

%% 1:34 PM Thursday, January 18, 2024
%% Yukio Yoshida
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\input colordvi.tex
\input texinfo

@c %**start of header
@setfilename firenze-4.info
@c @settitle firenze-4
@documentlanguage en
@documentencoding utf-8
@setchapternewpage odd
@c %**end of header

@c *********** Body start ******************
@node       Top,         Music Sheet,    ("dir"),    ("dirTop")
@comment  node-name,        next,        previous,       up
@c @node Top
@ifhtml
@html
<p align = "center">
<span  style="font-size: 40px;"><b>Firenze-4</b></spam>
</p>
<code>
[file-code; "ly,texi,sh are UTF-8"]<br />
<span style="font-size: 16px;">
<b>Normally; Windows & Linux "[Prompt] <kbd> lilypond --png --pdf name.ly</kbd>[Enter]"</b><br />
<b>And---- Only; 
 <i>Linux(Prompt)<kbd> <span style="color: red;">$ ./run--lily.sh name</span></kbd>[Enter]</i>(need makeinfo) ----</b><br />
</span>
</code>
<br />
@end html
@end ifhtml
@c @top
@c @ignore ------------------------------------------------------------------------
@ifhtml
@menu
* firenze-4::                 --- Music Sheet:                    Music Sheet.
* firenze-4.ly::             --- Source code framework:  firenze-4.ly.
* firenze-4.texi::          --- Source code document:    firenze-4.texi.
* run--makeinfo::   --- Source code run-file:        run--makeinfo.
@end menu
@end ifhtml
@c @ignore ------------------------------------------------------------------------
@html
<p align = "center">
&#160;&#160;&#160;&#160;&#160;
<a href="earth.mid">firenze-4.midi</a>(//The one below is mp3//)&#160;&#160;&#160;
&#160;&#160;&#160;&#160;&#160;<a href="firenze-4.pdf">firenze-4.pdf</a>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;
&#149;&#160;<a href="firenze-4.tar.gz">All files</a>&#160;(firenze-4.tar.gz;&lt;2,960bytes)<br />
<audio src="firenze-4.mp3" controls>
Download <a href="earth.mp3">episode 42 Learnung to love HTML5</a>
</audio></p>
@end html

@ifnottex
@node        Music Sheet,   firenze-4.ly,       Top,      Top
@comment      node-name,     next,          previous,    up
@c @top
@end ifnottex
@unnumbered Music Sheet
@ifhtml
@html
<p align = "center">
<a href="firenze-4.pdf">
<img src="firenze-4.svg" alt="[picture of music]" /><!--  -->
<hr style="width:68%; height:4px;" />
</a></p>
<br />
@end html
@end ifhtml
@html
</div>
@end html

@ifnottex
@node          firenze-4.ly,       firenze-4.texi,  Music Sheet,  Top
@comment    node-name,     next,         previous,        up
@end ifnottex
@unnumbered firenze-4.ly
@html
<blockquote><blockquote>
@end html
@verbatiminclude firenze-4.ly
@html
</blockquote></blockquote>
@end html

@ifnottex
@node     firenze-4.texi,   run--makeinfo,      firenze-4.ly, Top
@comment   node-name,         next,          previous,    up
@end ifnottex
@unnumbered firenze-4.texi
@html
<blockquote><blockquote>
@end html
@verbatiminclude firenze-4.texi
@html
</blockquote></blockquote>
@end html

@ifnottex
@node     run--makeinfo,           ,  firenze-4.texi,   Top
@comment      node-name,    next,       previous,       up
@end ifnottex
@unnumbered run--makeinfo
@html
<blockquote><blockquote>
<b><i>Only; running is on Linux(on WSL).</i></b><br />
@end html
@ifhtml
@html
<span style="font: 16px;">
<table>
<td>
&#160;&#160;&#160;<b><i>run--lily.sh</i></b><br />
<span style="color: red;">
@verbatiminclude run--lily.sh
</span>
</td>
</table>
@end html
@end ifhtml
@ @ @ @ This is under the following environment.@*
@ @ @ @ Linux[on WSL(windows11)]@  ---(GNU/Linux 4.4.0-19041-Microsoft x86_64) or 
(GNU/Linux 5.10.16.3-microsoft-standard-WSL2 x86_64)---@*
@html
</blockquote></blockquote>
<br />
<br />
@end html
@c *********** End Body *********************
@bye



%%  3:28 AM Tuesday, April 18, 2023
%% Yukio Yoshida
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\input colordvi.tex
\input texinfo   @c -*-texinfo-*-
@c %**start of header
@setfilename firenze-4.info
@settitle firenze-4
@documentlanguage en
@documentencoding utf-8
@setchapternewpage odd
@c %**end of header

@c *********** Body start ******************

@node       Top,         Music Sheet,    ("dir"),    ("dirTop")
@comment  node-name,        next,        previous,       up

@html
<code>
[file-code; "ly,texi,sh are UTF-8"]<br />
<b>Normally; Windows & Linux(Prompt)<kbd> lilypond --png --pdf name.ly</kbd>[Enter]</b><br />
<b>Also; <kbd> lilypond --svg name.ly</kbd>[Enter]</b><br />
---- <i>Script-run; Linux(Prompt)<kbd> <span style="color: red;">./run--lily.sh name</span></kbd>[Enter]</i> ----<br />
</code>
<br />
@end html

@menu
* firenze-4 --- Music Sheet:              Music Sheet.
* firenze-4.ly --- Source code framework:  firenze-4.ly.
* firenze-4.texi --- Source code document: firenze-4.texi.
* run--makeinfo --- Source code run-file:  run--makeinfo.
@end menu

@html
&#149;&#160;<a href="firenze-4.tar.gz">firenze-4.tar.gz</a>&#160;(All-files;&lt; 2,960bytes)<br />
<br />
<br />
@end html

@ifnottex
@node        Music Sheet,   firenze-4.ly,       Top,      Top
@comment      node-name,     next,          previous,    up
@c @top
@end ifnottex

@unnumbered Music Sheet

@html
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;
<a href="firenze-4.midi">firenze-4.midi</a>&#160;&#160;
<a href="firenze-4.pdf">firenze-4.pdf</a>&#160;&#160;
<p align = "center">
<a href="firenze-4.mp3">Sound is mp3.</a><br />
<audio src="firenze-4.mp3" controls>
Download <a href="firenze-4.mp3">episode 42 Learnung to love HTML5</a>
</audio><br />
<div align="center">
<a href="firenze-4.pdf">
@end html
@ifhtml
@html
<img src="firenze-4.svg" alt="[picture of music]" /><!--  -->
<hr style="width:68%; height:4px;" />
</a>
<br />
@end html
@end ifhtml
@html
</div>
@end html

@ifnottex
@node          firenze-4.ly,       firenze-4.texi,  Music Sheet,  Top
@comment    node-name,     next,         previous,        up
@end ifnottex

@unnumbered firenze-4

@html
<blockquote><blockquote>
<b><i>firenze-4.ly</i></b>
@end html

@verbatiminclude firenze-4.ly

@html
</blockquote></blockquote>
@end html

@ifnottex
@node     firenze-4.texi,   run--makeinfo,      firenze-4.ly, Top
@comment   node-name,         next,          previous,    up
@end ifnottex

@unnumbered Texinfo

@html
<blockquote><blockquote>
<b><i>firenze-4.texi</i></b>
@end html

@verbatiminclude firenze-4.texi

@html
</blockquote></blockquote>
@end html


@ifnottex
@node     run--makeinfo,           ,  firenze-4.texi,   Top
@comment      node-name,    next,       previous,       up
@end ifnottex

@unnumbered run--makeinfo

@html
<blockquote><blockquote>
<b><i>Only; running is on Linux(on WSL).</i></b><br />
@end html

@ifhtml
@html
<span style="font: 16px;">
<table>
<td>
&#160;&#160;&#160;<b><i>run--lily.sh</i></b><br />
<span style="color: red;">
@verbatiminclude run--lily.sh
</span>
</td>
</table>
@end html
@end ifhtml
@ @ @ @ This is under the following environment.@*
@ @ @ @ Linux[on WSL(windows11)]@  ---(GNU/Linux 4.4.0-19041-Microsoft x86_64) or 
(GNU/Linux 5.10.16.3-microsoft-standard-WSL2 x86_64)---@*
@html
</blockquote></blockquote>
<br />
<br />
@end html
@c *********** End Body *********************
@bye

Previous: , Up: Top  

run–makeinfo

Only; running is on Linux(on WSL).
   run--lily.sh
#!/usr/bin/bash
# rm -r html
lilypond --pdf --png $1.ly
lilypond --svg $1.ly
makeinfo --no-split --force --html $1.texi
mkdir html
mv *.svg html/
mv *.pdf html/
mv *.midi html/
mv *.html html/
cd html
xdg-open $1.pdf | xdg-open $1.midi | explorer.exe $1.html
cd ../
rm *.eps *.png
ls -lX

    This is under the following environment.
    Linux[on WSL(windows11)]  —(GNU/Linux 4.4.0-19041-Microsoft x86_64) or (GNU/Linux 5.10.16.3-microsoft-standard-WSL2 x86_64)—