Re: install lilypond info doc on linux

2017-10-14 Thread David Wright
On Sat 14 Oct 2017 at 15:02:08 (+0200), Orm Finnendahl wrote:
>  is there any information somewhere how to install lilypond's info
> documentation into info/emacs on linux? On my machine the documents
> are in /usr/share/info but the dir file in that directory is more or
> less empty and I would like to populate it in the correct/recommended
> way.

# cd /usr/share/info
# for j in foo.info bar.info etc.info ; do install-info "$j" dir ; done

to install foo, bar, etc. Of course, you can just do the lot:

# cd /usr/share/info
# mv dir dir-backup
# for j in * ; do install-info "$j" dir ; done

which saves you missing any.

If you install lilypond and its documentation under you own
home directory, you can also keep it all separate with

$ cd .../path-to/share/info
$ for j in * ; do install-info "$j" dir ; done

and use it with

$ info -d .../path-to/share/info

install-info makes a great deal of noise on my system,
which I just ignored (Debian).

Cheers,
David.

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


Re: install lilypond info doc on linux

2017-10-14 Thread Martin Tarenskeen



On Sat, 14 Oct 2017, Orm Finnendahl wrote:


Hi,

is there any information somewhere how to install lilypond's info
documentation into info/emacs on linux? On my machine the documents
are in /usr/share/info but the dir file in that directory is more or
less empty and I would like to populate it in the correct/recommended
way.


Which Linux distro do you use?

--

MT


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


Re: How to remove Text scripts

2017-10-14 Thread Kieren MacMillan
Hi Robert,

I believe you’re looking for

\with { \omit TextScript }

Hope that helps!
Kieren.


Kieren MacMillan, composer
‣ website: www.kierenmacmillan.info
‣ email: i...@kierenmacmillan.info


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


How to remove Text scripts

2017-10-14 Thread Robert Schmaus

Dear Ponderers,

I need to remove text scripts in certain situations from the voices. 
Text scripts are engraved by the Text_engraver, so I tried to remove 
that from the voice, like this:


--

\version "2.19.65"
\score {
  \new Staff \new Voice \with { \remove Text_engraver } { c'1-"Text" }
}



While this works - the text script *is* in fact gone -, it also 
generates this warning:


warning: cannot add text scripts to individual note heads

My question is: If this is indeed not the correct way to remove text 
scripts, which one is?


Thanks in advance,
Best, Robert

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


Re: install lilypond info doc on linux

2017-10-14 Thread Hwaen Ch'uqi
Greetings Orm,

To populate your dir file, you need to add entries into that file
manually, likely as root. Mine looks like this:

LilyPond
* LilyPond Changes: (lilypond-changes). New features in 2.19.46 since 2.18
* LilyPond Contributor's Guide: (lilypond-contributor).
* LilyPond Essay: (lilypond-essay).
* LilyPond Extending: (lilypond-extending).
* LilyPond Internals Reference: (lilypond-internals).
* LilyPond Learning Manual: (lilypond-learning).
* LilyPond Music Glossary: (music-glossary).
* LilyPond Notation Reference: (lilypond-notation).
* LilyPond Snippets: (lilypond-snippets).
* LilyPond Usage: (lilypond-usage).
* LilyPond Web: (lilypond-web).

This follows a specific format that is outlined in the info manual on
texinfo, I believe.

Hwaen Ch'uqi


On 10/14/17, Orm Finnendahl  wrote:
> Hi,
>
>  is there any information somewhere how to install lilypond's info
> documentation into info/emacs on linux? On my machine the documents
> are in /usr/share/info but the dir file in that directory is more or
> less empty and I would like to populate it in the correct/recommended
> way.
>
> --
> Orm
>
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>

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


install lilypond info doc on linux

2017-10-14 Thread Orm Finnendahl
Hi,

 is there any information somewhere how to install lilypond's info
documentation into info/emacs on linux? On my machine the documents
are in /usr/share/info but the dir file in that directory is more or
less empty and I would like to populate it in the correct/recommended
way.

--
Orm


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