Lilypond não aparece nos aplicativos

1

Eu usei o Linux Ubuntu 15.04 e instalei o lilypond do terminal

~$ sudo apt-get install lilypond

Mas não apareceu no aplicativo.

quando tento abrir via terminal

~$ lilypond

GNU LilyPond 2.18.2
Usage: lilypond [OPTION]... FILE...
Typeset music and/or produce MIDI from FILE.
LilyPond produces beautiful music notation.
For more information, see http://lilypond.org
Options:
-d, --define-default=SYM[=VAL]      set Scheme option SYM to VAL (default: #t).
   Use -dhelp for help.
  -e, --evaluate=EXPR                 evaluate scheme code
 -f, --formats=FORMATs               dump FORMAT,...  Also as separate options:
      --pdf                           generate PDF (default)
      --png                           generate PNG
      --ps                            generate PostScript
  -h, --help                          show this help and exit
  -H, --header=FIELD                  dump header field FIELD to file
                                        named BASENAME.FIELD
  -I, --include=DIR                   add DIR to search path
  -i, --init=FILE                     use FILE as init file
  -j, --jail=USER, GROUP, JAIL, DIR   chroot to JAIL, become USER:GROUP
                                        and cd into DIR
  -l, --loglevel=LOGLEVEL             print log messages according to 
LOGLEVEL.  Possible values are:
                                        NONE, ERROR, WARNING, BASIC, 
PROGRESS, INFO (default) and DEBUG.
  -o, --output=FILE                   write output to FILE (suffix will be added)
      --relocate                      relocate using directory of lilypond program
  -s, --silent                        no progress, only error messages (equivalent to loglevel=ERROR)
  -v, --version                       show version number and exit
  -V, --verbose                       be verbose (equivalent to 
loglevel=DEBUG)
  -w, --warranty                      show warranty and copyright

O lilypond já está sendo instalado corretamente? Como abrir ou lançar o lilypond?

    
por Agung Wahyudi 22.06.2015 / 15:25

1 resposta

0

lilypond está instalado corretamente.

Executar com

lilypond <your_file>

conforme descrito na ajuda. Mais informações com man lilypond

% bl0ck_qu0te%

Ele não aparece nos Aplicativos, porque não há GUI (interface gráfica do usuário) apenas uma CLI (interface de linha de comando)

Exemplo

  1. Crie um novo arquivo test.ly

    cd
    nano test.ly
    
  2. Adicione as linhas abaixo

    \version "2.18.2"
    {
      c' e' g' e'
    }
    
  3. Compile

    lilypond test.ly
    
  4. Abra o resultado

    xdg-open test.pdf
    

Outroexemplo

  1. Crieumnovoarquivodeorigem(test2.ly)eadicione

    upper=\relativec''{\cleftreble\keyc\major\time4/4a4bcd}lower=\relativec{\clefbass\keyc\major\time4/4a2c}\score{\newPianoStaff<<\setPianoStaff.instrumentName=#"Piano  "
        \new Staff = "upper" \upper
        \new Staff = "lower" \lower
      >>
      \layout { }
      \midi { }
    }
    
  2. Compile

    lilypond test2.ly
    
  3. E abra o resultado

    xdg-open test2.pdf
    

por A.B. 22.06.2015 / 16:00