I need help here: I am trying to place two Lilypond musical examples side-by-side. How can I achieve that? Any help is appreciated.
This is the code I am using:
\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}
By the way, TexShop with the Lilypond-Book implementation is a life saver!


