Re: Key signature color one item

2017-02-07 Thread Tiago Morin
, David Nalesnik <david.nales...@gmail.com> wrote: > Tiago, > > On Tue, Feb 7, 2017 at 6:39 AM, Tiago Morin <tiagomo...@gmail.com> wrote: > > Is there a way to color just one of the accidentals of a key signature? > > For example: I'd like to color in red

Key signature color one item

2017-02-07 Thread Tiago Morin
Is there a way to color just one of the accidentals of a key signature? For example: I'd like to color in red the d sharp of the "\key e \major" , leaving the rest of the accidentals in default color. Thanks in advance. Tiago ___ lilypond-user mailing

Re: printing A4 pages on A3 paper

2010-12-20 Thread Tiago Morin
Hi, Here's the Latex source I use for such situation: The booklet has to be done manually. \documentclass[a4paper,landscape]{article} \paperwidth=420mm \paperheight=297mm \pdfpagewidth=\paperwidth \pdfpageheight=\paperheight \usepackage{pdfpages} \begin{document}

Re: an output question

2008-05-21 Thread Tiago Morin
After many hours struggling with evince and cupsdrivers, and many paper wasted, I chose to latex the document. taking the idea from pdfnup I arranjed the sourced to get the result I wanted: \documentclass[a4paper,landscape]{article} \paperwidth=420mm \paperheight=297mm \pdfpagewidth=\paperwidth

Re: Adding a tremolo for beamed notes

2008-03-03 Thread Tiago Morin
have you tried e'8:32[ e'16 e'] ? works nice on 2.10.33 It would help if you copy the lilypond code Regards Tiago On Mon, Mar 3, 2008 at 9:17 PM, Risto Vääräniemi [EMAIL PROTECTED] wrote: Dear all, I came up with a piece of music that combines a tremolo with a beamed eight note. It

horizontally centered rests

2008-01-16 Thread Tiago Morin
Hi lilyponders, I'd like to have the rest (r1 or r2 depending on \time 4/4 or 2/4) centered horizontally between the measure bars instead of the location where the (absence) of note should be (in the beginning of the measure). How to? regards Tiago

Re: hungarian characters

2008-01-13 Thread Tiago Morin
Szia! Lilypond suports UTF8 as character encoding input. Save your file in UTF8 encoding and it will appear in the pdf like you wrote it. Tiago On Jan 13, 2008 8:48 PM, Nemeth Pal [EMAIL PROTECTED] wrote: Hi! I have a question of lilypond (\version 2.10.10) in Windows XP I want to use

Re: spacing between systems

2008-01-03 Thread Tiago Morin
check section 11.2.2 in the manual: \layout{ \context { \Staff \override VerticalAxisGroup #'minimum-Y-extent = #'(-7 . 7) } } On Jan 3, 2008 12:43 PM, Stefan Thomas [EMAIL PROTECTED] wrote: Dear Lilypond-users, I have a question concerning the layout. I want to increase the

Re: Few more questions from a beginner

2008-01-02 Thread Tiago Morin
* Put some naturals in parentheses (e.g., measures 8 and 9) Section 6.1.3 in the manual ( c? will put accidental in parentheses) * Move rests to correct height. Many of the rests aren't appearing at the same height as their voices. (e.g., measures 3 and 7) Section 6.1.9 (part 2) in the manual

textspanner too short

2007-12-16 Thread Tiago Morin
Hi lilyponders I'm having some trouble with the textspanner line. In the following example: \version 2.10.33 \paper { raggedright = ##f } \score{ \new Staff{ {e''8.[ c''16] b'8.[ c''16] \once \override TextSpanner #'edge-text = #'(III . ) \once \override TextSpanner #'direction = #1 \once

VoltaBracket padding

2007-12-16 Thread Tiago Morin
Hi lilyponders I don't know why the voltabracket is printed on the text. Anyway the manual padding is not working. \version 2.10.33 \paper { raggedright = ##f } \score{ \new Staff{ c'4 c' c' c' \override VoltaBracket #'padding = #5 \set Score.repeatCommands = #'((volta 1.)) f c' f' a' c''

Re: tremolo

2007-12-13 Thread Tiago Morin
Hi Stefan, Sometimes I find myself in situations where problems don't seem to have any obvious solutions. In such cases I try to tune the object to my needs. In this case: { \once \override Beam #'positions = #'(-8 . -8) \repeat tremolo 8 { c, e,16 e 16 } \repeat tremolo 4 { c f, 16 f16 }

Re: Underlined + double underlined fingering instructions for accordion scores

2007-07-07 Thread Tiago Morin
Hi I could write in french, but this might be usefull for someone else, it was a pain in the but for me to find this out. I'm a guitarrist, so I adapted the code for the four fingers, as the thumb is not used in the Left Hand. In the code bellow, you find code for fingering for the left end (Ln

Re: Underlined + double underlined fingering instructions for accordion scores

2007-07-04 Thread Tiago Morin
Hi I managed to output underlined fingering with the following code: Ln = \markup{\override #'(font-size . -5) \override #'(font-encoding . fetaNumber) 0 \postscript #0.08 setlinewidth -1.46 -0.2 moveto 0.88 0 rlineto stroke} Li = \markup{\override #'(font-size . -5) \override #'(font-encoding

clashing notes

2007-02-11 Thread Tiago Morin
Hi I'm trying to reduce beamed stem length to avoid stem clash: {g'2}\\{ \stemUp \override Stem #'details #'beamed-lengths = #'(1.25 ) g8[ d'] f'[ d'] }\\{ \stemDown g2} the Stem #'details #'beamed-lengths allows to increase the stem but not reduce... :( any suggestions? Thank's Tiago Morin

more than one TextSpanner

2007-01-11 Thread Tiago Morin
TextSpanner #'dash-fraction = #'() a8[ cis' e'\startTextSpan a']\stopTextSpan } d8[ fis b d']\stopTextSpan \stopTextSpan I tried also to put the new spanner in a voice { %spannerhere% }\\{} but the spanner does not get the TextSpanner settings. Thank's for your help. Tiago Morin