Skip to content

Instantly share code, notes, and snippets.

@frv-dev
Last active November 7, 2023 03:12
Show Gist options
  • Save frv-dev/abc6380193076ca8466d8ac24b91afa0 to your computer and use it in GitHub Desktop.
Save frv-dev/abc6380193076ca8466d8ac24b91afa0 to your computer and use it in GitHub Desktop.
Lilypond default template for mobile portrait documents.
\version "2.22.1"
\language "english"
\header {
title = "Título"
composer = "compositor"
subtitle = "Descrição adicional."
}
\paper {
#(set-paper-size "statement" 'portrait)
}
% You can use this to change some symbols
% \set majorSevenSymbol = \markup { "7+" }
global = {
\key c \major
\clef G
\tempo 4 = 140
\time 4/4
\numericTimeSignature
}
acordes_estrofe_um = \chordmode {
\global
c1 c1 c1 c1 c1 c1 |
}
partitura_estrofe_um = \relative c' {
\global
c1 c1 c1 c1 c1 c1 |
}
% LETRA
letra_estrofe_um = \lyricmode {
Letra da música vai aqui !
}
<<
\new ChordNames \acordes_estrofe_um
\new Staff \partitura_estrofe_um
\new Lyrics \letra_estrofe_um
>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment