%% Generated by lilypond-book
%% Options: [exampleindent=10.16\mm,indent=0\mm,line-width=160\mm,paper-height=845.047\pt,paper-width=597.508\pt,papersize='(cons (* 597.508 pt) (* 845.047 pt)),quote]
\include "lilypond-book-preamble.ly"


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

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



\paper {
  #(set-paper-size '(cons (* 597.508 pt) (* 845.047 pt)))
  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 Wiki
%% (https://wiki.lilypond.community).
%%
%% Make any changes in the Wiki itself, or in
%% `Documentation/snippets/new/`, then run
%% `scripts/auxiliar/makelsr.pl`.
%%
%% This file is in the public domain.

\version "2.24.0"

\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: c043783aac6c35926d633aa2daf60ed4f2e7ca7a
  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 pourrions
avoir 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: dd770ad47246ed67e76ddba50852145efba9d67c
  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"

  categories = "Fretted strings"

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

String numbers may be 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>
  <cis, eis gis>1 \glissando <f a c>
  <cis eis gis>1 \glissando <f a c\3>
}

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

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



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