AW: Problems with Barré

2020-10-27 Thread sir.teddy.the.first
Thank you very much. -Ursprüngliche Nachricht- Von: Thomas Morley Gesendet: Dienstag, 27. Oktober 2020 10:10 An: sir.teddy.the.fi...@gmail.com Cc: lilypond-user Betreff: Re: Problems with Barré Am Di., 27. Okt. 2020 um 09:58 Uhr schrieb : > > Hi all, > > I’m using this barré-function

Problems with Barré

2020-10-27 Thread sir.teddy.the.first
Hi all, I’m using this barré-function from the LSR and I’m trying to make it work when the first note (or the last one) is a rest. Here’s the code: \version "2.20.0" guitbarre = #(define-music-function

AW: Differentiate between contexts

2020-07-01 Thread sir.teddy.the.first
Thanks, that's what I was looking for. -Ursprüngliche Nachricht- Von: lilypond-user Im Auftrag von Aaron Hill Gesendet: Mittwoch, 1. Juli 2020 16:36 An: lilypond-user@gnu.org Betreff: Re: Differentiate between contexts On 2020-07-01 7:08 am, sir.teddy.the.fi...@gmail.com wrote: > How

Differentiate between contexts

2020-07-01 Thread sir.teddy.the.first
Hi all, please consider the following snippet: \version "2.20.0" \score { << \new ChordNames = "chrdsI" \chordmode { \set chordChanges = ##t e1:min | 1 | 1 | 1 | 1 | 1 | 1 | 1 | } \new Staff \relative c'{ c1 d e f g a b c | } \new

AW: Use an existing Voice in a polyphonic passage

2020-06-23 Thread sir.teddy.the.first
Thanks Xavier, that was exactly what I was looking for! Von: Xavier Scheuer Gesendet: Dienstag, 23. Juni 2020 16:35 An: sir.teddy.the.fi...@gmail.com Cc: lilypond-user Mailinglist Betreff: Re: Use an existing Voice in a polyphonic passage On Tue, 23 Jun 2020 at 15:59,

Use an existing Voice in a polyphonic passage

2020-06-23 Thread sir.teddy.the.first
Hi all, is there a way to "continue" with the voice "myVoice" in the second polyphonic passage instead of creating a new one so that the lyrics "wordsI" carry on and I don't have to create an additional lyrics context? Thanks in advance %% \version "2.20.0" wordsI

AW: AW: Frescobaldi Sessions

2020-04-12 Thread sir.teddy.the.first
I exported and then imported the key "frescobaldi/sessions" and it worked. I did not need any other keys. > -Ursprüngliche Nachricht- > Von: Federico Bruni > Gesendet: Sonntag, 12. April 2020 21:54 > An: sir.teddy.the.fi...@gmail.com > Cc: 'Urs Liska' ; lilypond-user@gnu.org > Betreff:

AW: Frescobaldi Sessions

2020-04-11 Thread sir.teddy.the.first
Hi, thanks for the response, I’m on Windows. I found “HKEY_CURRENT_USER/Software/frescobaldi/frescobaldi/sessions”. Is that all I have to copy or is anything from “sessiondata” needed as well? Von: Urs Liska Gesendet: Samstag, 11. April 2020 20:44 An: sir.teddy.the.fi...@gmail.com;

Frescobaldi Sessions

2020-04-11 Thread sir.teddy.the.first
Hi all, I'm trying to synchronize my Frescobaldi-installation with a different device. Is there any faster way than exporting and importing every single session on its own, like copying a file where all the sessions are stored? Thanks in advance

AW: Bend before

2020-03-26 Thread sir.teddy.the.first
%%% \version "2.20.0" #(define (make-bend x) (make-music 'BendAfterEvent 'delta-step x)) bend =#(define-music-function (delta) (integer?) (make-bend (* -1 delta))) bendBefore = #(define-music-function (argument)

Change line-thickness of arpeggio brackets

2020-02-10 Thread sir.teddy.the.first
Hi all, is it possible to change the line-thickness of the arpeggio-brackets or do I have to recreate this bracket manually if I want to change anything? \version "2.19.83" \relative c' { \arpeggioBracket 4\arpeggio d e f } The

AW: "Quote" Chord Track in another Staff

2020-02-08 Thread sir.teddy.the.first
Yes, thank you. I tried to do it that way but I always forget the "\etc" so I got an error message. > -Ursprüngliche Nachricht- > Von: Thomas Morley > Gesendet: Samstag, 8. Februar 2020 14:30 > An: sir.teddy.the.fi...@gmail.com > Cc: lilypond-user > Betreff: Re: "Quote" Chord Track in

AW: "Quote" Chord Track in another Staff

2020-02-08 Thread sir.teddy.the.first
If I've understood everything you said correctly, I should have now made all the necessary changes: % \version "2.19.83" quoteChord = #(define-music-function (staffName music) (string? ly:music?) #{ \context ChordNames = #(string-append staffName

AW: "Quote" Chord Track in another Staff

2020-02-08 Thread sir.teddy.the.first
Hi, thank you for this solution. I only made a very small adjustment and now at least I would call it "elegant". I put all the commands needed to "quote" from the chord track into a function, so now I only have to type one command instead of three. I'm not versed enough in using Lilypond to know

"Quote" Chord Track in another Staff

2020-02-08 Thread sir.teddy.the.first
Hi all, please consider the following snippet: % \version "2.19.83" notes = \relative c' { \repeat unfold 8 { c4 d e f | } } otherNotes = \relative c' { c1 d e f g^\markup "C" a^\markup "D" b c } chordTrack = \chordmode { \repeat

Compress "empty" Bars when using a separate variable for structure

2020-01-27 Thread sir.teddy.the.first
Hello All, please consider the following snippet: \version "2.19.83" music = \relative c'{ \compressFullBarRests R1*3 | \repeat unfold 2 {c8 d e fis g a b c} } struct = { \key c \major \tempo 4 = 140 s1 | s1 | s1 | \key g

Re: AW: Odd Behaviour: \break after \repeat

2020-01-24 Thread sir.teddy.the.first
> -Ursprüngliche Nachricht- > Von: lilypond-user bounces+sir.teddy.the.first=gmail@gnu.org> Im Auftrag von Aaron Hill > Gesendet: Freitag, 24. Januar 2020 09:51 > An: lilypond-user@gnu.org > Betreff: Re: AW: Odd Behaviour: \break after \repeat > >

AW: Odd Behaviour: \break after \repeat

2020-01-24 Thread sir.teddy.the.first
Thank you for your answer, David. It does make sense that way. Guess I'll just use "Te_- st" in this case to get rid of the extra hyphen. > -Ursprüngliche Nachricht- > Von: David Wright > Gesendet: Freitag, 24. Januar 2020 02:38 > An: sir.teddy.the.fi...@gmail.com > Cc: 'lilypond-user'

Odd Behaviour: \break after \repeat

2020-01-23 Thread sir.teddy.the.first
Hi everyone, please consider the following snippet: \version "2.19.83" melody = \relative c'' { r2. r4. e | %T69 a,4. fis4.~ fis a | %T70 g1. } words = \lyricmode { Test Test, Test, Te -- st } struct = { \time

German Umlauts in BookOutputName

2019-11-07 Thread sir.teddy.the.first
Hi all, \version "2.19.83" \header { title = "Wächter"} \book { \bookOutputName "Wächter" \score { {c d e f} } } Whenever I run this code, the title itself is correctly displayed with the Umlaut, but the .pdf-File is always named “Wächter.pdf”. I’m on Windows 10. The

AW: Links in PDF-Files

2019-09-21 Thread sir.teddy.the.first
Thank You Guys, you solved my problem! > -Ursprüngliche Nachricht- > Von: Thomas Morley > Gesendet: Freitag, 20. September 2019 20:55 > An: Richard Shann > Cc: Matthew Skala ; > sir.teddy.the.fi...@gmail.com; lilypond-user > Betreff: Re: Links in PDF-Files > > Am Fr., 20. Sept. 2019

Links in PDF-Files

2019-09-20 Thread sir.teddy.the.first
Hi all, whenever I create a pdf document with lilypond, every single note gets a link attached to it. This link looks something like this: "textedit://PathtoMyFile/definitions.ily:1185:38:39" These links do not really bother me, but there are some applications that highlight every link

Custom Markup Command

2019-09-18 Thread sir.teddy.the.first
Hi all, I'm trying to create a custom markup command to display text (in my case a chord name, but it could be any text) over a note. This is what I have so far: %% \version "2.19.83" #(define-markup-command (chord layout props text) (markup?)

Polyrythmic Align Bars

2019-09-16 Thread sir.teddy.the.first
Hi all, I'm not sure if what I'm trying to do is possible, but my problem is the following: % \version "2.19.83" \layout { \context { \Score \remove "Timing_translator" \remove "Default_bar_line_engraver" } \context { \Staff \consists

Retrieve Filename of Current Script

2019-09-10 Thread sir.teddy.the.first
Hi all, what would I have to do in order to retrieve the filename of my current lilypond script so that I can use it as a variable and assign it to the title-field? Thanks ___ lilypond-user mailing list lilypond-user@gnu.org

Set /bookOutputName to Conjunction of Variable and String

2019-09-09 Thread sir.teddy.the.first
Hi all, My score's title is set up in a variable called "title". I'm trying to output a file for every instrument and thus would like to have something like this \version "2.19.83" \book { \bookOutputName \title " - Clarinet" . } for every instrument of