并排放置两个 Lilypond 示例

并排放置两个 Lilypond 示例

我需要帮助:我想将两个 Lilypond 音乐示例并排放置。我该怎么做?任何帮助都非常感谢。

这是我正在使用的代码:

\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.lytexcd out和进行编译pdflatex file.tex。)

在此处输入图片描述

答案2

使用该包可以轻松地并排排版两个 lilypond 示例并为它们添加标题(这对您来说似乎很重要)subfigure

\documentclass{article}
\usepackage{subfigure}
\begin{document}
\begin{figure}
    \centering
    \subfigure[First example.]{\begin{lilypond}[fragment]
        c4
    \end{lilypond}}
    \hspace{0.1\textwidth}
    \subfigure[Second example.]{\begin{lilypond}[fragment]
        c4
    \end{lilypond}}
    \caption{Here are two music examples.}
\end{figure}
\end{document}

在此处输入图片描述

如果您不想为这两个例子使用一个共同的标题,而是将它们作为单独的图形进行处理,那么您可以坚持使用 Richard 的解决方案,只需\caption在两个例子下方添加:

\documentclass{article}
\begin{document}
\begin{figure}
    \centering
    \begin{minipage}{.5\textwidth}
        \centering
        \begin{lilypond}[fragment]
            c4
        \end{lilypond}
        \caption{First example.}
    \end{minipage}%
    \begin{minipage}{.5\textwidth}
        \centering
        \begin{lilypond}[fragment]
            c4
        \end{lilypond}
        \caption{Second example.}
    \end{minipage}
\end{figure}
\end{document}

在此处输入图片描述

相关内容