Re: Footnotes for the entire bar

2024-05-18 Thread YTG 1234
ound)))       (for-each        (lambda (grob)    (ly:grob-set-object!     grob     'side-support-elements     (ly:grob-list->grob-array staves)))        grobs))      (set! evs '())      (set! grobs '()) #(ly:register-translator   Footnote_mark_engraver &

Re: Footnotes for the entire bar

2024-05-16 Thread Kieren MacMillan
Hi there, > I want to create footnotes which attach to a specified bar or just a > particular time Did you try attaching it to a mark? e.g. %%% SNIPPET BEGINS \version "2.25.11" \paper { tagline = ##f } fn_ossia = #(define-music-function (os music) (pair? ly:music?) #{

Re: Omit footnotes and footnote text from score

2024-02-28 Thread Timothy Lanfear
On 27/02/2024 17:07, William Rehwinkel via LilyPond user discussion wrote: Dear list, I am wondering if there is a way to omit footnotes and the text that accompanies them from a score. the reason for this is I am making a critical edition of a baroque trio sonata from a manuscript, and

Re: Omit footnotes and footnote text from score

2024-02-27 Thread YTG 123
Hello William, Consider an alternative approach using tags , like what was recommended to me in a slightly different situation (thread linked and attache

Omit footnotes and footnote text from score

2024-02-27 Thread William Rehwinkel via LilyPond user discussion
Dear list, I am wondering if there is a way to omit footnotes and the text that accompanies them from a score. the reason for this is I am making a critical edition of a baroque trio sonata from a manuscript, and would like to use footnotes for editorial changes in the full score and not

Re: vertical spacing of footnotes

2023-02-16 Thread Werner LEMBERG
I've further refined and simplified the footnote spacing example; it is now available in the LSR https://lsr.di.unimi.it/LSR/Item?id=1165 Werner

Re: vertical spacing of footnotes

2023-02-15 Thread Werner LEMBERG
>> However, there is one problem that I don't understand: Why is the >> space between footnotes 3 and 4 (and 4 and 5) larger than between 1 >> and 2 (and 2 and 3)? > > Well, in footnotes 1 and 2, there is only one strut for the two > lines. Try this, [...] Exc

Re: vertical spacing of footnotes

2023-02-14 Thread Jean Abou Samra
Le mardi 14 février 2023 à 15:13 +, Werner LEMBERG a écrit : > Excellent, thanks!  I slowly arrive at some nice results, see attached > code and image.  However, there is one problem that I don't > understand: Why is the space between footnotes 3 and 4 (and 4 and 5) > larger t

Re: vertical spacing of footnotes

2023-02-14 Thread Werner LEMBERG
(grob orig) > #{ \markup { \strut #orig } #})) > ``` Excellent, thanks! I slowly arrive at some nice results, see attached code and image. However, there is one problem that I don't understand: Why is the space between footnotes 3 and 4 (and 4 and 5) larger than between

Re: vertical spacing of footnotes

2023-02-14 Thread Valentin Petzel
Ah sorry, I missread that ... stupid me! Basically the functions that would need support are the primitives: Stencil::add_stencil Stencil::rotate_degrees_absolute (? is there even a meaningful way for doing this or should this just resort to stencil extent?) Stencil::translate Stencil::scale Ste

Re: vertical spacing of footnotes

2023-02-14 Thread Jean Abou Samra
Le mardi 14 février 2023 à 15:02 +0100, Valentin Petzel a écrit : > But \column does have exactly that issue. Column will hickup on "lines" > spanning multiple lines. Precisely. That's why it should receive the lines individually rather than already combined in a stencil. ``` \version "2.24.0"

Re: vertical spacing of footnotes

2023-02-14 Thread Valentin Petzel
But \column does have exactly that issue. Column will hickup on "lines" spanning multiple lines. Another alternative though: A stencil could have optional spacing extents. E.g. when you do a text stencil it will have it’s regular stencil extents, but also also a spacing extent from base line t

Re: vertical spacing of footnotes

2023-02-14 Thread Jean Abou Samra
Le mardi 14 février 2023 à 13:02 +0100, Valentin Petzel a écrit : > As far as I see this is not the problem. Footnotes appear to be simply > stacked > by extent, not by baseline. This already creates issues with footnotes > extending over multiple lines, as the spacing betwe

Re: vertical spacing of footnotes

2023-02-14 Thread Werner LEMBERG
> Maybe it would be useful to be able to override the formatting of > the footnote block, similar to how we have toItemMarkup. We could > allow the user to format footnotes using some footnoteMarkup > callback? This is issue https://gitlab.com/lilypond/lilypond/-/issues/2561 Werner

Re: vertical spacing of footnotes

2023-02-14 Thread Valentin Petzel
As far as I see this is not the problem. Footnotes appear to be simply stacked by extent, not by baseline. This already creates issues with footnotes extending over multiple lines, as the spacing between different footnotes will be less than the spacing between different lines of footnotes

Re: vertical spacing of footnotes

2023-02-14 Thread Jean Abou Samra
Le mardi 14 février 2023 à 07:28 +, Werner LEMBERG a écrit : > * In what context are footnote texts handled?  I want to globally >   adjust `baseline-skip` for my (redefined) `\strut` function, but I'm >   not able to do it. Like all sticky grobs, footnotes are created in th

Re: vertical spacing of footnotes

2023-02-13 Thread Werner LEMBERG
pace #0.5 \fill-line { \override #'(span-factor . 1/2) \draw-hline } \vspace #0.5 } } \markup "time-based footnotes" \relative c'' { r1 | \footnote #'(-0.5 . -1) \markup { \strut "Meter change." } Staff.TimeSignature

Endnotes vis-à-vis footnotes

2023-02-13 Thread Adam M. Griggs
Werner's message here on footnote spacing has reminded me of something I sometimes wish I had in LilyPond: endnotes. Whereas footnotes are printed at the base of each page, endnotes would appear in a block at the end of the score by default, with \pageBreak optional. Also, their appearance

Re: vertical spacing of footnotes

2023-02-13 Thread Jean Abou Samra
on for making equal spacing between the baselines of footnote lines, but it'd be a crutch: it would handle footnotes extending on multiple lines poorly. The real fix would be changing the `Stencil` class to include an additional data member that would be the extent from the baseline of the f

Re: vertical spacing of footnotes

2023-02-13 Thread kieren
Hi all, As can be seen in the attached image, the vertical distances between the footnotes are not identical. What is the recommended way to fix this? Looks like this is due to the presence or absence of descenders. If you added something like "\transparent q" to the end of the m

Re: vertical spacing of footnotes

2023-02-13 Thread Aaron Hill
On 2023-02-13 11:36 am, Werner LEMBERG wrote: As can be seen in the attached image, the vertical distances between the footnotes are not identical. What is the recommended way to fix this? Looks like this is due to the presence or absence of descenders. If you added something like

vertical spacing of footnotes

2023-02-13 Thread Werner LEMBERG
Consider this example. ``` #(set-default-paper-size "a8landscape") \book { \header { tagline = ##f } \markup "time-based footnotes" \relative c'' { r1 | \footnote #'(-0.5 . -1) "Meter change." Staff.TimeSignature \time 3/4 \foo

Re: Footnotes in Lyrics

2023-01-02 Thread Johannes Roeßler
thx Jean and Pierre! Le 02/01/2023 à 11:31, Pierre Perol-Schneider a écrit : Hi Johannes, Here's a little hack: \markup \footnote \null "(1) footnote text" \score { <<   { a' b' c'' d'' c'' b' a' }   \addlyrics {      One two      \markup \concat { three \raise #.7 \teeny (1) }      four five

Re: Footnotes in Lyrics

2023-01-02 Thread Jean Abou Samra
Le 02/01/2023 à 11:31, Pierre Perol-Schneider a écrit : Hi Johannes, Here's a little hack: \markup \footnote \null "(1) footnote text" \score { <<   { a' b' c'' d'' c'' b' a' }   \addlyrics {      One two      \markup \concat { three \raise #.7 \teeny (1) }      four five six se -- ven   }   >>

Re: Footnotes in Lyrics

2023-01-02 Thread Pierre Perol-Schneider
se -- ven } >> } HTH, Cheers, Pierre Le lun. 2 janv. 2023 à 10:50, Johannes Roeßler a écrit : > Hi Group and a Happy 2023! > > I have trouble using footnotes in lyrics (lyrics directly in the score.. > not below...) - I got rid of the annotation line successfully - but the &

Footnotes in Lyrics

2023-01-02 Thread Johannes Roeßler
Hi Group and a Happy 2023! I have trouble using footnotes in lyrics (lyrics directly in the score.. not below...) - I got rid of the annotation line successfully - but the position of the footnote number is terrible - and the tweaks are not "small" enough to find a good position.

RE: footnotes to lyrics

2022-08-03 Thread Mogens Lemvig Hansen
To: Mogens Lemvig Hansen; lilypond-user@gnu.org Subject: Re: footnotes to lyrics > Le 01/08/2022 16:51 CEST, Mogens Lemvig Hansen a écrit : > > > How do I get a footnote to lyrics – is it even possible. In the example > below, “Sing” doesn’t get a footnote mark, “this doesn’t” v

Re: footnotes to lyrics

2022-08-03 Thread Jean Abou Samra
11" > > \markup { Some \auto-footnote regular "this works" text. } > > \score { > { c d e f g } > \addlyrics { \markup { \auto-footnote Sing "this doesn't" } an -- oth -- er > song. } > } It's quite more complicated, but possible. There

footnotes to lyrics

2022-08-01 Thread Mogens Lemvig Hansen
How do I get a footnote to lyrics – is it even possible. In the example below, “Sing” doesn’t get a footnote mark, “this doesn’t” vanishes, and no error message is given. \version "2.23.11" \markup { Some \auto-footnote regular "this works" text. } \score { { c d e f g } \addlyrics { \mar

Re: (Solved)Re: To get rid of the horizontal line before the footnotes?

2022-02-07 Thread Richard Shann
Richard Shann a écrit : >     > > On Sat, 2022-02-05 at 11:30 +, Richard Shann wrote: >     > > > Is there a way to drop the line that is drawn below the > systems >     > > > above >     > > > the footnotes? >     > > Sorry for askin

Re: (Solved)Re: To get rid of the horizontal line before the footnotes?

2022-02-07 Thread Carl Sorensen
there a way to drop the line that is drawn below the systems > > > above > > > the footnotes? > > Sorry for asking before searching the mailing-list archives, > > > > \paper { footnote-separator-markup = ##f } > > > > is t

Re: (Solved)Re: To get rid of the horizontal line before the footnotes?

2022-02-07 Thread Richard Shann
On Mon, 2022-02-07 at 13:41 +0100, Jean Abou Samra wrote: > Le 05/02/2022 à 12:50, Richard Shann a écrit : > > On Sat, 2022-02-05 at 11:30 +, Richard Shann wrote: > > > Is there a way to drop the line that is drawn below the systems > > > above > > > the fo

Re: (Solved)Re: To get rid of the horizontal line before the footnotes?

2022-02-07 Thread Jean Abou Samra
Le 05/02/2022 à 12:50, Richard Shann a écrit : On Sat, 2022-02-05 at 11:30 +, Richard Shann wrote: Is there a way to drop the line that is drawn below the systems above the footnotes? Sorry for asking before searching the mailing-list archives, \paper { footnote-separator-markup = ##f

(Solved)Re: To get rid of the horizontal line before the footnotes?

2022-02-05 Thread Richard Shann
On Sat, 2022-02-05 at 11:30 +, Richard Shann wrote: > Is there a way to drop the line that is drawn below the systems above > the footnotes? Sorry for asking before searching the mailing-list archives, \paper { footnote-separator-markup = ##f } is the answer I see. The docs often

To get rid of the horizontal line before the footnotes?

2022-02-05 Thread Richard Shann
Is there a way to drop the line that is drawn below the systems above the footnotes? Richard Shann

Re: Left-align the horizontal line that separates footnotes from the body of the score

2020-10-18 Thread Jun Tamura
> > On 18/10/2020 12:25, Jun Tamura wrote: >> Hello, >> >> There is a horizontal line between the footnotes and the body of the score. >> The length seems to be a half of the page width and aligned to the center of >> the page in default. How can I change

Re: Left-align the horizontal line that separates footnotes from the body of the score

2020-10-18 Thread Phil Holmes
, Jun Tamura wrote: Hello, There is a horizontal line between the footnotes and the body of the score. The length seems to be a half of the page width and aligned to the center of the page in default. How can I change the length and horizontal position of the line? Quite often footnotes are

Re: Left-align the horizontal line that separates footnotes from the body of the score

2020-10-18 Thread Pierre Perol-Schneider
Hi Jun, Try: \paper { footnote-separator-markup = ##f } Cheers, Pierre Le dim. 18 oct. 2020 à 13:25, Jun Tamura a écrit : > Hello, > > There is a horizontal line between the footnotes and the body of the > score. The length seems to be a half of the page width and aligned to the

Left-align the horizontal line that separates footnotes from the body of the score

2020-10-18 Thread Jun Tamura
Hello, There is a horizontal line between the footnotes and the body of the score. The length seems to be a half of the page width and aligned to the center of the page in default. How can I change the length and horizontal position of the line? Quite often footnotes are rather short. In such

Re: Footnotes on rest markups

2020-07-09 Thread Martin Brown
Thank you for your assistance and that will work - except that the footnotes will not appear on the same page as the rest to which they refer (if the music is over more than one page). Curiously, footnotes on a rest which is followed immediately by a note do appear as desired: \version "2

Re: Footnotes on rest markups

2020-07-09 Thread Pierre Perol-Schneider
ll but complete (i.e. runnable) example including your version number. Le jeu. 9 juil. 2020 à 09:35, Martin Brown a écrit : > Hello Lilypond residents, > > I would really like to be able to add footnotes to markup text applied to > rests (whole bars). I'm typesetting some Mahler and

Footnotes on rest markups

2020-07-09 Thread Martin Brown
Hello Lilypond residents, I would really like to be able to add footnotes to markup text applied to rests (whole bars). I'm typesetting some Mahler and every second multi bars rest has a long German string which I'd like to add the translation to as a footnote (ideally with aut

Re: Critical-edition-style footnotes

2019-11-17 Thread Ben
On 11/16/2019 2:57 PM, Stacy Fatemi wrote: Hey all, I’ve been wanting to add footnotes to a score that include miniature-sized scores like in this critical edition of Pictures at an Exhibition. I know \score can be contained within \markup and I know EPS files can be embedded, but what’s the

Re: Critical-edition-style footnotes

2019-11-17 Thread Pierre Perol-Schneider
d, \melismaEnd d1 > > > > > > HTH > > Rémy > > > > > Message du 17/11/19 02:34 > > De : "Carl Sorensen" > > A : "Stacy Fatemi" , "lilypond-user@gnu.org" < > lilypond-user@gnu.org> > > Copie à : > >

Re: Critical-edition-style footnotes

2019-11-16 Thread Remy CLAVERIE
"Stacy Fatemi" , "lilypond-user@gnu.org" > Copie à : > Objet : Re: Critical-edition-style footnotes > >     From: Stacy Fatemi > Date: Saturday, November 16, 2019 at 12:57 PM > To: > Subject: Critical-edition-style footnotes   Hey all,

Re: Critical-edition-style footnotes

2019-11-16 Thread Carl Sorensen
From: Stacy Fatemi Date: Saturday, November 16, 2019 at 12:57 PM To: Subject: Critical-edition-style footnotes Hey all, I’ve been wanting to add footnotes to a score that include miniature-sized scores like in this critical edition of Pictures at an Exhibition. I know \score can be

Re: Footnotes

2017-10-30 Thread Ben
On 10/30/2017 2:35 AM, Malte Meyn wrote: Am 30.10.2017 um 07:21 schrieb Dave Hartley: On 30 October 2017 at 12:33, Ben > wrote:     Something like this?     (see attached)     \version "2.19.80"     \relative c''\footnote #'(1 . 2) "Here is your footnote"

Re: Footnotes

2017-10-29 Thread Malte Meyn
Am 30.10.2017 um 07:21 schrieb Dave Hartley: On 30 October 2017 at 12:33, Ben > wrote: Something like this? (see attached) \version "2.19.80" \relative c''\footnote #'(1 . 2) "Here is your footnote" a Not really, I want to be able to su

Re: Footnotes

2017-10-29 Thread Dave Hartley
On 10/29/2017 5:41 PM, Dave Hartley wrote: I'm currently typesetting some music for our school choir, SATB with a piano part and a small percussion part. I *tried* to get some additional directions to the performers inserted as footnotes, but I don't seem to be able to get the fo

Re: Footnotes

2017-10-29 Thread Ben
On 10/29/2017 5:41 PM, Dave Hartley wrote: I'm currently typesetting some music for our school choir, SATB with a piano part and a small percussion part. I /tried/ to get some additional directions to the performers inserted as footnotes, but I don't seem to be able to get the fo

Re: Footnotes

2017-10-29 Thread Ben
On 10/29/2017 5:41 PM, Dave Hartley wrote: I'm currently typesetting some music for our school choir, SATB with a piano part and a small percussion part. I /tried/ to get some additional directions to the performers inserted as footnotes, but I don't seem to be able to get the fo

Footnotes

2017-10-29 Thread Dave Hartley
I'm currently typesetting some music for our school choir, SATB with a piano part and a small percussion part. I *tried* to get some additional directions to the performers inserted as footnotes, but I don't seem to be able to get the footnotes in *\markup attached to notes* working at

Re: Footnotes for subtitle

2017-01-29 Thread Jean Bréfort
t; Eschersheimer Landstr. 29-39 > 60322 Frankfurt am Main > > > Am Sonntag, den 29. Januar 2017 um 13:32:36 Uhr (+0100) schrieb Amir > Teymuri: > > Hello Pierre, > > > > many thanks for your help. The line i am writing in there footnote > > is longer than one li

Re: Footnotes for subtitle

2017-01-29 Thread Orm Finnendahl
g goes beyond the page. Do you know how > to arrange the length of the footnotes to match into the page? > > Bests, > Amir > > On Sun, 29 Jan 2017 09:13:26 +0100 > Pierre Perol-Schneider wrote: > > > Hi Amir, > > For some reason the LSR is not reachable for the m

Re: Footnotes for subtitle

2017-01-29 Thread Amir Teymuri
Hello Pierre, many thanks for your help. The line i am writing in there footnote is longer than one line and hence the remaining goes beyond the page. Do you know how to arrange the length of the footnotes to match into the page? Bests, Amir On Sun, 29 Jan 2017 09:13:26 +0100 Pierre Perol

Re: Footnotes for subtitle

2017-01-29 Thread Pierre Perol-Schneider
Hi Amir, For some reason the LSR is not reachable for the moment but there is a snippet about footnotes in a header. Try: \version "2.18.2" \header { subtitle = "subtitle*" tagline = #f } \markup { \null \footnote \null \italic \concat { "*" \hspace #.3 "su

Re: Footnotes for subtitle

2017-01-28 Thread Simon Albrecht
On 28.01.2017 22:38, Amir Teymuri wrote: Hello, is it possible to right a footnote about a word in the subtitle of the piece? Yes, it is. Check out the markup command \footnote. Best, Simon ___ lilypond-user mailing list lilypond-user@gnu.org https

Footnotes for subtitle

2017-01-28 Thread Amir Teymuri
Hello, is it possible to right a footnote about a word in the subtitle of the piece? Regards, Amir ... Amir Teymuri X-Mailer: Sylpheed 3.5.0beta1 (GTK+ 2.24.25; x86_64-pc-linux-gnu) ___

Re: GSoC update; Q's about final/draft modes, and triggering footnotes

2016-07-07 Thread Jeffery Shivers
Absolutely - in fact, using the presence of offset to indicate *I'm a footnote* was just a practical solution since I am sure some projects won't *always* want annotations to become footnotes, and with this check wouldn't need to specify explicitly *when* and *when not*. However,

Re: GSoC update; Q's about final/draft modes, and triggering footnotes

2016-07-04 Thread Simon Albrecht
On 05.07.2016 03:31, Jeffery Shivers wrote: Since offset is presumably always going to be used for footnotes, I think *that* should be what triggers the footnote. So, inclusion of `offset = #'(...)` will tell scholarLY that the annotation is a footnote; otherwise it *isn't*. If it&#

Re: GSoC update; Q's about final/draft modes, and triggering footnotes

2016-07-04 Thread Jeffery Shivers
​This footnote feature is now up-and-running, for those who are interested. https://github.com/openlilylib/scholarly/tree/footnotes-feature There is an example doc also: usage-examples​/footnote-trigger-test.ly -j On Mon, Jul 4, 2016 at 9:31 PM, Jeffery Shivers wrote: > Now offset

Re: GSoC update; Q's about final/draft modes, and triggering footnotes

2016-07-04 Thread Jeffery Shivers
message = "my message; could be a footnote too" offset = #'(1 . 1)% tells scholarLY to make a footnote of this footnote = "this could be a shorter footnote than message, and will become the footnote if used" } ... Since offset is presumably always

Re: GSoC update; Q's about final/draft modes, and triggering footnotes

2016-07-03 Thread Urs Liska
Am 03.07.2016 um 14:48 schrieb Simon Albrecht: > On 03.07.2016 03:34, Jeffery Shivers wrote: >> I'd appreciate any thoughts on the following syntax for implementing >> footnotes with annotations: >> >> \criticalRemark \with { >> message = "my annota

Re: GSoC update; Q's about final/draft modes, and triggering footnotes

2016-07-03 Thread Simon Albrecht
On 03.07.2016 03:34, Jeffery Shivers wrote: I'd appreciate any thoughts on the following syntax for implementing footnotes with annotations: \criticalRemark \with { message = "my annotation" } #'(1 . 2) "my footnote" Slur a4_\the-footnote-hook ( .

Re: GSoC update; Q's about final/draft modes, and triggering footnotes

2016-07-02 Thread Jeffery Shivers
preciate any thoughts on the following syntax for implementing > footnotes with annotations: > > \criticalRemark \with { > message = "my annotation" > } #'(1 . 2) "my footnote" Slur a4_\the-footnote-hook ( ... > > vs. > > \criticalRemark \with {

Re: GSoC update; Q's about final/draft modes, and triggering footnotes

2016-07-02 Thread Jeffery Shivers
I'd appreciate any thoughts on the following syntax for implementing footnotes with annotations: \criticalRemark \with { message = "my annotation" } #'(1 . 2) "my footnote" Slur a4_\the-footnote-hook ( ... vs. \criticalRemark \with { message = "my an

Re: GSoC update; Q's about final/draft modes, and triggering footnotes

2016-06-29 Thread Paul
On 06/29/2016 10:03 AM, Urs Liska wrote: Implementation-wise it is basically nothing to add another mode by simply allowing additional values for the "mode" option. Packages can also quite easily implement that by extending the conditionals in their functions to respond to more than two modes.

Re: GSoC update; Q's about final/draft modes, and triggering footnotes

2016-06-29 Thread Jeffery Shivers
> > Both lilypond and LaTeX have steep learning curves ​ One of the conditions of the package ​, in my mind,​ is to make ​its ​ usage possible at ​the ​highest​ ​ level, but configurable at the lowest. ​LaTeX is such a powerful utility, and in this case should really extend our workflows (and no

Re: GSoC update; Q's about final/draft modes, and triggering footnotes

2016-06-29 Thread Urs Liska
Am 29.06.2016 um 15:12 schrieb Paul: > Hi Jeffrey, > > It's good to hear about your progress! Just a thought about modes... > > On 06/27/2016 07:50 PM, Jeffery Shivers wrote: >> ***Final/"draft" Modes*** >> OpenLilyLib will ideally be used in final/draft/etc. modes in order to >> toggle between

Re: GSoC update; Q's about final/draft modes, and triggering footnotes

2016-06-29 Thread Paul
Hi Jeffrey, It's good to hear about your progress! Just a thought about modes... On 06/27/2016 07:50 PM, Jeffery Shivers wrote: ***Final/"draft" Modes*** OpenLilyLib will ideally be used in final/draft/etc. modes in order to toggle between fancy/plain settings, or really whatever the user deci

Re: GSoC update; Q's about final/draft modes, and triggering footnotes

2016-06-29 Thread Graham King
Speaking for myself, I have used \criticalRemark, but until it can produce lilypond/score footnotes it is little more than an elaborate comment in the source code. Once it can produce such footnotes, we'll be able to use it to greater effect, your user base will grow, we'll be in a positi

GSoC update; Q's about final/draft modes, and triggering footnotes

2016-06-27 Thread Jeffery Shivers
ntial details soon, and ideally all will be wrapped in some sort of early documentation along with the package and example docs. I would like to ask for some feedback regarding two general topics. ***Footnotes*** Currently, in the annotation interface, we can set an `ann-footnote` property which is se

Re: Scholarly footnotes

2015-11-13 Thread Urs Liska
Am 13. November 2015 13:29:30 MEZ, schrieb Graham King : >On Thu, 2015-11-12 at 12:45 +0100, Urs Liska wrote: > >> >> Am 12.11.2015 um 09:09 schrieb Urs Liska: >> > Having had a night over it I realized that there is an obvious >first >> > step towards b) and c) and that the infrastructure is a

Re: Scholarly footnotes

2015-11-13 Thread Simon Albrecht
On 13.11.2015 13:29, Graham King wrote: I might struggle a bit at first to get from Scheme to lilypond markup In case you don’t know about that already: might help. Yours, Simon __

Re: Scholarly footnotes

2015-11-13 Thread Graham King
On Thu, 2015-11-12 at 12:45 +0100, Urs Liska wrote: > > Am 12.11.2015 um 09:09 schrieb Urs Liska: > > Having had a night over it I realized that there is an obvious first > > step towards b) and c) and that the infrastructure is already there for it! > > I will add support for writing out the raw

Re: Scholarly footnotes

2015-11-12 Thread Urs Liska
Am 12.11.2015 um 09:09 schrieb Urs Liska: > Having had a night over it I realized that there is an obvious first > step towards b) and c) and that the infrastructure is already there for it! > I will add support for writing out the raw Scheme object and simply > integrate it as an additional expo

Re: Scholarly footnotes

2015-11-12 Thread Urs Liska
Am 11.11.2015 um 19:16 schrieb Urs Liska: > > > Am 10.11.2015 um 17:39 schrieb Urs Liska: >> >> >> Am 10.11.2015 um 17:08 schrieb Graham King: >>> ... long snip ... >>> >>> I confess I'm a bit daunted by the LaTeX learning curve, and it is >>> possible that I'm not uniquely inadequate in that re

Re: Scholarly footnotes

2015-11-11 Thread Urs Liska
Am 10.11.2015 um 17:39 schrieb Urs Liska: > > > Am 10.11.2015 um 17:08 schrieb Graham King: >> ... long snip ... >> >> I confess I'm a bit daunted by the LaTeX learning curve, and it is >> possible that I'm not uniquely inadequate in that respect. So a >> Lilypond-only solution would be ideal f

Re: Scholarly footnotes

2015-11-10 Thread Urs Liska
Am 10.11.2015 um 17:08 schrieb Graham King: > ... long snip ... > > I confess I'm a bit daunted by the LaTeX learning curve, and it is > possible that I'm not uniquely inadequate in that respect. So a > Lilypond-only solution would be ideal for me, and would save others > the prospect of learni

Re: Scholarly footnotes

2015-11-10 Thread Graham King
> Am 09.11.2015 um 17:33 schrieb Graham King: > > > > > I'm preparing an edition of sixteenth-century polyphony, using the > > book-titling template[1]. The edition would benefit from some > > footnotes/endnotes (the sort that say things like: "contratenor 1, &

Development projects (was: Scholarly footnotes)

2015-11-10 Thread Urs Liska
LY. > > > Urs > > > Am 09.11.2015 um 17:33 schrieb Graham King: >> I'm preparing an edition of sixteenth-century polyphony, using >> the book-titling template[1]. The edition would benefit from >> some footnotes/endnotes (the sort that say

Re: Scholarly footnotes

2015-11-10 Thread Urs Liska
Hi Graham, now I'll try to go into that somewhat more detailed. Am 09.11.2015 um 17:33 schrieb Graham King: > I'm preparing an edition of sixteenth-century polyphony, using the > book-titling template[1]. The edition would benefit from some > footnotes/endnotes (the sort t

Re: Scholarly footnotes

2015-11-09 Thread Craig Dabelstein
ham King: > > I'm preparing an edition of sixteenth-century polyphony, using the > book-titling template[1]. The edition would benefit from some > footnotes/endnotes (the sort that say things like: "contratenor 1, bar 99: > semiminim A missing in MS"). How best to ach

Re: Scholarly footnotes

2015-11-09 Thread Urs Liska
preparing an edition of sixteenth-century polyphony, using the > book-titling template[1]. The edition would benefit from some > footnotes/endnotes (the sort that say things like: "contratenor 1, bar > 99: semiminim A missing in MS"). How best to achieve this, while > prese

Scholarly footnotes

2015-11-09 Thread Graham King
I'm preparing an edition of sixteenth-century polyphony, using the book-titling template[1]. The edition would benefit from some footnotes/endnotes (the sort that say things like: "contratenor 1, bar 99: semiminim A missing in MS"). How best to achieve this, while preserving th

Re: Footnotes and lilypond book

2015-08-08 Thread David Kastrup
Alberto Simões writes: > On 05/08/15 19:25, David Kastrup wrote: >> Alberto Simões writes: >> >>> Hello >>> >>> I am trying to use lilypond book, and it seems that footnotes are not >>> rendered. >>> >>> A (non minimal) examp

Re: Footnotes and lilypond book

2015-08-08 Thread Alberto Simões
On 05/08/15 19:25, David Kastrup wrote: Alberto Simões writes: Hello I am trying to use lilypond book, and it seems that footnotes are not rendered. A (non minimal) example is in attach. Am I doing anything wrong? Is there any easy solution? LilyPond documentation is typeset using

Re: Footnotes and lilypond book

2015-08-06 Thread Víctor
/08/15 a las 13:15, Alberto Simões escribió: Hello I am trying to use lilypond book, and it seems that footnotes are not rendered. A (non minimal) example is in attach. Am I doing anything wrong? Is there any easy solution? Thank you in advance, Alberto

Re: Footnotes and lilypond book

2015-08-05 Thread David Kastrup
Alberto Simões writes: > Hello > > I am trying to use lilypond book, and it seems that footnotes are not > rendered. > > A (non minimal) example is in attach. > Am I doing anything wrong? > Is there any easy solution? LilyPond documentation is typeset using lilypond-bo

Footnotes and lilypond book

2015-08-05 Thread Alberto Simões
Hello I am trying to use lilypond book, and it seems that footnotes are not rendered. A (non minimal) example is in attach. Am I doing anything wrong? Is there any easy solution? Thank you in advance, Alberto \documentclass[twoside,a4paper,11pt]{article} \usepackage[utf8]{inputenc

Thanks for the help with the footnotes and the pedal brackets!

2014-12-22 Thread Ted Lemon
Thanks to Kieran, David, Trevor and Klaus for all the help on this. If anyone's curious, a reasonably final version of the score is available here: https://github.com/Abhayakara/music/blob/master/romanza.pdf?raw=true And the source is here: https://github.com/Abhayakara/music/blob/master/roma

Re:Staves as footnotes, and some random layout issues.

2014-12-22 Thread Klaus Blum
Hi Ted, working with "real" footnotes seems to be possible but extremely tricky. I've got no idea of that. As all this happens on the first page, you could "abuse" the copyright markup in the \header

Re:Staves as footnotes, and some random layout issues.

2014-12-22 Thread Klaus Blum
Hi Ted, for having the blank space on the bottom, add a \paper - block like this: \paper { ragged-last-bottom = ##f ragged-bottom = ##f } Eliminating the treble clef and shrinking the score snippet is easy, see below. Unfortunately, "layout-set-staff-size" only affects the notes, but no

Re: Staves as footnotes, and some random layout issues.

2014-12-22 Thread Trevor Daniels
Ted, you wrote Monday, December 22, 2014 10:32 PM > On Dec 22, 2014, at 5:30 PM, Ted Lemon wrote: > The second problem, which I failed to mention, is that I can't figure out why > there's all that extra padding between the systems on the first page. It > looks terrible--I'd rather have the

Re: Staves as footnotes, and some random layout issues.

2014-12-22 Thread Trevor Daniels
nd I can't see how to scale them. I think using LilyPond's \footnote would help. See http://www.lilypond.org/doc/v2.19/Documentation/notation/creating-footnotes It can be a bit messy to use, and some of the functionality is less than desirable, but it should be able to improve o

Re: Staves as footnotes, and some random layout issues.

2014-12-22 Thread Ted Lemon
On Dec 22, 2014, at 5:30 PM, Ted Lemon wrote: > I'm trying to typeset a rather complicated manuscript and I've run into two > brick walls right at the end of the process. The first is that I can't for > the life of me figure out how lilypond does staff fragments for manuscript > annotation.

Staves as footnotes, and some random layout issues.

2014-12-22 Thread Ted Lemon
I'm trying to typeset a rather complicated manuscript and I've run into two brick walls right at the end of the process. The first is that I can't for the life of me figure out how lilypond does staff fragments for manuscript annotation. If you look at the bottom of the first page of the fol

Re: footnotes in columns?

2014-03-13 Thread Shane Brandes
All right thanks. No more beating head on wall. S. On Thu, Mar 13, 2014 at 2:34 AM, David Kastrup wrote: > Shane Brandes writes: > >> Is there way to get footnotes to break into columns after a certain >> number of them is hit? > > No. The page builder has the incl

Re: footnotes in columns?

2014-03-12 Thread David Kastrup
Shane Brandes writes: > Is there way to get footnotes to break into columns after a certain > number of them is hit? No. The page builder has the inclusion and arrangement of footnotes hardwired into the C++ core. There is no technical necessity for that, but that's the current s

footnotes in columns?

2014-03-12 Thread Shane Brandes
Is there way to get footnotes to break into columns after a certain number of them is hit? Shane ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

  1   2   >