Lilypond 到 LaTeX

Lilypond to LaTeX

有人可以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]> 之后输入,从 space、

开始
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 上执行此操作?请帮忙,我很困惑。谢谢你。

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

Windows on the command line

The most convenient way to run LilyPond is by adding the folder which contains LilyPond executable files to the environmental variable “Path”.

  1. Open your “System” on the Control Panel, select Advanced tab and click Environmental Variables button.
  2. Select the Variable “Path” from Environmental variables list and click the Edit button. You will be presented a window titled “Edit System Variable”; append to “Variable value” the name of the folder which contains LilyPond executable files like this:

    [pre-set paths];DIR\LilyPond\usr\bin

Note: DIR will generally be C:\Program Files (x86) for 64 bit or C:\Program Files for 32 bit systems.

并单击“确定”按钮关闭window。

调用单个可执行文件

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

lilypond test.ly

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