I revised lilycrop.sh with two new features:
1. invoke with -e option for EPS output
2. invoke with -l option to write output file names to log file (use
-el for both options)
The script now includes better error checking of command-line arguments.
I don't know how to make it accept shell wil
I have posted an improved version of the "lilycrop" BASH script that
checks for multiple PDF pages; if it finds them it bursts the PDF and
crops the separate files. It now produces a new PDF file *-crop.pdf
instead of overwriting the original PDF produced by lilypond.
It is available at https://gi
I wrote earlier about the problem of the lyric tie colliding with "y"
and similar letters. No one responded (I suppose this is a bug), but I
have found a workaround.
I define a text-replacement for the non-breaking space character, U+00A0:
\paper {
#(add-text-replacements!
'(("|" . " ")))
K!
~/bin/lilycrop:
#! /bin/sh
set -e
file="${1%.ly}"
lilypond "$file"
pdftops -eps "$file".pdf
cat "$file".eps | ps2eps > "$file"_cut.eps
epstopdf "$file"_cut.eps
rm "$file".eps "$file"_cut.eps
mv
be coming from these fonts. One thread provided a complex
Scheme solution for positioning the lyric tie. Has there been any
progress on this issue?
Best,
Andrew Cashner
* * *
\version "2.18.2"
\paper {
#(define fonts
(make-pango-font-tree
"Linux Libertine T&qu
Dear lilypond community,
When I use the EPS backend for a small example, the bottom of the output is
cut off. (The bottom of the choirstaff brace is cropped out.)
I would appreciate your help or pointers to where I figure out how to
resolve this. Thanks!
Andrew Cashner
MWE:
\version "2