Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 @c -*- coding: utf-8; mode: texinfo; -*- | 1 @c -*- coding: utf-8; mode: texinfo; -*- |
2 @c vim: foldmethod=marker | 2 @c vim: foldmethod=marker |
3 @ignore | 3 @ignore |
4 Translation of GIT committish: FILL-IN-HEAD-COMMITTISH | 4 Translation of GIT committish: FILL-IN-HEAD-COMMITTISH |
5 | 5 |
6 When revising a translation, copy the HEAD committish of the | 6 When revising a translation, copy the HEAD committish of the |
7 version that you are working on. For details, see the Contributors' | 7 version that you are working on. For details, see the Contributors' |
8 Guide, node Updating translation committishes.. | 8 Guide, node Updating translation committishes.. |
9 @end ignore | 9 @end ignore |
10 | 10 |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
214 mensural notation. | 214 mensural notation. |
215 | 215 |
216 Ligatures are entered by @emph{enclosing} them in @code{\[} and | 216 Ligatures are entered by @emph{enclosing} them in @code{\[} and |
217 @code{\]}. Some ligature styles may need additional input syntax | 217 @code{\]}. Some ligature styles may need additional input syntax |
218 specific for this particular type of ligature. By default, the | 218 specific for this particular type of ligature. By default, the |
219 @code{LigatureBracket} engraver just puts a square bracket | 219 @code{LigatureBracket} engraver just puts a square bracket |
220 above the ligature. | 220 above the ligature. |
221 | 221 |
222 @lilypond[quote,ragged-right,verbatim] | 222 @lilypond[quote,ragged-right,verbatim] |
223 \relative c'' { | 223 \relative c'' { |
224 \[ g c a f d' \] | 224 \[ g c a f d' \] |
dak
2013/03/16 09:09:30
This looks wrong. Shouldn't it be
\[ g c, a' f d'
| |
225 a g f | 225 a g f |
226 \[ e f a g \] | 226 \[ e f a g \] |
227 } | 227 } |
228 @end lilypond | 228 @end lilypond |
229 | 229 |
230 Two other ligature styles are available: the Vaticana for | 230 Two other ligature styles are available: the Vaticana for |
231 Gregorian chant, and the Mensural for mensural music (only white | 231 Gregorian chant, and the Mensural for mensural music (only white |
232 mensural ligatures are supported for mensural music, and with | 232 mensural ligatures are supported for mensural music, and with |
233 certain limitations). To use any of these styles, the default | 233 certain limitations). To use any of these styles, the default |
234 @code{Ligature_bracket_engraver} has to be replaced with one of the | 234 @code{Ligature_bracket_engraver} has to be replaced with one of the |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
368 | 368 |
369 The predefined @code{MensuralVoice} and @code{MensuralStaff} | 369 The predefined @code{MensuralVoice} and @code{MensuralStaff} |
370 contexts can be used to engrave a piece in mensural style. These | 370 contexts can be used to engrave a piece in mensural style. These |
371 contexts initialize all relevant context properties and grob | 371 contexts initialize all relevant context properties and grob |
372 properties to proper values, so you can immediately go ahead | 372 properties to proper values, so you can immediately go ahead |
373 entering the chant, as the following excerpt demonstrates: | 373 entering the chant, as the following excerpt demonstrates: |
374 | 374 |
375 @lilypond[quote,ragged-right,verbatim] | 375 @lilypond[quote,ragged-right,verbatim] |
376 \score { | 376 \score { |
377 << | 377 << |
378 \new MensuralVoice = "discantus" \relative c' { | 378 \new MensuralVoice = "discantus" \relative c' { |
dak
2013/03/16 09:09:30
Why not \relative c'' if the starting pitch is c''
| |
379 \override Score.BarNumber.transparent = ##t { | 379 \override Score.BarNumber.transparent = ##t { |
380 c'1\melisma bes a g\melismaEnd | 380 c'1\melisma bes a g\melismaEnd |
381 f\breve | 381 f\breve |
382 \[ f1\melisma a c\breve d\melismaEnd \] | 382 \[ f1\melisma a c\breve d\melismaEnd \] |
383 c\longa | 383 c\longa |
384 c\breve\melisma a1 g1\melismaEnd | 384 c\breve\melisma a1 g1\melismaEnd |
385 fis\longa^\signumcongruentiae | 385 fis\longa^\signumcongruentiae |
386 } | 386 } |
387 } | 387 } |
388 \new Lyrics \lyricsto "discantus" { | 388 \new Lyrics \lyricsto "discantus" { |
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
880 This will treat @emph{every} subsequent accidental as | 880 This will treat @emph{every} subsequent accidental as |
881 @emph{musica ficta} until it is unset with | 881 @emph{musica ficta} until it is unset with |
882 @code{\set suggestAccidentals = ##f}. A more practical way is to | 882 @code{\set suggestAccidentals = ##f}. A more practical way is to |
883 use @code{\once \set suggestAccidentals = ##t}, which can even be | 883 use @code{\once \set suggestAccidentals = ##t}, which can even be |
884 defined as a convenient shorthand: | 884 defined as a convenient shorthand: |
885 | 885 |
886 @lilypond[quote,verbatim] | 886 @lilypond[quote,verbatim] |
887 ficta = { \once \set suggestAccidentals = ##t } | 887 ficta = { \once \set suggestAccidentals = ##t } |
888 \score { \relative c'' | 888 \score { \relative c'' |
889 \new MensuralVoice { | 889 \new MensuralVoice { |
890 » \once \set suggestAccidentals = ##t | 890 \once \set suggestAccidentals = ##t |
891 bes4 a2 g2 \ficta fis8 \ficta e! fis2 g1 | 891 bes4 a2 g2 \ficta fis8 \ficta e! fis2 g1 |
892 } | 892 } |
893 } | 893 } |
894 @end lilypond | 894 @end lilypond |
895 | 895 |
896 @seealso | 896 @seealso |
897 Internals Reference: | 897 Internals Reference: |
898 @rinternals{Accidental_engraver}, | 898 @rinternals{Accidental_engraver}, |
899 @rinternals{AccidentalSuggestion}. | 899 @rinternals{AccidentalSuggestion}. |
900 | 900 |
901 | 901 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
942 @c @example | 942 @c @example |
943 @c \set Score.timing = ##f | 943 @c \set Score.timing = ##f |
944 @c \set Score.defaultBarType = "-" | 944 @c \set Score.defaultBarType = "-" |
945 @c \override NoteHead.style = #'neomensural | 945 @c \override NoteHead.style = #'neomensural |
946 @c \override Staff.TimeSignature.style = #'neomensural | 946 @c \override Staff.TimeSignature.style = #'neomensural |
947 @c \clef "petrucci-g" | 947 @c \clef "petrucci-g" |
948 @c \[ c'\maxima g \] | 948 @c \[ c'\maxima g \] |
949 @c \[ d\longa c\breve f e d \] | 949 @c \[ d\longa c\breve f e d \] |
950 @c \[ c'\maxima d'\longa \] | 950 @c \[ c'\maxima d'\longa \] |
951 @c \[ e'1 a g\breve \] | 951 @c \[ e'1 a g\breve \] |
952 @c @end example | 952 @c @end example |
benko.pal
2013/03/07 19:04:52
please make the two examples above and below match
aleksandr.andreev
2013/03/07 21:16:18
Sorry, I am confused which examples you are referr
benko.pal
2013/03/07 21:25:04
sorry, you are right. I mistook @c for code. ple
dak
2013/03/16 09:09:30
Where is the point in leaving random outcommented
| |
953 @lilypond[quote,ragged-right,verbatim] | 953 @lilypond[quote,ragged-right,verbatim] |
954 \score { | 954 \score { |
955 \relative c' { | 955 \relative c' { |
956 \set Score.timing = ##f | 956 \set Score.timing = ##f |
957 \set Score.defaultBarType = "-" | 957 \set Score.defaultBarType = "-" |
958 \override NoteHead.style = #'petrucci | 958 \override NoteHead.style = #'petrucci |
959 \override Staff.TimeSignature.style = #'mensural | 959 \override Staff.TimeSignature.style = #'mensural |
960 \clef "petrucci-g" | 960 \clef "petrucci-g" |
961 \[ c'\maxima g \] | 961 \[ c'\maxima g \] |
962 \[ d\longa | 962 \[ d\longa |
(...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1635 | 1635 |
1636 | 1636 |
1637 @item | 1637 @item |
1638 @b{Punctum} | 1638 @b{Punctum} |
1639 @tab | 1639 @tab |
1640 @lilypond[staffsize=26,line-width=1.5\cm] | 1640 @lilypond[staffsize=26,line-width=1.5\cm] |
1641 \include "gregorian.ly" | 1641 \include "gregorian.ly" |
1642 \score { | 1642 \score { |
1643 \relative c' { | 1643 \relative c' { |
1644 % Punctum | 1644 % Punctum |
1645 \[ b \] | 1645 \[ b \] |
dak
2013/03/16 09:09:30
The original had b', but this would appear to be b
| |
1646 } | 1646 } |
1647 \layout { \neumeDemoLayout }} | 1647 \layout { \neumeDemoLayout }} |
1648 @end lilypond | 1648 @end lilypond |
1649 @tab | 1649 @tab |
1650 @code{\[ b \]} | 1650 @code{\[ b \]} |
1651 | 1651 |
1652 @item | 1652 @item |
1653 @tab | 1653 @tab |
1654 @lilypond[staffsize=26,line-width=1.5\cm] | 1654 @lilypond[staffsize=26,line-width=1.5\cm] |
1655 \include "gregorian.ly" | 1655 \include "gregorian.ly" |
1656 \score { | 1656 \score { |
1657 \relative c' { | 1657 \relative c' { |
dak
2013/03/16 09:09:30
Again, this is now b rather than b' as previously.
| |
1658 % Punctum | 1658 % Punctum |
1659 \[ \cavum b \] | 1659 \[ \cavum b \] |
1660 } | 1660 } |
1661 \layout { \neumeDemoLayout }} | 1661 \layout { \neumeDemoLayout }} |
1662 @end lilypond | 1662 @end lilypond |
1663 @tab | 1663 @tab |
1664 @code{\[ \cavum b \]} | 1664 @code{\[ \cavum b \]} |
1665 | 1665 |
1666 @item | 1666 @item |
1667 @tab | 1667 @tab |
1668 @lilypond[staffsize=26,line-width=1.5\cm] | 1668 @lilypond[staffsize=26,line-width=1.5\cm] |
1669 \include "gregorian.ly" | 1669 \include "gregorian.ly" |
1670 \score { | 1670 \score { |
1671 \relative c' { | 1671 \relative c' { |
1672 % Punctum | 1672 % Punctum |
1673 \[ \linea b \] | 1673 \[ \linea b \] |
1674 } | 1674 } |
1675 \layout { \neumeDemoLayout }} | 1675 \layout { \neumeDemoLayout }} |
1676 @end lilypond | 1676 @end lilypond |
1677 @tab | 1677 @tab |
1678 @code{\[ \linea b \]} | 1678 @code{\[ \linea b \]} |
1679 | 1679 |
1680 @item | 1680 @item |
1681 @emph{Punctum Auctum Ascendens} | 1681 @emph{Punctum Auctum Ascendens} |
1682 @tab | 1682 @tab |
1683 @lilypond[staffsize=26,line-width=2.5\cm] | 1683 @lilypond[staffsize=26,line-width=2.5\cm] |
1684 \include "gregorian.ly" | 1684 \include "gregorian.ly" |
1685 \score { | 1685 \score { |
1686 | 1686 \relative c' { |
Trevor Daniels
2013/03/06 22:20:42
drop the blank line
| |
1687 \relative c' { | |
Trevor Daniels
2013/03/06 22:20:42
indent
| |
1688 % Punctum Auctum Ascendens | 1687 % Punctum Auctum Ascendens |
1689 \[ \auctum \ascendens b \] | 1688 \[ \auctum \ascendens b \] |
dak
2013/03/16 09:09:30
This is b instead of b' now.
| |
1690 } | 1689 } |
1691 \layout { \neumeDemoLayout }} | 1690 \layout { \neumeDemoLayout }} |
1692 @end lilypond | 1691 @end lilypond |
1693 @tab | 1692 @tab |
1694 @code{\[ \auctum \ascendens b \]} | 1693 @code{\[ \auctum \ascendens b \]} |
1695 | 1694 |
1696 @item | 1695 @item |
1697 @emph{Punctum Auctum Descendens} | 1696 @emph{Punctum Auctum Descendens} |
1698 @tab | 1697 @tab |
1699 @lilypond[staffsize=26,line-width=2.5\cm] | 1698 @lilypond[staffsize=26,line-width=2.5\cm] |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1850 @tab | 1849 @tab |
1851 @code{\[ g \pes b \]} | 1850 @code{\[ g \pes b \]} |
1852 | 1851 |
1853 @item | 1852 @item |
1854 @emph{Pes Auctus Descendens} | 1853 @emph{Pes Auctus Descendens} |
1855 @tab | 1854 @tab |
1856 @lilypond[staffsize=26,line-width=1.0\cm] | 1855 @lilypond[staffsize=26,line-width=1.0\cm] |
1857 \include "gregorian.ly" | 1856 \include "gregorian.ly" |
1858 \score { | 1857 \score { |
1859 \relative c' { | 1858 \relative c' { |
1860 » % Pes Auctus Descendens | 1859 % Pes Auctus Descendens |
1861 \[ g \pes \auctum \descendens b \] | 1860 \[ g \pes \auctum \descendens b \] |
1862 } | 1861 } |
1863 \layout { \neumeDemoLayout }} | 1862 \layout { \neumeDemoLayout }} |
1864 @end lilypond | 1863 @end lilypond |
1865 @tab | 1864 @tab |
1866 @code{\[ g \pes \auctum \descendens b \]} | 1865 @code{\[ g \pes \auctum \descendens b \]} |
1867 | 1866 |
1868 @item | 1867 @item |
1869 @emph{Pes Auctus Ascendens} | 1868 @emph{Pes Auctus Ascendens} |
1870 @tab | 1869 @tab |
1871 @lilypond[staffsize=26,line-width=1.0\cm] | 1870 @lilypond[staffsize=26,line-width=1.0\cm] |
1872 \include "gregorian.ly" | 1871 \include "gregorian.ly" |
1873 \score { | 1872 \score { |
1874 \relative c' { | 1873 \relative c' { |
1875 % Pes Auctus Ascendens | 1874 % Pes Auctus Ascendens |
1876 \[ g \pes \auctum \ascendens b \] | 1875 \[ g \pes \auctum \ascendens b \] |
1877 } | 1876 } |
1878 \layout { \neumeDemoLayout }} | 1877 \layout { \neumeDemoLayout }} |
1879 @end lilypond | 1878 @end lilypond |
1880 @tab | 1879 @tab |
1881 @code{\[ g \pes \auctum \ascendens b \]} | 1880 @code{\[ g \pes \auctum \ascendens b \]} |
1882 | 1881 |
1883 @item | 1882 @item |
1884 @emph{Epiphonus} | 1883 @emph{Epiphonus} |
1885 @tab | 1884 @tab |
1886 @lilypond[staffsize=26,line-width=1.0\cm] | 1885 @lilypond[staffsize=26,line-width=1.0\cm] |
1887 \include "gregorian.ly" | 1886 \include "gregorian.ly" |
1888 \score { | 1887 \score { |
1889 \relative c' { | 1888 \relative c' { |
1890 » % Epiphonus | 1889 % Epiphonus |
1891 \[ g \pes \deminutum b \] | 1890 \[ g \pes \deminutum b \] |
1892 } | 1891 } |
1893 \layout { \neumeDemoLayout }} | 1892 \layout { \neumeDemoLayout }} |
1894 @end lilypond | 1893 @end lilypond |
1895 @tab | 1894 @tab |
1896 @code{\[ g \pes \deminutum b \]} | 1895 @code{\[ g \pes \deminutum b \]} |
1897 | 1896 |
1898 @item | 1897 @item |
1899 @emph{Pes Initio Debilis} | 1898 @emph{Pes Initio Debilis} |
1900 @tab | 1899 @tab |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1947 @tab | 1946 @tab |
1948 @code{\[ a \pes b \flexa g \]} | 1947 @code{\[ a \pes b \flexa g \]} |
1949 | 1948 |
1950 @item | 1949 @item |
1951 @emph{Torculus Auctus Descendens} | 1950 @emph{Torculus Auctus Descendens} |
1952 @tab | 1951 @tab |
1953 @lilypond[staffsize=26,line-width=1.0\cm] | 1952 @lilypond[staffsize=26,line-width=1.0\cm] |
1954 \include "gregorian.ly" | 1953 \include "gregorian.ly" |
1955 \score { | 1954 \score { |
1956 \relative c' { | 1955 \relative c' { |
1957 » % Torculus Auctus Descendens | 1956 % Torculus Auctus Descendens |
1958 \[ a \pes b \flexa \auctum \descendens g \] | 1957 \[ a \pes b \flexa \auctum \descendens g \] |
1959 } | 1958 } |
1960 \layout { \neumeDemoLayout }} | 1959 \layout { \neumeDemoLayout }} |
1961 @end lilypond | 1960 @end lilypond |
1962 @tab | 1961 @tab |
1963 @code{\[ a \pes b \flexa \auctum \descendens g \]} | 1962 @code{\[ a \pes b \flexa \auctum \descendens g \]} |
1964 | 1963 |
1965 @item | 1964 @item |
1966 @emph{Torculus Deminutus} | 1965 @emph{Torculus Deminutus} |
1967 @tab | 1966 @tab |
1968 @lilypond[staffsize=26,line-width=1.0\cm] | 1967 @lilypond[staffsize=26,line-width=1.0\cm] |
1969 \include "gregorian.ly" | 1968 \include "gregorian.ly" |
1970 \score { | 1969 \score { |
1971 \relative c' { | 1970 \relative c' { |
1972 » % Torculus Deminutus | 1971 % Torculus Deminutus |
1973 \[ a \pes b \flexa \deminutum g \] | 1972 \[ a \pes b \flexa \deminutum g \] |
1974 } | 1973 } |
1975 \layout { \neumeDemoLayout }} | 1974 \layout { \neumeDemoLayout }} |
1976 @end lilypond | 1975 @end lilypond |
1977 @tab | 1976 @tab |
1978 @code{\[ a \pes b \flexa \deminutum g \]} | 1977 @code{\[ a \pes b \flexa \deminutum g \]} |
1979 | 1978 |
1980 @item | 1979 @item |
1981 @emph{Torculus Initio Debilis} | 1980 @emph{Torculus Initio Debilis} |
1982 @tab | 1981 @tab |
1983 @lilypond[staffsize=26,line-width=1.0\cm] | 1982 @lilypond[staffsize=26,line-width=1.0\cm] |
1984 \include "gregorian.ly" | 1983 \include "gregorian.ly" |
1985 \score { | 1984 \score { |
1986 \relative c' { | 1985 \relative c' { |
1987 » % Torculus Initio Debilis | 1986 % Torculus Initio Debilis |
1988 \[ \deminutum a \pes b \flexa g \] | 1987 \[ \deminutum a \pes b \flexa g \] |
1989 } | 1988 } |
1990 \layout { \neumeDemoLayout }} | 1989 \layout { \neumeDemoLayout }} |
1991 @end lilypond | 1990 @end lilypond |
1992 @tab | 1991 @tab |
1993 @code{\[ \deminutum a \pes b \flexa g \]} | 1992 @code{\[ \deminutum a \pes b \flexa g \]} |
1994 | 1993 |
1995 @item | 1994 @item |
1996 @emph{Torculus Auctus Descendens Initio Debilis} | 1995 @emph{Torculus Auctus Descendens Initio Debilis} |
1997 @tab | 1996 @tab |
1998 @lilypond[staffsize=26,line-width=1.0\cm] | 1997 @lilypond[staffsize=26,line-width=1.0\cm] |
1999 \include "gregorian.ly" | 1998 \include "gregorian.ly" |
2000 \score { | 1999 \score { |
2001 \relative c' { | 2000 \relative c' { |
2002 » % Torculus Auctus Descendens Initio Debilis | 2001 % Torculus Auctus Descendens Initio Debilis |
2003 \[ \deminutum a \pes b \flexa \auctum \descendens g \] | 2002 \[ \deminutum a \pes b \flexa \auctum \descendens g \] |
2004 } | 2003 } |
2005 \layout { \neumeDemoLayout }} | 2004 \layout { \neumeDemoLayout }} |
2006 @end lilypond | 2005 @end lilypond |
2007 @tab | 2006 @tab |
2008 @code{\[ \deminutum a \pes b \flexa \auctum \descendens g \]} | 2007 @code{\[ \deminutum a \pes b \flexa \auctum \descendens g \]} |
2009 | 2008 |
2010 @item | 2009 @item |
2011 @emph{Torculus Deminutus Initio Debilis} | 2010 @emph{Torculus Deminutus Initio Debilis} |
2012 @tab | 2011 @tab |
2013 @lilypond[staffsize=26,line-width=1.0\cm] | 2012 @lilypond[staffsize=26,line-width=1.0\cm] |
2014 \include "gregorian.ly" | 2013 \include "gregorian.ly" |
2015 \score { | 2014 \score { |
2016 \relative c' { | 2015 \relative c' { |
2017 » % Torculus Deminutus Initio Debilis | 2016 % Torculus Deminutus Initio Debilis |
2018 \[ \deminutum a \pes b \flexa \deminutum g \] | 2017 \[ \deminutum a \pes b \flexa \deminutum g \] |
2019 } | 2018 } |
2020 \layout { \neumeDemoLayout }} | 2019 \layout { \neumeDemoLayout }} |
2021 @end lilypond | 2020 @end lilypond |
2022 @tab | 2021 @tab |
2023 @code{\[ \deminutum a \pes b \flexa \deminutum g \]} | 2022 @code{\[ \deminutum a \pes b \flexa \deminutum g \]} |
2024 | 2023 |
2025 @item | 2024 @item |
2026 @b{Porrectus} | 2025 @b{Porrectus} |
2027 @tab | 2026 @tab |
2028 @lilypond[staffsize=26,line-width=1.0\cm] | 2027 @lilypond[staffsize=26,line-width=1.0\cm] |
2029 \include "gregorian.ly" | 2028 \include "gregorian.ly" |
2030 \score { | 2029 \score { |
2031 \relative c' { | 2030 \relative c' { |
2032 % Porrectus | 2031 % Porrectus |
2033 \[ a \flexa g \pes b \] | 2032 \[ a \flexa g \pes b \] |
2034 } | 2033 } |
2035 \layout { \neumeDemoLayout }} | 2034 \layout { \neumeDemoLayout }} |
2036 @end lilypond | 2035 @end lilypond |
2037 @tab | 2036 @tab |
2038 @code{\[ a \flexa g \pes b \]} | 2037 @code{\[ a \flexa g \pes b \]} |
2039 | 2038 |
2040 @item | 2039 @item |
2041 @emph{Porrectus Auctus Descendens} | 2040 @emph{Porrectus Auctus Descendens} |
2042 @tab | 2041 @tab |
2043 @lilypond[staffsize=26,line-width=1.0\cm] | 2042 @lilypond[staffsize=26,line-width=1.0\cm] |
2044 \include "gregorian.ly" | 2043 \include "gregorian.ly" |
2045 \score { | 2044 \score { |
2046 \relative c' { | 2045 \relative c' { |
2047 » % Porrectus Auctus Descendens | 2046 % Porrectus Auctus Descendens |
2048 \[ a \flexa g \pes \auctum \descendens b \] | 2047 \[ a \flexa g \pes \auctum \descendens b \] |
2049 } | 2048 } |
2050 \layout { \neumeDemoLayout }} | 2049 \layout { \neumeDemoLayout }} |
2051 @end lilypond | 2050 @end lilypond |
2052 @tab | 2051 @tab |
2053 @code{\[ a \flexa g \pes \auctum \descendens b \]} | 2052 @code{\[ a \flexa g \pes \auctum \descendens b \]} |
2054 | 2053 |
2055 @item | 2054 @item |
2056 @emph{Porrectus Deminutus} | 2055 @emph{Porrectus Deminutus} |
2057 @tab | 2056 @tab |
2058 @lilypond[staffsize=26,line-width=1.0\cm] | 2057 @lilypond[staffsize=26,line-width=1.0\cm] |
2059 \include "gregorian.ly" | 2058 \include "gregorian.ly" |
2060 \score { | 2059 \score { |
2061 \relative c' { | 2060 \relative c' { |
2062 » % Porrectus Deminutus | 2061 % Porrectus Deminutus |
2063 \[ a \flexa g \pes \deminutum b \] | 2062 \[ a \flexa g \pes \deminutum b \] |
2064 } | 2063 } |
2065 \layout { \neumeDemoLayout }} | 2064 \layout { \neumeDemoLayout }} |
2066 @end lilypond | 2065 @end lilypond |
2067 @tab | 2066 @tab |
2068 @code{\[ a \flexa g \pes \deminutum b \]} | 2067 @code{\[ a \flexa g \pes \deminutum b \]} |
2069 | 2068 |
2070 @item | 2069 @item |
2071 @b{Climacus} | 2070 @b{Climacus} |
2072 @tab | 2071 @tab |
2073 @lilypond[staffsize=26,line-width=1.0\cm] | 2072 @lilypond[staffsize=26,line-width=1.0\cm] |
2074 \include "gregorian.ly" | 2073 \include "gregorian.ly" |
2075 \score { | 2074 \score { |
2076 \relative c' { | 2075 \relative c' { |
2077 % Climacus | 2076 % Climacus |
2078 \[ \virga b \inclinatum a \inclinatum g \] | 2077 \[ \virga b \inclinatum a \inclinatum g \] |
2079 } | 2078 } |
2080 \layout { \neumeDemoLayout }} | 2079 \layout { \neumeDemoLayout }} |
2081 @end lilypond | 2080 @end lilypond |
2082 @tab | 2081 @tab |
2083 @code{\[ \virga b \inclinatum a \inclinatum g \]} | 2082 @code{\[ \virga b \inclinatum a \inclinatum g \]} |
2084 | 2083 |
2085 @item | 2084 @item |
2086 @emph{Climacus Auctus} | 2085 @emph{Climacus Auctus} |
2087 @tab | 2086 @tab |
2088 @lilypond[staffsize=26,line-width=1.0\cm] | 2087 @lilypond[staffsize=26,line-width=1.0\cm] |
2089 \include "gregorian.ly" | 2088 \include "gregorian.ly" |
2090 \score { | 2089 \score { |
2091 \relative c' { | 2090 \relative c' { |
2092 » % Climacus Auctus | 2091 % Climacus Auctus |
2093 \[ \virga b \inclinatum a \inclinatum \auctum g \] | 2092 \[ \virga b \inclinatum a \inclinatum \auctum g \] |
2094 } | 2093 } |
2095 \layout { \neumeDemoLayout }} | 2094 \layout { \neumeDemoLayout }} |
2096 @end lilypond | 2095 @end lilypond |
2097 @tab | 2096 @tab |
2098 @code{\[ \virga b \inclinatum a \inclinatum \auctum g \]} | 2097 @code{\[ \virga b \inclinatum a \inclinatum \auctum g \]} |
2099 | 2098 |
2100 @item | 2099 @item |
2101 @emph{Climacus Deminutus} | 2100 @emph{Climacus Deminutus} |
2102 @tab | 2101 @tab |
2103 @lilypond[staffsize=26,line-width=1.0\cm] | 2102 @lilypond[staffsize=26,line-width=1.0\cm] |
2104 \include "gregorian.ly" | 2103 \include "gregorian.ly" |
2105 \score { | 2104 \score { |
2106 \relative c' { | 2105 \relative c' { |
2107 » % Climacus Deminutus | 2106 % Climacus Deminutus |
2108 \[ \virga b \inclinatum a \inclinatum \deminutum g \] | 2107 \[ \virga b \inclinatum a \inclinatum \deminutum g \] |
2109 } | 2108 } |
2110 \layout { \neumeDemoLayout }} | 2109 \layout { \neumeDemoLayout }} |
2111 @end lilypond | 2110 @end lilypond |
2112 @tab | 2111 @tab |
2113 @code{\[ \virga b \inclinatum a \inclinatum \deminutum g \]} | 2112 @code{\[ \virga b \inclinatum a \inclinatum \deminutum g \]} |
2114 | 2113 |
2115 @item | 2114 @item |
2116 @b{Scandicus} | 2115 @b{Scandicus} |
2117 @tab | 2116 @tab |
2118 @lilypond[staffsize=26,line-width=1.0\cm] | 2117 @lilypond[staffsize=26,line-width=1.0\cm] |
2119 \include "gregorian.ly" | 2118 \include "gregorian.ly" |
2120 \score { | 2119 \score { |
2121 \relative c' { | 2120 \relative c' { |
2122 % Scandicus | 2121 % Scandicus |
2123 \[ g \pes a \virga b \] | 2122 \[ g \pes a \virga b \] |
2124 } | 2123 } |
2125 \layout { \neumeDemoLayout }} | 2124 \layout { \neumeDemoLayout }} |
2126 @end lilypond | 2125 @end lilypond |
2127 @tab | 2126 @tab |
2128 @code{\[ g \pes a \virga b \]} | 2127 @code{\[ g \pes a \virga b \]} |
2129 | 2128 |
2130 @item | 2129 @item |
2131 @emph{Scandicus Auctus Descendens} | 2130 @emph{Scandicus Auctus Descendens} |
2132 @tab | 2131 @tab |
2133 @lilypond[staffsize=26,line-width=1.0\cm] | 2132 @lilypond[staffsize=26,line-width=1.0\cm] |
2134 \include "gregorian.ly" | 2133 \include "gregorian.ly" |
2135 \score { | 2134 \score { |
2136 \relative c' { | 2135 \relative c' { |
2137 » % Scandicus Auctus Descendens | 2136 % Scandicus Auctus Descendens |
2138 \[ g \pes a \pes \auctum \descendens b \] | 2137 \[ g \pes a \pes \auctum \descendens b \] |
2139 } | 2138 } |
2140 \layout { \neumeDemoLayout }} | 2139 \layout { \neumeDemoLayout }} |
2141 @end lilypond | 2140 @end lilypond |
2142 @tab | 2141 @tab |
2143 @code{\[ g \pes a \pes \auctum \descendens b \]} | 2142 @code{\[ g \pes a \pes \auctum \descendens b \]} |
2144 | 2143 |
2145 @item | 2144 @item |
2146 @emph{Scandicus Deminutus} | 2145 @emph{Scandicus Deminutus} |
2147 @tab | 2146 @tab |
2148 @lilypond[staffsize=26,line-width=1.0\cm] | 2147 @lilypond[staffsize=26,line-width=1.0\cm] |
2149 \include "gregorian.ly" | 2148 \include "gregorian.ly" |
2150 \score { | 2149 \score { |
2151 \relative c' { | 2150 \relative c' { |
2152 » % Scandicus Deminutus | 2151 % Scandicus Deminutus |
2153 \[ g \pes a \pes \deminutum b \] | 2152 \[ g \pes a \pes \deminutum b \] |
2154 } | 2153 } |
2155 \layout { \neumeDemoLayout }} | 2154 \layout { \neumeDemoLayout }} |
2156 @end lilypond | 2155 @end lilypond |
2157 @tab | 2156 @tab |
2158 @code{\[ g \pes a \pes \deminutum b \]} | 2157 @code{\[ g \pes a \pes \deminutum b \]} |
2159 | 2158 |
2160 @end multitable | 2159 @end multitable |
2161 | 2160 |
2162 @noindent | 2161 @noindent |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2430 @code{KievanVoice} and @code{KievanStaff} contexts can be used | 2429 @code{KievanVoice} and @code{KievanStaff} contexts can be used |
2431 to engrave a piece in square notation. These contexts initialize | 2430 to engrave a piece in square notation. These contexts initialize |
2432 all relevant context properties and grob properties to proper | 2431 all relevant context properties and grob properties to proper |
2433 values, so you can immediately go ahead entering the chant: | 2432 values, so you can immediately go ahead entering the chant: |
2434 | 2433 |
2435 @lilypond[quote,ragged-right,verbatim] | 2434 @lilypond[quote,ragged-right,verbatim] |
2436 \score { | 2435 \score { |
2437 << | 2436 << |
2438 \new KievanVoice = "melody" \relative c' { | 2437 \new KievanVoice = "melody" \relative c' { |
2439 \cadenzaOn | 2438 \cadenzaOn |
2440 » c4 c c c c2 b\longa | 2439 c4 c c c c2 b\longa |
Trevor Daniels
2013/03/06 22:20:42
no tab, please
| |
2441 » \bar "k" | 2440 \bar "k" |
2442 } | 2441 } |
2443 \new Lyrics \lyricsto "melody" { | 2442 \new Lyrics \lyricsto "melody" { |
2444 Го -- спо -- ди по -- ми -- луй. | 2443 Го -- спо -- ди по -- ми -- луй. |
2445 } | 2444 } |
2446 >> | 2445 >> |
2447 } | 2446 } |
2448 @end lilypond | 2447 @end lilypond |
2449 | 2448 |
2450 @seealso | 2449 @seealso |
2451 Music Glossary: | 2450 Music Glossary: |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2600 The spacing between the notes within a Kievan ligature can be controlled | 2599 The spacing between the notes within a Kievan ligature can be controlled |
2601 by setting the @code{padding} property of the @code{KievanLigature}. | 2600 by setting the @code{padding} property of the @code{KievanLigature}. |
2602 | 2601 |
2603 The following example demonstrates the use of Kievan ligatures: | 2602 The following example demonstrates the use of Kievan ligatures: |
2604 | 2603 |
2605 @lilypond[quote,ragged-right,verbatim] | 2604 @lilypond[quote,ragged-right,verbatim] |
2606 \score { | 2605 \score { |
2607 << | 2606 << |
2608 \new KievanVoice = "melody" \relative c' { | 2607 \new KievanVoice = "melody" \relative c' { |
2609 \cadenzaOn | 2608 \cadenzaOn |
2610 » e2 \[ e4( d4 ) \] \[ c4( d e d ) \] e1 \bar "k" | 2609 e2 \[ e4( d4 ) \] \[ c4( d e d ) \] e1 \bar "k" |
2611 } | 2610 } |
2612 \new Lyrics \lyricsto "melody" { | 2611 \new Lyrics \lyricsto "melody" { |
2613 Га -- врі -- и -- лу | 2612 Га -- врі -- и -- лу |
2614 } | 2613 } |
2615 >> | 2614 >> |
2616 } | 2615 } |
2617 @end lilypond | 2616 @end lilypond |
2618 | 2617 |
2619 @seealso | 2618 @seealso |
2620 Music Glossary: | 2619 Music Glossary: |
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2904 @c remember correctly, be interpreted more like a8.. a32 (in the french | 2903 @c remember correctly, be interpreted more like a8.. a32 (in the french |
2905 @c style). The editor might want to show that rythmic figure above the | 2904 @c style). The editor might want to show that rythmic figure above the |
2906 @c staff as an hint to performers. (Karl Hammer) | 2905 @c staff as an hint to performers. (Karl Hammer) |
2907 | 2906 |
2908 | 2907 |
2909 @c TBC | 2908 @c TBC |
2910 | 2909 |
2911 | 2910 |
2912 @c @seealso | 2911 @c @seealso |
2913 @c ... and reference to other sections ... | 2912 @c ... and reference to other sections ... |
LEFT | RIGHT |