%% DO NOT EDIT this file manually; it is automatically %% generated from LSR http://lsr.dsi.unimi.it %% Make any changes in LSR itself, or in Documentation/snippets/new/ , %% and then run scripts/auxiliar/makelsr.py %% %% This file is in the public domain. \version "2.14.2" \header { lsrtags = "tweaks-and-overrides, text" %% Translation of GIT committish: 1cda7b7b8219cb97399b8e7b56c1115aaf82c002 texidocfr = " Les familles de fontes par défaut pour le texte peuvent être changées à l'aide de la fonction @code{make-pango-font-tree}. " doctitlefr = "Changement des fontes textuelles par défaut" texidoc = " The default font families for text can be overridden with @code{make-pango-font-tree}. " doctitle = "Changing the default text font family" } % begin verbatim \paper { % change for other default global staff size. myStaffSize = #20 %{ run lilypond -dshow-available-fonts blabla to show all fonts available in the process log. %} #(define fonts (make-pango-font-tree "Times New Roman" "Nimbus Sans" "Luxi Mono" ;; "Helvetica" ;; "Courier" (/ myStaffSize 20))) } \relative c'' { c4^\markup { roman: foo \bold bla \italic bar \italic \bold baz } c'4_\markup { \override #'(font-family . sans) { sans: foo \bold bla \italic bar \italic \bold baz } } c'2^\markup { \override #'(font-family . typewriter) { mono: foo \bold bla \italic bar \italic \bold baz } } }