Jump to content

Basic Roman numeral and figured bass analysis: Difference between revisions

From LilyPond wiki
No edit summary
m Lemzwerg moved page Basic Roman Numeral and Figured Bass Analysis to Basic Roman numeral and figured bass analysis without leaving a redirect: Only the first letter of a title should be uppercase
 
(One intermediate revision by the same user not shown)
Line 26: Line 26:
[[Category:Specific notation]]
[[Category:Specific notation]]
[[Category:Text]]
[[Category:Text]]
[[Category:Chords]][[Category:Snippet]]
[[Category:Chords]]
[[Category:Snippet]]

Latest revision as of 05:18, 24 November 2025

If you need to create some basic roman numeral and figured bass analysis within the body of a score, you can create a staff with the standard engravers removed and add markup to spaces.

\version "2.24"

\paper { tagline = ##f }

<<
  \new Staff \relative c' {
    <c e g>2 <c f a> | <c e g> <b d g> | <c e g>1 |
  }
  
  \new Staff \with {
      \remove "Staff_symbol_engraver"
      \remove "Time_signature_engraver"
      \remove "Clef_engraver"
    } {
      s2^\markup { \halign #2 C: I }
      s^\markup { \super \column { 6 \vspace #-0.4 4 } } |
      s^\markup { \super \column { 5 \vspace #-0.4 3 } }
      s^\markup { \lower #1 "V" \super \column { 6 \vspace #-0.5 3 } } |
      s1^\markup "I"
    }
>>