第 185 章 Music score

简介:


185.1. LilyPond

http://lilypond.org/

sudo apt-get install lilypond
	

185.1.1. Example

185.1.1.1. PNG/PDF/PS

			
\version "2.14.2"
\relative c'' {
  <<
    \new Staff { \clef "treble" c4 }
    \new Staff { \clef "bass" c,,4 }
  >>
}
			
			
lilypond --png -o abc.png example.ly
lilypond --pdf -o abc example.ly
			

185.1.1.2. Latex

			
\documentclass{article}
\begin{document}
    An easy song to learn on the piano is Mary Had a Little Lamb:\\
    \begin{lilypond}
        \score { % start of musical score
          <<
            % beginning of musical staff. the \relative c' means that the
            % notes are an octave higher than the default (ie: notes are
            % notes are relative to middle c)
            \new Staff \relative c' {
                e4 d c d e e e2 d4 d d2 e4 g g2
                e4 d c d e e e e d d e d c1
            } % end of staff
          >>
        } % end of musical score
    \end{lilypond}
\end{document}
			
			
lilypond-book --format=latex --lily-output-dir=lilyfiles mary.lytex
latex mary.tex
			
pdflatex --shell-escape your.tex
			



原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

目录
相关文章
|
3月前
|
资源调度
Z-Score方法
Z-Score方法
172 2
|
7月前
|
计算机视觉 Python
movie_label 视频刷新
movie_label 视频刷新
51 4
|
算法
uva 10891 game of sum
题目链接 详细请参考刘汝佳《算法竞赛入门经典训练指南》 p67
33 0
|
7月前
|
机器学习/深度学习 人工智能
【CatBoost报错解决】CatBoostError: Bad value for num feature[non default doc idx=0,feature idx=19]=
【CatBoost报错解决】CatBoostError: Bad value for num feature[non default doc idx=0,feature idx=19]=
[USACO 2009 Dec S]Music Notes
[USACO 2009 Dec S]Music Notes
|
机器学习/深度学习 数据可视化
Lesson 5.2 混淆矩阵与 F1-Score
Lesson 5.2 混淆矩阵与 F1-Score
Media change: please insert the disc labeled
Media change: please insert the disc labeled
113 0
|
数据库
Data truncation: Out of range value for column ‘estimate_score‘
Data truncation: Out of range value for column ‘estimate_score‘
1109. Group Photo (25)
#include #include #include #include #include #include using namespace std; struct node{ string name; ...
849 0