lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Lilypond-book indentation


From: Matthew Syvinski
Subject: Re: Lilypond-book indentation
Date: Fri, 2 Feb 2007 10:11:07 -0500

OK, I have reduced the test case and eliminated dependence on custom package liturgix.  The music still indents.
 
Here is the LaTeX file (pascha.latex):
 
\documentclass[letterpaper,12pt]{article}
\usepackage{pslatex}
\usepackage{multicol}
\usepackage{graphicx}
\setlength{\parindent}{0in}
\oddsidemargin 0.0in
\textwidth 6.5in
\textheight 9.25in
\topmargin 0.0in
\headheight 0.0in
\headsep -0.3in
%\footheight 0.1in
\title{The Paschal Liturgy, including the Reading of the Acts of the Apostles, Midnight Office,
Matins of the Resurrection, and the Divine Liturgy of St. John Chrysostom}
\begin{document}
\begin{center}
\Huge{The Paschal Liturgy}\\*
\Large{comprising the Reading of the Acts of the Apostles,\\*Midnight Office,
Matins of the Resurrection,\\*and the Divine Liturgy of St. John Chrysostom}\\~\\
\end{center}
\section*{Matins of the Resurrection}
\subsection*{Thy Resurrection}
\textit{At midnight, all lights in the church are extinguished, except for one in the altar.
The following is sung thrice by the clergy, then sung continuously by the people during the procession.}
~\\
\textbf{Stichera, Tone Six}
\lilypondfile[quote]{./thyres.ly}
\end{document}
 
------------------------
 
Here is the LilyPond file (thyres.ly)
 
\version "2.10.12"
\include "english.ly"
 
#(set-default-paper-size "letter")
 

\paper{
  left-margin = 0.0\in
  line-width = 6.0\in
}
 
%{
\header {
 tagline = ""
  }
%}
 
sopranoLine =
{
 #(set-accidental-style 'forget)
 \clef treble
 \key g \major
 \set Score.timing = ##f
 \override Staff.TimeSignature #'transparent = ##t
 
g'4 g'\breve g'4 fs'2 g'2^\fermata \bar "|" % bar 1
a'4 a'4 a'4 a'4 a'2 g'2 a'2^\fermata \bar "|" % bar 2
b'4 b'4 b'4 a'2 g'2 fs'2^\fermata \bar "|" % bar 3
g'4 g'4 g'4 g'4 g'4 g'4 g'2 g'4 fs'4^\fermata fs'4^\fermata g'1^\fermata \bar "|." % bar 4
 
}
%{
altoLine =
{
 #(set-accidental-style 'forget)
 \clef treble
 \key g \major
 \set Score.timing = ##f
 \override Staff.TimeSignature #'transparent = ##t
 
}
 
tenorLine =
{
 
 #(set-accidental-style 'forget)
 \clef bass
 \key g \major
 \set Score.timing = ##f
 \override Staff.TimeSignature #'transparent = ##t
 
}
 
bassLine =
{
 
 #(set-accidental-style 'forget)
 \clef bass
 \key g \major
 \set Score.timing = ##f
 \override Staff.TimeSignature #'transparent = ##t
 
}
%}
 
lyricsLine = \lyricmode
{
\set fontSize = #0
 
Thy "resurrection, O Christ" our Sa -- vior \bar "|"
The an -- gels in Hea -- ven sing. \bar "|"
En -- a -- ble us on earth \bar "|"
to glo -- ri -- fy Thee in pur -- i -- ty of heart. \bar "|"
 
}
 

\score
{
 <<
 \new Voice = "upper"
  {
   \autoBeamOff
   \sopranoLine
  }
 \new Lyrics \lyricsto "upper" \lyricsLine
 >>
 
\layout { ragged-right = ##f indent = 0.0\in line-width=6.0\in}
}

reply via email to

[Prev in Thread] Current Thread [Next in Thread]