%% Generated by lilypond-book
%% Options: [exampleindent=10.16\mm,indent=0\mm,line-width=160\mm,quote]
\include "lilypond-book-preamble.ly"


% ****************************************************************
% Start cut-&-pastable-section
% ****************************************************************

#(ly:set-option 'eps-box-padding 3.000000)



\paper {
  indent = 0\mm
  line-width = 160\mm
  % offset the left padding, also add 1mm as lilypond creates cropped
  % images with a little space on the right
  line-width = #(- line-width (* mm  3.000000) (* mm 1))
  line-width = 160\mm - 2.0 * 10.16\mm
  % offset the left padding, also add 1mm as lilypond creates cropped
  % images with a little space on the right
  line-width = #(- line-width (* mm  3.000000) (* mm 1))
}

\layout {
  
}




% ****************************************************************
% ly snippet:
% ****************************************************************
\sourcefilename "snippets/chord-glissando-in-tablature.ly"
\sourcefileline 0
%% DO NOT EDIT this file manually; it was automatically
%% generated from the LilyPond Snippet Repository
%% (http://lsr.di.unimi.it).
%%
%% Make any changes in the LSR itself, or in
%% `Documentation/snippets/new/`, then run
%% `scripts/auxiliar/makelsr.pl`.
%%
%% This file is in the public domain.

\version "2.23.13"

\header {
%% Translation of GIT committish: a8a85e19654e46d725563e6deba44083ef137a2c
  texidocja = "
和音のスライドはデフォルトで @code{Staff} と @code{TabStaff} の両方に@c
表示されます。@code{TabStaff} では、弦番号の自動計算の方法が和音と単一音で@c
異なるため、弦番号が必要です。
"
  doctitleja = "タブ譜での和音のグリッサンド"

%% Translation of GIT committish: 2f3474d9af596d677ed5b7ce720ae4d0954a6b51
  texidocit = "
I glissati (o slide) di accordi vengono indicati sia nel rigo (contesto
@code{Staff}) sia nell'intavolatura (contesto @code{TabStaff}). I numeri
di corda sono necessari per @code{TabStaff}, perché i calcoli automatici
della corda sono diversi per gli accordi e per le note singole.
"
  doctitleit = "Glissando di accordi in intavolatura"

%% Translation of GIT committish: a3fd5364fc4f247579da0ed2bfea887ab37285c6
  texidocfr = "
Un glissando sur des accords s'indique dans un @code{TabStaff} de la
même manière que dans un @code{Staff}, à ceci près que nous aurons
besoin des numéros de corde afin de déterminer correctement les frets
d'arrivée.
"

  doctitlefr = "Glissando d'accords et tablature"

%% Translation of GIT committish: ff9ca62acddb818b7788d7818a5c7eb0ddb6cdcb
  texidoces = "
Los deslizamientos para acordes se indican por omisión tanto en el contexto
@code{Staff} como en @code{TabStaff}.  Los números de cuerda son
necesarios para TabStaff porque los cálculos de cuerda automáticos son
diferentes para los acordes y para notas sueltas.

"
  doctitlees = "Glissando de acordes en tablatura"

%% Translation of GIT committish: f86f00c1a8de0f034ba48506de2801c074bd5422
  texidocde = "
Gleiten von Akkorden kann sowohl im normalen Notensystem als auch in einer
Tabulatur notiert werden.  Saitennummern werden für Tabulaturen
benötigt, weil die automatische Saitenberechnung unterschiedlich für
Akkorde und einzelne Noten funktioniert.
"
  doctitlede = "Akkordglissando in Tabulaturen"


%% Translation of GIT committish: ff9ca62acddb818b7788d7818a5c7eb0ddb6cdcb
  texidocca = "
Els lliscaments per a acords s'indiquen per omissió tant al context
@code{Staff} com a @code{TabStaff}.  Els nombres de corda són
necessaris per a TabStaff perquè els càlculs de corda automàtics són
diferents per als acords i per a les notes soltes.

"
  doctitleca = "Glissando d'acords en tabulatura"

  lsrtags = "fretted-strings"

  texidoc = "
Slides for chords are indicated by default in both @code{Staff} and
@code{TabStaff}.

String numbers are necessary for @code{TabStaff} because automatic
string calculations are different for chords and for single notes.
"

  doctitle = "Chord glissando in tablature"
} % begin verbatim


myMusic = \relative c' {
  <c e g>1 \glissando <f a c>
}

\score {
  <<
    \new Staff {
      \clef "treble_8"
      \myMusic
    }
    \new TabStaff \myMusic
  >>
}

\score {
  <<
    \new Staff {
      \clef "treble_8"
      \myMusic
    }
    \new TabStaff \with { \override Glissando.style = #'none } {
      \myMusic
    }
  >>
}



% ****************************************************************
% end ly snippet
% ****************************************************************
