[Tex/LaTex] Generate a musical note on Overleaf

abclilypondoverleaf

How can I write music sheet on Overleaf? I am trying to generate a single "A1" note as shown below:

enter image description here

Best Answer

IMHO you should not use LaTeX to deal with music. (What am I saying :)) Anyway, MusiXTeX is the best option right now, but its macros are really hard to learn. It is written mainly for plain TeX.

\documentclass{article} 

\usepackage{musixtex}

\begin{document}

\begin{music}
\setclef1{6}
\generalmeter{\meterfrac{4}{4}}
\startextract
\Notes\wh A\off{7\noteskip}\en\setdoubleBAR
\endextract
\end{music}

\end{document}

enter image description here

Hope a package for music in LaTeX, which is easy to use, will be released soon.

Related Question