Below is the display in my environment(settings). The display app depends on each individual.


play-enjoy [with notepad.exe(text-editor)] On wsl linux ! (and windows OS OK! and pdftex-running-ok too!!)



As shown on the right, for example,
create files called "test-add.ly" and "test.tex" using notepad.exe.
In the location where these two files are located,

1) $ lilypond --pdf test-add.ly[Enter]
2) $ luatex test.tex[Enter]
3) $ xdg-open test.pdf[Enter]
The video above shows this.

----------------------------------------------------------------------------
(Windows OS ===>3) >test.pdf[Enter] and
pdftex ===> 2) $ or >pdftex test.tex[Enter]
             [picture of music]

[picture of music]




test-add.ly
\version "2.24.0"
#(set-global-staff-size 16)
\paper { paper-height = 35.00\mm }
soprano = { \autoBeamOff
%% 1-4(1-12)
  \repeat volta 2 {   \repeat volta 2 {
  r8 gis'8[ ais'] b'4. cis''8 disis''!2~ disis''8 | ais'4 dis''2 gis'2. | }
  fis'4 e' dis'4. fis'8 e'2 | ais'4 dis''2 gis'2. | } \bar "|."
          }
%% get sheet
\score {
     \context Voice = "Sopone" {
                \clef soprano \key b\major \time 3/2 \tempo 4 = 58
     \set Staff.instrumentName = \markup{"soprano"} \soprano }
       \layout {}
   }
             test.tex
\hoffset = -1.1in
\hsize = 8.5in
\hfuzz = 30pt
\nopagenumbers
\input colordvi.tex
\input graphicx.tex

\input tikz.tex
\usepgflibrary{shadings}
\tikzpicture
\shade [shading=color wheel white center] (0,0) circle [radius=10cm];
\draw (0,3) node[scale=2]{\bf LilyPond};
\node at (1.5,1.5){\includegraphics[scale=1]{test-add.pdf}};
\endtikzpicture

\bye