Polymetric bar lines and bar numbering

2019-04-15 Thread tapani
I have created a polymetric score with independent bar lines in different
parts, using the instructions here: 
http://lilypondblog.org/2014/05/independent-meters/
<http://lilypondblog.org/2014/05/independent-meters/>  

However, this option turns off bar numbering in the score. Adding it
explicitly like this doesn't work:

  \context {
\Score
\remove "Timing_translator"
\remove "Default_bar_line_engraver"
\consists "Bar_number_engraver"
  }

I tried adding \consists "Bar_number_engraver" to the Staff context, but now
the bar numbers are printed for every part, rather than the score (as one
would expect...).

How can I restore bar numbering to the score?

Many thanks. Tapani



--
Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: ANN: Frescobaldi 2.20.0, Frescobaldi 3.0.0, python-ly 0.9.5

2017-02-18 Thread Tapani
Wonderful. Thank you.

On Friday, 17 February 2017 09:58:47 UTC, Wilbert wrote:
>
> Dear friends, 
>
> I just released the source packages for Frescobaldi 2.20.0, Frescobaldi 
> 3.0.0 and python-ly 0.9.5 today. (I couldn't way until my birthday early 
> March :-)) 
>
> Frescobaldi 2.20.0 provides a new Manuscript viewer, contributed by 
> Urs Liska and Peter Bjuhr, some smaller features, improvements, updated 
> translations and bug fixes. 
>
> Frescobaldi 3.0.0 is feature-wise the same, but requires Python3 and 
> Qt5. Qt5 has support for Retina displays and gestures, and Frescobaldi 
> 3.0.0 already uses them, which should provide a better Music View image 
> quality. Thanks to David Rydh for implementing this! 
>
> Frescobaldi 3.x is the branch (master) where new development will be 
> done. 
>
> Development of Frescobaldi 2.x (branch v2.x) concentrates on bugfixing 
> and backporting important features that can be backported from the 3.x 
> branch, supporting older platforms that do not provide Python3 or Qt5. 
>
> Python-ly 0.9.5 has seen some bug fixes and improvements, and is 
> recommend to use, although Frescobaldi works well with 0.9.4. 
>
> Thanks go to all the translators and contributors! 
> Enjoy! 
>
> Wilbert 
>
> https://pypi.python.org/pypi/python-ly 
> https://github.com/wbsoft/frescobaldi/releases 
>
>
> -- 
> Wilbert Berendsen (www.wilbertberendsen.nl) 
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Creating marginal comments?

2016-12-01 Thread tapani
Knut Petersen wrote
> Am 29.11.2016 um 13:02 schrieb tapani:
>> I am producing a hymnal, using Lilypond and lilypond-book with xelatex. I
>> would like to insert biblical references in the margin of the page,
>> parallel
>> with the lyrics.
>>
>> For example, in "Hark, the Herald Angels Sing", the lyrics "Ris'n with
>> healing in his wings" would have "Mal. 4:2" in the margin.
>>
>> In TeX like systems, this is easily done with the \marginnote command.
>>
> 
> So do use TeX ;-) Put the attached files in an empty directory, don't
> forget to make mkhymex and mypdfcrop
> executable, then run ./mkhymex. You'll get an 8-page hymnal book with some
> example marginal notes.
> Two A5 pages on every side of an A4 sheet, correctly arranged for
> printing.

Thank you. I don't have everything installed on my system to make this
compile correctly, but even then I can see that it works.

Two problems:
1. I'm producing a hymnal with 100s of entries. To keep things tidy, those
hymns are in separate .ly files, and I then use lilypond-book to compile
them into one document. To embed every music file in a single (massive) .tex
document is not realistic at this stage of the project.

2. I'm too much of a newbie to understand /how/ your method works. Would you
be able to explain it to me in simple/ish terms, or do I just have to go
away and buy a LaTeX manual and really learn the language properly? OR,
alternatively, can I just insert the \newcount commands into my preamble and
use the \def\callback[etc.] argument in the document?

Sorry to be an ignoramus!
Tapani





--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Creating-marginal-comments-tp197250p197446.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Creating marginal comments?

2016-11-29 Thread tapani
I am producing a hymnal, using Lilypond and lilypond-book with xelatex. I
would like to insert biblical references in the margin of the page, parallel
with the lyrics.

For example, in "Hark, the Herald Angels Sing", the lyrics "Ris'n with
healing in his wings" would have "Mal. 4:2" in the margin.

In TeX like systems, this is easily done with the \marginnote command.

Is there a practical way of doing this within Lilypond: of inserting
something like \mark or \markup in the \lyricmode environment such that it
will place the comment automatically in the outer margin of the page?

Many thanks.
Tapani

[There is a laborious hack to do this in XeLaTeX, but that involves finding
the right .tex file produced for that line of music by lilypond-book, and
then inserting \marginnote into that file. Not a good method.]



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Creating-marginal-comments-tp197250.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: lilypond-book: Processing multiple lytex files with a single command

2016-09-27 Thread tapani
I managed to tweak this to make it work for my project. Thank you very much
indeed!

A further question:

The way I have built my project is to have lots (100+) individual .lytex
files, which are compiled and the resulting .tex files are included in a
master .tex file (using \input). However, for that to work, the preambles of
all the intermediate .tex files need to be removed (in my case, commented
out), together with "\begin/end{document}".

Can I use the makefile to do that: to read each individual .tex file, append
a % sign on every line in the preamble, etc., and then compile the master
file?

My current makefile looks like this:




tapani wrote
> Thank you. I will give this a go.





--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/lilypond-book-Processing-multiple-lytex-files-with-a-single-command-tp194804p194979.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: lilypond-book: Processing multiple lytex files with a single command

2016-09-24 Thread tapani
Thank you. I will give this a go.



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/lilypond-book-Processing-multiple-lytex-files-with-a-single-command-tp194804p194895.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: lilypond-book: Processing multiple lytex files with a single command

2016-09-24 Thread tapani
Many thanks. This works well.



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/lilypond-book-Processing-multiple-lytex-files-with-a-single-command-tp194804p194894.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Rumor: installing from repository without texlive

2015-12-14 Thread tapani
Thanks for both answers – I found it. For future reference:

sudo apt-get download rumor
sudo dpkg -i rumor*.deb
sudo apt-get install -f (for missing guile library)

Tapani



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Rumor-installing-from-repository-without-texlive-tp184763p184769.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Testing requested: new manuscript viewer tool for Frescobaldi

2015-11-13 Thread tapani
Is there any way of getting this without running Frescobaldi from the Git
repository? I run Frescobaldin in Linux, from installation files of the
latest stable version.
Tapani



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Testing-requested-new-manuscript-viewer-tool-for-Frescobaldi-tp178737p183515.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Filling empty space in inline lyrics with dots?

2014-04-24 Thread tapani
Bump…



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Filling-empty-space-in-inline-lyrics-with-dots-tp154475p161811.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Filling empty space in inline lyrics with dots?

2013-11-26 Thread tapani
I frequently typeset psalm chants, where the number of words per reciting
note vary from one verse to another. To help the singers keep their eyes on
the correct line of lyrics, I would like to fill empty space with a line of
dots, like in the index of a book, like so:

The earth is the Lord's, and the. fullness thereof,
The world and those who
dwell therein.

I've googled to my heart's content but haven't found a solution. Is there
one?

I'm very much an uninformed end-user, unfamiliar with the workings of
Lilypond beyond the standard commands.

Many thanks.
Tapani



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Filling-empty-space-in-inline-lyrics-with-dots-tp154475.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user