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

Top

Let me die

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

let-me-die.midi(//The one below is mp3//)           let-me-die.pdf          • let-me-die.tar.gz (All-files;<6,100bytes)

The Jacket of a sheet is "png" and Sheets are "svg"


Next: , Previous: , Up: Top  

Music Sheet

let-me-die-page1

[picture of music]
[picture of music]
[picture of music]
[picture of music]

Next: , Previous: , Up: Top  

let-me-die.ly

%% 12:00 AM Friday, July 14, 2023
%% Yukio Yoshida.
%%%Get;eps-file%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% gswin64c -sDEVICE=eps2write -sOutputFile=neame.eps -dNOPAUSE neame.ps -c quit
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% -*- Coding: utf-8 -*-
\version "2.24.0"
\include "let-me-die-cv.ly"
\book{
\bookpart{ %% #1
\markup{ \vspace #4 }
%% make sheet-my-epstitle
#(let* ((port (open-output-file "sheet-my-epstitle.eps")))
  (display "%!PS-Adobe-3.0 EPSF-3.0
%%BoundingBox: 10 10 580 810
%%HiResBoundingBox: 10.00 10.00 580.00 810.00
%%Creator: GPL Ghostscript 9533 (eps2write)
%%LanguageLevel: 2
%%CreationDate: D:20210211103439+09'00'
%%Pages: 1
%%EndComments
newpath
20 20 moveto 20 800 lineto 20 800 moveto 570 800 lineto
570 800 moveto 570 20 lineto 570 20 moveto 20 20 lineto
.22 0 0 setrgbcolor 20 setlinewidth stroke
%% in-line
newpath
50 50 moveto 50 760 lineto 50 760 moveto 540 760 lineto
540 760 moveto 540 50 lineto 540 50 moveto 50 50 lineto
0 0 0 setrgbcolor 3 setlinewidth stroke
/Times-Italic findfont 110 scalefont setfont 126 110 moveto
0 1 0 setrgbcolor
(Letters) false charpath 3 setlinewidth stroke
%% Title-Word
/Times-Italic findfont 100 scalefont setfont 98 500 moveto 1 0 0 setrgbcolor
(Let me die) false charpath 3 setlinewidth stroke" port)

   (close port))
%Trailer
\markup{ \hspace #6 {\epsfile #X #98 #"sheet-my-epstitle.eps" } }
\markup { \vspace #3 }
\pageBreak
\markup { \vspace #8 }
\markup { \line { \hspace #10 \bold \italic "Let me die"} }
\markup { \vspace #2 }
\markup { From(Refer); \smallCaps{Monteverdi Edition} No.6 }
\markup { " " }
\markup {
 \fill-line {
  \column {%% empty column
          \line { \column {
}}}
  \column {
          \line { \tiny
           \column {%% Italian(Venezia)
\line { \italic \bold "Lasciatemi morire;" }
\line { \vspace #.2 }
\line { \italic "e che volete voi che mi conforte" }
\line { \italic "in così dura sorte" }
\line { \italic "in così gran martire?" }
}}}
\hspace #6
   \column {
           \line { \tiny
            \column {%% English(American)
\line { \italic \bold "Let me die;" }
\line { \vspace #.2 }
\line { \italic "Who would you have console me" }
\line { \italic "in this cruel fate" }
\line { \italic "in this great martyrdom?" }
}}}
\hspace #6
   \column {
           \line { \tiny
            \column {%% Japanese
\line { \override #'(font-name . "gothic") "この身を横たわらせて下さい;" }
\line { \vspace #.2 }
\line { "私へ慈悲をお持になれる方なら(主よ)" }
\line { "この過酷なる宿命が身を" }
\line { "この絶えまない苦痛が身を?" }
}}}
  \column {%% empty column
          \line { \column {
}}}
        }}%% end \file-line, and \markup
}%%End \bookpart #1
\pageBreak
\bookpart{ %%#2
\version "2.24.0"
#(set-default-paper-size "letter")
#(set-global-staff-size 17)
\header {
 dedication = \markup { From; \smallCaps{Sesto Libro dei Madrigali} }
 title = "Let me die(Lasciatemi morire)"
 %%subtitle = #(string-append "LilyPond version " (lilypond-version))
 %%subtitle = \markup { Refer; \smallCaps{Monteverdi Edittion No.6} }
 subtitle = \markup { key bes major \italic "and" d major}
 subsubtitle = \markup{\center-column {
                   "soprano; C clef on 1st line,       alto; C clef on 3rd line."
                   "       bass; F clef on 4th line,    tenor; C clef on 4th line."}}
 composer = \markup{ \line {\italic "Yukio Yoshida"}}
 arranger = \markup { \column { "Jul. 08, 2011" "Op.62" } }
 poet = "Lasciatemi morire"
 %%opus = " "
 meter = \markup { \italic "Prayer and Animato" }
 copyright = "public Domain"
%%  tagline = "  "
}
%% get sheet music ---------------------------------------------------------------
\score {
         <<
%%           \context ChoirStaff = "ForePartStaffchorus" <<
        \context StaffGroup << 
           \new Voice = "soprano" { \clef soprano \key bes\major \time 3/2
                        \set Staff.instrumentName = "soprano" \soprano }
                        \new Lyrics = "mainSL" \lyricsto "soprano" { \sopranoL }

           \new Voice = "alto" { \clef alto \key bes\major \time 3/2
                        \set Staff.instrumentName = "alto   " \alto }
                        \new Lyrics = "mainAL" \lyricsto "alto" { \altoL }

           \new Voice = "tenor" { \clef tenor \key d\major \time 3/2
                        \set Staff.instrumentName = "tenor  " \tenor }
                        \new Lyrics = "mainTL" \lyricsto "tenor" { \tenorL }

           \new Voice = "bass" { \clef bass \key d\major \time 3/2
                        \set Staff.instrumentName = "bass   " \bass }
                        \new Lyrics = "mainBL" \lyricsto "bass" { \bassL }
                                            >>

           %%\context PianoStaff = "PianoStaff" <<
           %%\new Voice = "piano" { \clef treble \key \major \time
           %%             \set Staff.instrumentName = "piano  " \pianoUP }
           %%\new Voice = "piano" { \clef bass \key \major \time
           %%             \set Staff.instrumentName = "piano  " \pianoDown }
           %%                                   >>

         >>

  \layout { }
}
%% get midi music ----------------------------------------------------------------
\score {
         <<
           \new Staff { \clef soprano \key bes\major \time 3/2 \tempo 4 = 46
                         \set Staff.midiInstrument = "pad 2 (warm)"
                                         \unfoldRepeats       \sopranoM }

           \new Staff { \clef alto \key bes\major \time 3/2 \tempo 4 = 46
                         \set Staff.midiInstrument = "pad 2 (warm)"
                                         \unfoldRepeats          \altoM }

           \new Staff { \clef tenor \key d\major \time 3/2 \tempo 4 = 46
                         \set Staff.midiInstrument = "pad 2 (warm)"
                                         \unfoldRepeats       \tenorM }

           \new Staff { \clef bass \key d\major \time 3/2 \tempo 4 = 46
                        \set Staff.midiInstrument = "pad 2 (warm)"
                                         \unfoldRepeats          \bassM }

           %%\new Staff { \clef treble \key \major \time \tempo 4 =
           %%             \set Staff.midiInstrument = "acoustic grand"
           %%                                \unfoldRepeats       \pianoUPm }
           %%\new Staff { \clef bass \key \major \time \tempo 4 =
           %%             \set Staff.instrumentName = "acoustic grand"
           %%                                \unfoldRepeats     \pianoDownm }
         >>

   \midi { tempoWholesPerMinute = #(ly:make-moment 46 4) }
}
%%
\markup { \column { \line {
About location \hspace #3 \musicglyph #"noteheads.uM2"(longa) \hspace #2 and \hspace #3 \musicglyph #"noteheads.sM1"(breve) }
\line { \italic " Please, playing of \"longa and breve\" do in the members alternating(But, like Don't stand out). " } } }
\markup { About \italic "\"me\""\hspace #2 normally;[mi]\hspace #2 \bold "strong;"[mi:] }
\markup { \vspace #4 }
\markup { " " }
}%% End \bookpart #2
}%% close \book {
%% ----- To here, Finish all. -----------------

Next: , Previous: , Up: Top  

let-me-die-cv.ly

\version "2.24.0"
%%%%%%%%% soprano part %%%%%%%%%%%%%%%%%%%%%
soprano = { \hide Staff.BarLine
   \autoBeamOff \slurDown \phrasingSlurDown \tieDown
%% 1-4
   f'1.\melisma | f'\melismaEnd | f'\melisma | f'\melismaEnd | \break
%% 5-8
   f'\melisma | f'2\melismaEnd d''1\(^\markup {
                            \tiny Soprno; \teeny \italic "sostenuto & Spiritoso" } |
   r4 d''1 r4 | d''1.\) | \break
%% 9-8
   r2 f'1\melisma | f'2\melismaEnd f'2.( g'4) | f'1( g'2) | r4 g'2 a'2. | \break
%% 13-16
   r4 a'4 bes'1 | bes'2(^\fermata a'1)^\fermata | g'4. f'8 ees'2 d' | c'1.| \break
%% 17-20
   c'2. d'4 ees'2 ~ | ees' bes' a'4 g'4( ~ |g' f') r8 f'4. f'2 |
   f' ees'1^\fermata | \break
%% 21-24
   d'8 r8 ees'2. f'2\( | ees'2\) r4 d'2.\( | d'2. c'2. ~ |
   c'2.\)^\fermata r2.^\fermata | \break
%% 25-28
   f'2 ees'4 r2. | f'4 ees'2.^\fermata r2 | f'2 ees'4 d'2.( | c'1) r2 | \break
%%29-31
   d'1. |
   \time 4/1 ees'\breve^\markup { \tiny \italic " Only; instruments " }\( d'\breve |
   c'\longa\) \undo \hide Staff.BarLine \bar "|." \break
}

sopranoL = \lyricmode {
    \override Score.LyricText.font-shape = #'italic
    \tiny
ó -- ó -- ó --
" Let" me die;
ó --
Who, who, would you have console me
in this cru -- el fate,
Let me die; who would you have con -- sole me
in this gre -- at mar -- tyr -- dom?
Let me, let me, let me die,
who?
}

sopranoM = {
    \autoBeamOff
%% 1-4
   f'1.\melisma | f'\melismaEnd | f'\melisma | f'\melismaEnd | \break
%% 5-8
   f'\melisma | f'2\melismaEnd d''1\( | r4 d''1 r4 | d''1.\) | \break
%% 9-12
    r2 f'1\melisma | f'2\melismaEnd f'2.( g'4) | f'1( g'2) | r4 g'2 a'2. | \break
%% 13-16
   r4 a'4 bes'1 | bes'2(^\fermata a'1)^\fermata | g'4. f'8 ees'2 d' | c'1.| \break
%% 17-20
   c'2. d'4 ees'2 ~ | ees' bes' a'4 g'4( ~ |g' f') r8 f'4. f'2 |
   f' ees'1^\fermata | \break
%% 21-24
   d'8 r8 ees'2. f'2\( | ees'2\) r4 d'2.\( | d'2. c'2. ~ |
   c'2.\)^\fermata r2.^\fermata | \break
%% 25-28
   f'2 ees'4 r2. | f'4 ees'2.^\fermata r2 | f'2 ees'4 d'2.( | c'1) r2 | \break
%% 29-31
   d'1. | \time 4/1 ees'\breve\( d'\breve | c'\longa\) \bar "|." \break
}

%%%%%%%%%% alto part %%%%%%%%%%%%%%%%%%%%%%
alto = { \hide Staff.BarLine
   \autoBeamOff \slurDown \phrasingSlurDown \tieDown
%% 1-4
   r4 ees'2 d'4.^\fermata r8 c'4 ~ | c'2. r2 d'4( ~ |
   d' c') c'4.^\fermata r8 bes2 ~ | bes ees'2 d'4.^\fermata r8 | \break
%% 5-8
   r4 bes2( a2.) | a1.\melisma | a\melismaEnd | a\melisma | \break
%% 9-12
   a\melismaEnd | a2( bes) a_( | bes) r4  a2. | bes1. | \break
%% 13-16
   bes4. r8 c'1 | c'2(^\fermata bes1)^\fermata | bes2 a8 a4. g2 | f1. | \break
%% 17-20
   f4. g2.^\fermata r8 a4 ~ | a2. bes4. c' | bes2.. r8 a2 | a g1^\fermata | \break
%% 21-24
   g2. r8 f8 g2\( | a2\) r8 g2..\( | a2( g8 f8) f2. ~ |
   f2.\)^\fermata r2.^\fermata | \break
%% 25-28
   r4 ees'4 d'2..^\fermata r8 | r4 ees'2. d'4 r4 | ees'4 d'2..^\fermata c'4.( |
   c'1) r2 | \break
%% 29-31
   d'1. |
   \time 4/1 ees'\breve^\markup { \tiny \italic " Only; instruments " }\( d'\breve |
   c'\longa\) \undo \hide Staff.BarLine \bar "|." \break
}

altoL = \lyricmode {
    \override Score.LyricText.font-shape = #'italic
    \tiny
Let me die;
  Let me die; Let me die;
ó -- ó --
Who, who, would you have console me
in this cru -- el fate,
Let me die; who would you have console me
in this gre -- at mar -- tyr -- dom?
Let me, let me, let me die,
who?
}

altoM = {
     \autoBeamOff
%% 1-4
   r4 ees'2 d'4.^\fermata r8 c'4 ~ | c'2. r2 d'4( ~ |
   d' c') c'4.^\fermata r8 bes2 ~ | bes ees'2 d'4.^\fermata r8 | \break
%% 5-8
   r4 bes2( a2.) | a1.\melisma | a\melismaEnd | a\melisma | \break
%% 9-12
   a\melismaEnd | a2( bes) a( | bes) r4 a2. | bes1. | \break
%% 13-16
   bes4. r8 c'1 | c'2(^\fermata bes1)^\fermata | bes2 a8 a4. g2 | f1. | \break
%% 17-20
   f4. g2.^\fermata r8 a4 ~ | a2. bes4. c' | bes2.. r8 a2 | a g1^\fermata | \break
%% 21-24
   g2. r8 f8 g2\( | a2\) r8 g2..\( | a2( g8 f8) f2. ~ |
   f2.\)^\fermata r2.^\fermata | \break
%% 25-28
   r4 ees'4 d'2..^\fermata r8 | r4 ees'2. d'4 r4 | ees'4 d'2..^\fermata c'4.( |
   c'1) r2 | \break
%% 29-31
   d'1. | \time 4/1 ees'\breve\( d'\breve | c'\longa\) \bar "|." \break
}

%%%%%%%% tenor part %%%%%%%%%%%%%%%%%%%%%%%
tenor = { \hide Staff.BarLine
   \autoBeamOff \slurDown \phrasingSlurDown \tieDown
%% 1-4
   r2 cis'2 b4.\fermata r8 | a2( g) r2 | r8 b2 a4 g2( fis8 ~ |
   fis4.) r2 cis'2 b8 ~ | \break
%% 5-8
   b8 g2( fis2..) | fis1.\melisma | fis\melismaEnd | fis\melisma | \break
%% 9-12
   fis\melismaEnd | fis2( g) fis( | g) r4 fis2. | g1. | \break
%% 13-16
   g4 a2 b2. | b2(^\fermata a1)^\fermata | a8. b8. r8 cis'1 | d'1. | \break
%% 17-20
   d'4 cis'2..\fermata r8 b4 ~ | b2. r2 a4 ~ | a4. g8 fis4\( e2.\) |
   d2 r1 | \break
%% 21-24
   d4 e2. r8 fis4.\( | fis2\) r2 g2\( | g2( e4) cis2.( |
   d2.)\)^\fermata r2.^\fermata | \break
%% 25-28
   r2. fis2 e4 | r2 fis4 e2.^\fermata | r2.. fis4. e4 | d1 r2 | \break
%% 29
   e1. |
   \time 4/1 fis\breve^\markup { \tiny \italic " Only; instruments " }\( e\breve |
   d\longa\) \undo \hide Staff.BarLine \bar "|." \break
}

tenorL = \lyricmode {
    \override Score.LyricText.font-shape = #'italic
    \tiny
Let me die;
  Let me die; Let me die;
ú -- ú --
Who, who, would you have con -- sole me
in this cruel fate,
Let me die; in this cru -- el fate,
in this gre -- at mar -- tyr -- dom?
Let me, let me, let me die,
who?
}

tenorM = {
     \autoBeamOff
%% 1-4
   r2 cis'2 b4.\fermata r8 | a2( g) r2 | r8 b2 a4 g2( fis8 ~ |
   fis4.) r2 cis'2 b8 ~ | \break
%% 5-8
    b8 g2( fis2..) | fis1.\melisma | fis\melismaEnd | fis\melisma | \break
%% 9-12
    fis\melismaEnd | fis2( g) fis2(  | g) r4 fis2. | g1. | \break
%% 13-16
    g4 a2 b2. | b2(^\fermata a1)^\fermata | a8. b8. r8 cis'1 | d'1. | \break
%% 17-20
    d'4 cis'2..^\fermata r8 b4 ~ | b2. r2 a4 ~ | a4. g8 fis4\( e2.\) |
    d2 r1 | \break
%% 21-24
   d4 e2. r8 fis4.\( | fis2\) r2 g2\( | g2( e4) cis2.( |
   d2.)\)^\fermata r2.^\fermata | \break
%% 25-28
   r2. fis2 e4 | r2 fis4 e2.^\fermata | r2.. fis4. e4 | d1 r2 | \break
%% 29
   e1. | \time 4/1 fis\breve\( e\breve | d\longa\) \bar "|." \break
}

%%%%%%% bass; part %%%%%%%%%%%%%%%%
bass = { \hide Staff.BarLine
   \autoBeamOff \slurDown \phrasingSlurDown \tieDown
%% 1-4
   fis2 e4.^\fermata r8 d2( | cis2) r2 e2 ~ | e4 d4 b,1 |
   r2 fis2. e4 | \break
%% 5-8
   cis2( b,2.) r4 | r4 b,1( cis4 ~ | cis) r4 b,1( | cis2) r4  b,2. ~ | \break
%% 9-12
   b,2. cis2.( | d2.) d2.\melisma | d1.\melismaEnd | cis4 d2 e2. | \break
%% 13-16
   cis4 d2 e2. | e2(^\fermata d1)^\fermata | r8 d8. e fis4 g2. | a1. | \break
%% 17-20
   a2 g4 r4 fis2 ~ | fis2 r4 e2. | d4 cis2 b,2. | b,2 r1 | \break
%% 21-24
   b,2 r4 cis4 r8 d4.\( | d2\) r2. e4\(( | fis) e( d cis) b,2( |
   cis2.)\)^\fermata r2.^\fermata | \break
%% 25-28
   r4. e4 d2..^\fermata | r4. e2.. d4 | r4. e4 d2..^\fermata |
   cis1 r2 | \break
%% 29-31
   d1. |
   \time 4/1 e\breve^\markup { \tiny \italic " Only; instruments " }\( d\breve |
   cis\longa\) \undo \hide Staff.BarLine \bar "|." \break
}

bassL = \lyricmode {
    \override Score.LyricText.font-shape = #'italic
    \tiny
Let me die;
  Let me die; Let me die;
Who, who, would you, ú --
                         have con -- sole,
                             have con -- sole,
me
in this cru -- el fate,
Let me die; in this cru -- el fate,
in this gre -- at mar -- tyr -- dom?
Let me, let me, let me die,
who?
}

bassM = {
   \autoBeamOff
%% 1-4
   fis2 e4.^\fermata r8 d2( | cis2) r2 e2 ~ | e4 d4 b,1 |
   r2 fis2. e4 | \break
%% 5-
   cis2( b,2.) r4 | r4 b,1( cis4 ~ | cis) r4 b,1( | cis2) r4  b,2. ~ | \break
%% 9-12
   b,2. cis2.( | d2.) d2.\melisma | d1.\melismaEnd | cis4 d2 e2. | \break
%% 13-16
   cis4 d2 e2. | e2(^\fermata d1)^\fermata | r8 d8. e fis4 g2. | a1. | \break
%% 17-20
   a2 g4 r4 fis2 ~ | fis2 r4 e2. | d4 cis2 b,2. | b,2 r1 | \break
%% 21-24
   b,2 r4 cis4 r8 d4.\( | d2\) r2. e4\(( | fis) e( d cis) b,2( |
   cis2.)\)^\fermata r2.^\fermata | \break
%% 25-28
   r4. e4 d2..^\fermata | r4. e2.. d4 | r4. e4 d2..^\fermata |
   cis1 r2 | \break
%% 29-31
   d1. | \time 4/1 e\breve\( d\breve | cis\longa\) \bar "|." \break
}

%%%%%%%%%% midi music code part %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

Next: , Previous: , Up: Top  

let-me-die.texi

%% 6:28 AM Thursday, January 25, 2024
%% Yukio Yoshida.
\input colordvi.tex
\input texinfo 
@c %**start of header
@setfilename let-me-die.info
@c @settitle Let me die
@documentlanguage en
@documentencoding utf-8
@setchapternewpage odd
@c %**end of header

@c *********** Body start ******************
@ifnottex
@node       Top,         Music Sheet,    ("dir"),    ("dirTop")
@comment  node-name,        next,        previous,       up
@end ifnottex
@c @node Top
@ifhtml
@html
<p align = "center">
<span  style="font-size: 40px;"><b>Let me die</b></spam>
</p>
<code>
[file-code; "ly,texi,sh are UTF-8"]<br />
<span style="font-size: 16px;">
<b>Normally; Windows & Linux</b> "[Prompt] <tt>lilypond --pdf --png name.ly</tt>[Enter]"<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
* Music Sheet::                      --- Music Sheet:                       Music Sheet.
* let-me-die.ly::                     --- Source code framework:     let-me-die.ly.
* let-me-die-cv.ly::                --- Source code notes:              let-me-die-cv.ly.
* let-me-die.texi::                  --- Source code document:       let-me-die.texi.
* run--makeinfo::                  --- Source code run-file:           run--makeinfo.
@end menu
@end ifhtml
@c @end ignore --------------------------------------------------------------------
@html
<p align = "center">
<a href="let-me-die.midi">let-me-die.midi</a>(//The one below is mp3//)&#160;&#160;&#160;&#160;&#160;
&#160;&#160;&#160;&#160;&#160;<a href="let-me-die.pdf">let-me-die.pdf</a>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;
&#149;&#160;<a href="let-me-die.tar.gz">let-me-die.tar.gz</a>&#160;(All-files;&lt;6,100bytes)<br />
<audio src="let-me-die.mp3" controls>
Download <a href="let-me-die.mp3">episode 42 Learnung to love HTML5</a>
</audio><br />
The Jacket of a sheet is "png" and Sheets are "svg"</p>
@end html

@ifnottex
@node            Music Sheet,      let-me-die.ly,             Top,        Top
@comment      node-name,        next,            previous,    up
@end ifnottex
@ifhtml
@unnumbered Music Sheet
@end ifhtml
@html
<div align="center">
<a href="let-me-die.pdf">
@end html
@ifhtml
@image{let-me-die-page1}@*
@html
<hr style="width:68%; height:4px;" />
<img src="let-me-die-2.svg" alt="[picture of music]" /><!--  -->
<hr style="width:68%; height:4px;" />
<img src="let-me-die-3.svg" alt="[picture of music]" /><!--  -->
<hr style="width:68%; height:4px;" />
<img src="let-me-die-4.svg" alt="[picture of music]" /><!--  -->
<hr style="width:68%; height:4px;" />
<img src="let-me-die-5.svg" alt="[picture of music]" /><!--  -->
<hr style="width:68%; height:4px;" />
@end html
@end ifhtml
@html
</a></div>
@end html

@ifnottex
@node                let-me-die.ly,                let-me-die-cv.ly,         Music Sheet,       Top
@comment         node-name,                        next,                        previous,            up
@end ifnottex
@ifhtml
@unnumbered let-me-die.ly
@end ifhtml
@html
<blockquote><blockquote>
@end html
@verbatiminclude let-me-die.ly
@html
</blockquote></blockquote>
@end html

@ifnottex
@node               let-me-die-cv.ly,                let-me-die.texi,                   let-me-die.ly,           Top
@comment          node-name,                          next,                                  previous,                up
@end ifnottex
@ifhtml
@unnumbered let-me-die-cv.ly
@end ifhtml
@html
<blockquote><blockquote>
@end html
@verbatiminclude let-me-die-cv.ly
@html
</blockquote></blockquote>
@end html

@ifnottex
@node                 let-me-die.texi,     run--makeinfo,        let-me-die-cv.ly,     Top
@comment            node-name,            next,                        previous,              up
@end ifnottex
@ifhtml
@unnumbered  let-me-die.texi
@end ifhtml
@html
<blockquote><blockquote>
@end html
@verbatiminclude let-me-die.texi
@html
</blockquote></blockquote>
@end html

@ifnottex
@node         run--makeinfo,                  ,            let-me-die.texi,             Top
@comment    node-name,            next,               previous,                        up
@end ifnottex
@ifhtml
@unnumbered run--makeinfo
@end ifhtml
@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 $1-page1.png 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)—