5.1 Lilypond五线谱

环境搭建

  LaTex本身不能写五线谱,只能集成lilypond。Lilypond的下载地址为链接。按照完成后,在Windows环境下,需要修改一个文件,将lilypond-book改成lilypond-book.py,如下图所示:
在这里插入图片描述

写乐谱文件

  创建一个后缀为ly的文件,随便用一款编辑器就可以往里面写乐谱了。但我不愿写,我是从网上抄了一个乐谱文件,Franz Abt的练声曲,下载网页为Franz Abt的练声曲,下载链接为练习曲一。如果因为网络原因下载不了,我可以贴出乐谱代码:

\version "2.18.2"

\midi {
  \tempo 4 = 110
  \context {
    \Voice
    \remove "Dynamic_performer"
  }
}

\header {
  title = "Vocalise № 1"
  composer = "Franz Abt (1819-1885)"

  maintainer = "Anonymous"
  mutopiacomposer = "AbtF"
  mutopiainstrument = "Voice, Piano"
  license = "Public Domain"
  source = "Practical Singing Tutor for All Voices, G.Schirmer, 1892. Ed: Max Spicker"
  moreinfo = "IMSLP-39796, PDF page 84.\nSee also: Франц АБТ / ШКОЛА ПЕНИЯ / Избранные / упражнения / для низких голосов / в сопровождении / фортепиано / Составитель Г. ТИЦ / ИЗДАТЕЛЬСТВО МУЗЫКА • МОСКВА 1965"
  style=Romantic
  footer = "Mutopia-2019/07/24-2247"
  copyright = \markup {\override #'(font-name . "DejaVu Sans, Bold") \override #'(baseline-skip . 0) \right-column {\with-url #"http://www.MutopiaProject.org" {\abs-fontsize #9  "Mutopia " \concat {\abs-fontsize #12 \with-color #white "ǀ" \abs-fontsize #9 "Project "}}}\override #'(font-name . "DejaVu Sans, Bold") \override #'(baseline-skip . 0 ) \center-column {\abs-fontsize #11.9 \with-color #grey \bold {"ǀ" "ǀ"}}\override #'(font-name . "DejaVu Sans,sans-serif") \override #'(baseline-skip . 0) \column { \abs-fontsize #8 \concat {"Typeset using " \with-url #"http://www.lilypond.org" "LilyPond " "by " \maintainer " — " \footer}\concat {\concat {\abs-fontsize #8 { "Placed in the " \with-url #"http://creativecommons.org/licenses/publicdomain" "Public Domain" " by the typesetter " " — free to distribute, modify, and perform" }}\abs-fontsize #13 \with-color #white "ǀ" }}}
  tagline = ##f
}

tightenSlur = {
  \once \override Slur #'positions = #'(5 . 5)
}

global = {
  \tempo Moderato
  \key c \major
  \time 4/4

  s1*5 \break
  s1*5 \break
  s1*6 \break
  \bar "|."
}

voice = \relative c' {
  e2^>( \once \override Hairpin #'to-barline = ##f d\> |
  c1\!) |
  \breathe d2\<( e4 f
  e2^>\!) r |
  g2\p\<( a |

    \barNumberCheck 6

  b1\!) |
  \breathe a2\>( g4 fis\! |
  g2) r |
  g2( a4 b |
  c2.) \breathe b8( a |

    \barNumberCheck 11

  g2\> f |
  e2\!) r |
  e4\<( d e f |
  g1\!) |
  \breathe g4\>( f e d |
  c1\!) |
}

text = \lyricmode {
  \set ignoreMelismata = ##t

  Mi re do
  re mi fa mi
  sol la si
  la sol fa sol
  sol la si do
  si la sol fa mi
  mi re mi fa sol
  sol fa mi re do
}

upper = \relative c' {
  \slurDown

  <c e>4( g <f d'> g) |
  <e c'>4 e g c |
  \tightenSlur <b d>4( g <c e> <d f> |
  <c e>4 g c e) |
  <e g>4( c <g' a> e) |

    \barNumberCheck 6

  <g b>4( d g b) |
  <c, a'>2( <b g'>4 <ais fis'> |
  <b g'>2) r |
  \tightenSlur <b f' g>4( g <d' f g> g, |
  <c e g>4 g c e) |

    \barNumberCheck 11

  \tightenSlur \shape #'((0 . 0) (0 . 0) (0 . -0.75) (0 . 0)) Slur g4( b, d f |
  e4 e, c' e) |
  << { e4 d e } \\ { <a, c>2. } >> <a d f>4 |
  \tightenSlur \shape #'((0 . 0) (-0.5 . -0.75) (0 . 0) (0 . 0)) Slur g'4( g, c e) |
  <b g'>4( <a f'> <g e'> <f d'> |
  <e c'>1) |
}

lower = \relative c {
  <c, c'>1~ |
  <c c'> |
  g'1( |
  c2) r |
  c2( cis |

    \barNumberCheck 6

  d1) |
  d,4 d' d, d' |
  g,4 b d g |
  g,1 |
  g1 |

    \barNumberCheck 11

  g2( gis |
  a1) |
  f4( f' e d |
  <g, e'>1) |
  g1 |
  <c, g'>1 |
}

\score {
  <<
    \new Staff \with { midiInstrument = "voice oohs" } <<
      \new Voice \global
      \new Voice = "voice" {
        \clef treble
        \dynamicUp
        \voice
      }
      \new Lyrics \lyricsto "voice" \text
    >>
    \new Staff \with { midiInstrument = "voice oohs" } <<
      \new Voice \global
      \new Voice = "voice" {
        \clef bass
        \dynamicUp
        \transpose c c, \voice
      }
    >>
    \new PianoStaff \with { midiInstrument = "acoustic grand" } <<
      \new Staff = "upper" <<
        \clef treble
        \global
        \upper
      >>
      \new Staff = "lower" <<
        \clef bass
        \global
        \lower
      >>
    >>
  >>

  \layout {}
  \midi {}
}

  下载完成之后创建一个后缀为lytex的文件,写入以下内容:

\documentclass{article}
\begin{document}
	\lilypondfile{Vocalise1.ly}
\end{document}

  Vocalise1.ly就是我下载下来的乐谱文件,然后执行命令:

lilypond-book.py  --pdf .\Vocalise1.lytex

  这个时候就得到了一个tex文件。

编译效果

  将这个tex文件用TexStudio打开编译,得到了最终需要的pdf了,这样就可以写音乐类的论文或文章了,编译效果如下:
在这里插入图片描述
在这里插入图片描述

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

醒过来摸鱼

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值