forked from CryHavoc/dottes
Add Nook-sized PDF output.
This commit is contained in:
parent
f74f9cc59c
commit
7f459bab22
|
@ -0,0 +1 @@
|
|||
\documentclass[a5paper,11pt,openany]{book}
|
|
@ -1,3 +1,5 @@
|
|||
\usepackage[margin=0.75in]{geometry}
|
||||
|
||||
% -----
|
||||
|
||||
% Title page
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
\usepackage[margin=0.75in]{geometry}
|
||||
|
||||
% -----
|
||||
|
||||
% Title page
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
\usepackage[paperwidth=4.1in,paperheight=5in,left=0.1in,right=0.1in,top=0.5in,bottom=0.5in]{geometry}
|
||||
|
||||
% -----
|
||||
|
||||
% Title page
|
||||
\newfontfamily\havocfont[Scale=1.5]{English Towne}
|
||||
|
||||
\newcommand*{\titleBoD}{\begingroup
|
||||
\centering
|
||||
{\Large \havocfont{Ye}}\\[\baselineskip]
|
||||
{\Huge \havocfont{Crie Havock}}\\[\baselineskip]
|
||||
{\Large \havocfont{Booke of}}\\[\baselineskip]
|
||||
{\Huge \havocfont{\instrument Dottes}}\\[\baselineskip]
|
||||
\vfill
|
||||
{\huge \input{title.txt}}\\%[\baselineskip]
|
||||
{\large \input{subtitle.txt}}\\[\baselineskip]
|
||||
\vfill
|
||||
\includegraphics[width=0.12\textwidth,keepaspectratio]{buzzard}
|
||||
\vfill
|
||||
{Compiled by Jim Hague}\\
|
||||
\endgroup}
|
|
@ -24,7 +24,9 @@
|
|||
<p>@INTRO@
|
||||
<p>You can download a PDF with a booklet of these tunes. There is an
|
||||
<a href="@BOOK@-A5.pdf">A5 landscape book</a> with one
|
||||
tune per page, or an <a href="@BOOK@-A4.pdf">A4 book</a> with two or
|
||||
tune per page, a <a href="@BOOK@-Nook.pdf">4x5in portrait book</a>
|
||||
suitable for use with an eReader like a Kindle, Nook, Kobo etc.,
|
||||
and an <a href="@BOOK@-A4.pdf">A4 book</a> with two or
|
||||
more tunes per page.
|
||||
<p>If you have a printer that can do duplex (i.e. print on both sides
|
||||
of the paper), you might like the
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
\usepackage{array}
|
||||
\usepackage{color}
|
||||
\usepackage{fontspec}
|
||||
\usepackage[margin=0.75in]{geometry}
|
||||
\usepackage{graphicx}
|
||||
\usepackage{fancyhdr}
|
||||
\usepackage{tabularx}
|
||||
|
|
|
@ -14,6 +14,7 @@ makeABooke()
|
|||
./makeBooke.sh "$1" A4
|
||||
./makeBooke.sh "$1" A5
|
||||
./makeBooklet.sh "$1"
|
||||
./makeBooke.sh "$1" Nook
|
||||
./makeWebGraphics.sh "$1"
|
||||
./makeWebAudio.sh "$1"
|
||||
./makeWeb.sh "$1" "$1" "$2"
|
||||
|
@ -26,6 +27,7 @@ makeATransposedBooke()
|
|||
./makeBooke.sh "$1" A4
|
||||
./makeBooke.sh "$1" A5
|
||||
./makeBooklet.sh "$1"
|
||||
./makeBooke.sh "$1" Nook
|
||||
./makeWebGraphics.sh "$1"
|
||||
./makeWeb.sh "$1" "$2" "$3"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue