我想要将两个 LilyPond 音乐示例并排放置在 LaTeX 文档中,并附带标题。我该如何实现?
这是我正在使用的代码:
\usepackage{float}
...
\begin{document}
...
\begin{minipage}
\begin{example}
\centering
\begin{lilypond}[staffsize=12]
Musical Example 1 comes here
\end{lilypond}
\caption{Caption 1}
\label{ex1}
\end{minipage}
\begin{minipage}
\begin{example}
\centering
\begin{lilypond}[staffsize=12]
Musical Example 2 comes here
\end{lilypond}
\caption{Caption 2}
\label{ex2}
\end{minipage}
\end{document}
顺便说一句,带有 LilyPond-Book 实现的 TeXShop 真是救星!
答案1
(抱歉在这里发布这个答案和在特克斯,但我想说得更彻底一些。请不要点赞。)
你的 MWE 缺少一些信息,但这对我来说似乎很好:
\documentclass{article}
\begin{document}
\begin{figure}
\centering
\begin{minipage}{.5\textwidth}
\centering
\begin{lilypond}[fragment]
c4
\end{lilypond}
\end{minipage}%
\begin{minipage}{.5\textwidth}
\centering
\begin{lilypond}[fragment]
c4
\end{lilypond}
\end{minipage}
\end{figure}
\end{document}
(使用lilypond-book --output=out --pdf file.lytex
、cd out
和进行编译pdflatex file.tex
。)