Sha256: 7853260ebfd884ba2d26f4fec2b381064768b2f4634203a9d90917d740411702

Contents?: true

Size: 1.99 KB

Versions: 5

Compression:

Stored size: 1.99 KB

Contents

%%%% Predefined chord modifiers.
%%%% This file is part of LilyPond, the GNU music typesetter.
%%%%
%%%% Copyright (C) 1998--2022 Han-Wen Nienhuys <hanwen@xs4all.nl>
%%%%
%%%% LilyPond is free software: you can redistribute it and/or modify
%%%% it under the terms of the GNU General Public License as published by
%%%% the Free Software Foundation, either version 3 of the License, or
%%%% (at your option) any later version.
%%%%
%%%% LilyPond is distributed in the hope that it will be useful,
%%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
%%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
%%%% GNU General Public License for more details.
%%%%
%%%% You should have received a copy of the GNU General Public License
%%%% along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.

\version "2.21.0"

chordmodifiers = #default-chord-modifier-list

whiteTriangleMarkup = \markup {
  \fontsize #-3 \triangle ##f
  %%  394 capital delta
  %#(ly:wide-char->utf-8 #x0394)

  %% 2206 : delta from the symbol font.
  %   #(ly:wide-char->utf-8 #x2206)

  %% up pointing triangle
  % #(ly:wide-char->utf-8 #x25B3)
}

blackTriangleMarkup = \markup {
  \fontsize #-3 \triangle ##t

  %% black up pointing triangle
%  #(ly:wide-char->utf-8 #x25B2)
}

whiteCircleMarkup = \markup {
  %% b0 is the degree sign. No need for \super here.
  \fontsize #2 #(ly:wide-char->utf-8 #x00b0)
}

ignatzekExceptionMusic = {
  <c e gis>-\markup { "+" }
  <c es ges>-\markup { \whiteCircleMarkup }
  <c es ges bes>-\markup {
    %%  f8 is o with slash.
    \super #(ly:wide-char->utf-8 #x00f8)
  }
  <c es ges beses>-\markup \concat { \whiteCircleMarkup \super  "7" }
  <c e g b fis'>-\markup { \super "lyd" } % Lydian
  <c e g bes des' ees' fis' aes'>-\markup { \super "alt" } % altered chord (super-Locrian)
  %% Power chords should be printed by default:
  <c g>-\markup { \super "5" }
  <c g c'>-\markup { \super "5" }
}

ignatzekExceptions  =
#(sequential-music-to-chord-exceptions ignatzekExceptionMusic #t)

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
LilyPond-Ruby-0.1.5.3 lilypond-2.24.1/share/lilypond/2.24.1/ly/chord-modifiers-init.ly
LilyPond-Ruby-0.1.5.2 lilypond-2.24.1/share/lilypond/2.24.1/ly/chord-modifiers-init.ly
LilyPond-Ruby-0.1.5 lilypond-2.24.1/share/lilypond/2.24.1/ly/chord-modifiers-init.ly
LilyPond-Ruby-0.1.3 share/lilypond/2.24.1/ly/chord-modifiers-init.ly
LilyPond-Ruby-0.1.2 share/lilypond/2.24.1/ly/chord-modifiers-init.ly