[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: \transpose and \quote
From: |
Erik Sandberg |
Subject: |
Re: \transpose and \quote |
Date: |
Tue, 28 Sep 2004 00:26:48 +0200 |
User-agent: |
KMail/1.6.2 |
added.
On Saturday 25 September 2004 15.23, Werner LEMBERG wrote:
> % important
> % address@hidden
>
> \version "2.3.18"
>
> \header { texidoc = "
> \transpose should handle \quote fragments also. In the example below,
> both hornOne and hornTwo are input as they sound (i.e., in C) so that
> the use of \transposition is inappropriate.
> " }
>
> hornOne = \relative c' {
> c4 d e f | g2 g |
> }
> \addquote "quotedHornOne" \hornOne
>
>
> hornTwo = \relative c' {
> \quote "quotedHornOne" 1 |
> g'2 g |
> }
>
> \score {
> \context Staff {
> \transpose f c' \hornTwo
> }
>
> \paper {
> raggedright = ##t
> }
> }
>
> % EOF