Typesetting music in LaTeX - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T09:43:39Zhttp://stackoverflow.com/feeds/question/648429http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/648429/typesetting-music-in-latex7Typesetting music in LaTeXJohn D. Cook2009-03-15T19:57:19Z2009-11-17T15:56:56Z
<p>I would be grateful for any help typesetting music in LaTeX. I've tried to use <a href="http://icking-music-archive.org/software/indexmt6.html" rel="nofollow">MusiXTeX</a> but have been very frustrated. </p>
<p>As I understand it, the MusiXTeX notation has a steep learning curve, but I'm OK with that; the notation seems to be well documented. The hardest part is installation and getting a simple "hello world" example to work. </p>
<p>I'm not committed to MusiXTeX; I'll try anything that works with LaTeX. But I've tried other alternatives and been equally frustrated with them. </p>
http://stackoverflow.com/questions/648429/typesetting-music-in-latex/648448#64844810Answer by Nikhil Chelliah for Typesetting music in LaTeXNikhil Chelliah2009-03-15T20:05:19Z2009-03-15T20:13:05Z<p>How about <a href="http://lilypond.org/web/" rel="nofollow">LilyPond</a>? It uses its own plaintext notation, but uses TeX for output. The engine itself uses a whole slew of measures to analyze the music and produce pretty sheet music, so it's automated to a much greater extent than MusixTex is.</p>
http://stackoverflow.com/questions/648429/typesetting-music-in-latex/648530#6485305Answer by jleedev for Typesetting music in LaTeXjleedev2009-03-15T20:54:54Z2009-03-15T20:54:54Z<p><a href="http://lilypond.org/doc/v2.12/Documentation/user/lilypond-program/LaTeX" rel="nofollow">Lilypond has a preprocessor</a> called <code>lilypond-book</code> that lets you mix LaTeX code with Lilypond code in one source file.</p>
<p>Sample usage: tsst.lytex contains this:</p>
<pre><code>\documentclass{article}
\begin{document}
\begin[quote,fragment,staffsize=26]{lilypond}
c' d' e'
\end{lilypond}
\end{document}
</code></pre>
<p>It also supports inline notation (instead of a display), and reading from external files.</p>
<p>Compile it with <code>lilypond-book --pdf tsst.lytex</code>, producing pdf images of each system along with a LaTeX file <code>tsst.tex</code> that includes the snippets, which compiles as usual with <code>pdflatex</code>.</p>
http://stackoverflow.com/questions/648429/typesetting-music-in-latex/1749838#17498381Answer by Gregg Lind for Typesetting music in LaTeXGregg Lind2009-11-17T15:56:56Z2009-11-17T15:56:56Z<p>If you have simple notations (folk tunes and the like), something like <a href="http://abcnotation.com/software.html" rel="nofollow">ABC</a> might be a good fit. Simple markup-based notation, but prints to LaTeX. Wikipedia has a <a href="http://en.wikipedia.org/wiki/Abc%5Fnotation" rel="nofollow">good example</a></p>
<pre><code>X:1
T:The Legacy Jig
M:6/8
L:1/8
R:jig
K:G
GFG BAB | gfg gab | GFG BAB | d2A AFD |
GFG BAB | gfg gab | age edB |1 dBA AFD :|2 dBA ABd |:
efe edB | dBA ABd | efe edB | gdB ABd |
efe edB | d2d def | gfe edB |1 dBA ABd :|2 dBA AFD |]
</code></pre>
<p>Which produces </p>
<p><a href="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Legacy%5Fjig.png/700px-Legacy%5Fjig.png" rel="nofollow"><img src="http://en.wikipedia.org/wiki/File%3ALegacy%5Fjig.png" alt="ABC example png"></a></p>