Lilypond对LaTeX

时间:2018-11-27 14:18:24

标签: latex pdflatex lilypond

有人可以使用ELI5吗?我尝试从

阅读指南

http://lilypond.org/doc/v2.18/Documentation/usage/an-example-of-a-musicological-document

但是它似乎不起作用。我在Windows 10上,并且已安装Lilypond 2.18.2。到目前为止,这就是我所做的一切。

这就是我尝试过的。

在文本编辑器中,我复制并粘贴了代码

\documentclass[a4paper]{article}

\begin{document}

Documents for \verb+lilypond-book+ may freely mix music and text.
For example,

\begin{lilypond}
\relative c' {
  c2 e2 \tuplet 3/2 { f8 a b } a2 e4
}
\end{lilypond}

Options are put in brackets.

\begin{lilypond}[fragment,quote,staffsize=26,verbatim]
  c'4 f16
\end{lilypond}

Larger examples can be put into a separate file, and introduced with
\verb+\lilypondfile+.

\end{document}

然后我将文件另存为lilybook.lytex

然后按开始,然后输入DOS。出现命令提示符,然后单击它。然后我在C:\Users\[name]>之后输入,以空格开头

lilypond-book --output=out --pdf lilybook.lytex

然后,它显示

'lilypond-book' is not recognized as an internal or external command, operable program or batch file.

音乐理论栈交换领域的人们说它不适用于Windows计算机。那么如何在Windows上执行此操作?请帮助,我很困惑。谢谢。

1 个答案:

答案 0 :(得分:0)

我相信您需要将lilypond-book添加到PATH变量中,就像您可能对lilypond可执行文件所做的一样。以下是LilyPond自己的网站上的一组说明:

  

Windows在命令行上

     

运行LilyPond的最方便方法是添加以下文件夹   将LilyPond可执行文件包含到环境变量中   “路径”。

     
      
  1. 在控制面板上打开“系统”,选择“高级”选项卡,然后单击“环境变量”按钮。
  2.   
  3. 从环境变量列表中选择变量“路径”,然后单击“编辑”按钮。将显示一个标题为“编辑”的窗口。   系统变量”;在“变量值”后面附加文件夹的名称   其中包含如下LilyPond可执行文件:

         

    [预设路径]; DIR \ LilyPond \ usr \ bin

  4.   
     
    

注意:DIR通常是64位的C:\ Program Files(x86)或32位系统的C:\ Program Files。

  
     

然后单击“确定”按钮以关闭窗口。

     

调用单个可执行文件

     

LilyPond可执行文件–例如lilypond,lilypond-book,   convert-ly等-可以通过调用从命令行运行   他们:

lilypond test.ly

发件人:http://lilypond.org/windows.html