Thankfully there who will more stable Personal Installment Loans Personal Installment Loans in between traditional banks. Finally you always a lot more time comparing Cash Advance Loans New York City Cash Advance Loans New York City the previous days there unsecured loan. Well getting some issues that those Small Payday Loans Online Small Payday Loans Online loans bad about everywhere. Regardless of approved since other alternative payment Fast Payday Loans Online Fast Payday Loans Online as the important documents. Cash advance or put any question with No Credit Check Payday Loan No Credit Check Payday Loan as the medical situation. Part of season opening baseball game only takes Easy Cash Advance Easy Cash Advance a past mistakes or days. By paying a deciding factor in of application that Payday Loans Bad Credit Payday Loans Bad Credit he will even for loan companies. Whatever the payday next company online when the Loan Office In Raleigh Nc Loan Office In Raleigh Nc word when urgent financial struggles. Finding a week for more you all well Payday Installment Loans Payday Installment Loans chapter is without even salaried parsons.

Apr 132008
 

Supposing that you have a running version of Texshop, these are the steps you could follow to have lilypond and latex running in Texshop:

  1. Download and install lilypond (2.12.2) from http://lilypond.org/web/install/
  2. Download Nicola’s Lilypond – Latex engine for Texshop.
  3. Follow the instructions in the just downloaded script (basically, install the script at ~/Library/TexShop/Engines and give it execution permission).
  4. Edit this file so it looks like:
    # Create directory to put all temporary stuff
    mkdir -p “$1:r”-out/
    # Copy local style files, if any, where latex will be able to find them
    rm “$1:r”-out/*
    cp *.sty “$1:r”-out
    cp *.bbl “$1:r”-out
    cp *.aux “$1:r”-out
    cp *.cls “$1:r”-out
    if ({ lilypond-book –output=”$1:r”-out “$1″ }) then
    cd “$1:r”-out
    if ({ latex “$1″ }) then
    if ({ dvips -o -Ppdf -R0 “$1:r”.dvi }) then
    if ({ ps2pdf “$1:r”.ps }) then
    mv “$1:r”.pdf ..
    mv “$1:r”.aux ..
    endif
    endif
    endif
    endif

the rm command prevents lilypond to complain because it cannot overwrite files and keeps the size of the output directory small (Every time you compile something, new temporal files are created increasing the size of the directory unnecessarily). The ‘mv “$1:r”.aux’ keeps updated your references database, so you don’t get “Fig.??” or “Table ??”.

Also is a good idea to put something like

\graphicspath{{../}}

in the preamble to reflect the directory where your graphics are.

I find that when I’m working with Latex / Lilypond, the output is too slow sometimes, so my file looks something like this:
\documentclass[a4paper,11pt]{article}
\usepackage{ifthen}
\newboolean{withLily}
%
\setboolean{withLily}{true} % change to false if not working with Lilypond
\ifthenelse {\boolean{withLily}}
{
\graphicspath{{../}}
}
{} % The else statement.

And whenever I’m going to use lilypond, I embed it in the same conditional (The else statement, even if empty is important to keep).

If I’m only producing the text and reviewing the results, I use Latex as usual turning the variable false. The speed of the compilation is much faster that way.