Jump to content

Changing fret orientations: Difference between revisions

From LilyPond wiki
m New category
mNo edit summary
 
Line 10: Line 10:
     c1
     c1
   }
   }
   \new FretBoards {
   \new FretBoards \chordmode {
    \chordmode {
    c1
      c1
    \override FretBoard.fret-diagram-details.orientation =
      \override FretBoard.fret-diagram-details.orientation =
      #'landscape
        #'landscape
    c1
      c1
    \override FretBoard.fret-diagram-details.orientation =
      \override FretBoard.fret-diagram-details.orientation =
      #'opposing-landscape
        #'opposing-landscape
    c1
      c1
    }
   }
   }
   \new Voice {
   \new Voice {

Latest revision as of 16:59, 14 December 2025

Fret diagrams can be oriented in three ways. By default the top string or fret in the different orientations will be aligned.

\version "2.24"

\include "predefined-guitar-fretboards.ly"

<<
  \chords {
    c1
    c1
    c1
  }
  \new FretBoards \chordmode {
    c1
    \override FretBoard.fret-diagram-details.orientation =
      #'landscape
    c1
    \override FretBoard.fret-diagram-details.orientation =
      #'opposing-landscape
    c1
  }
  \new Voice {
    c'1
    c'1
    c'
  }
>>