Files
opus-orchestrator-ai/opus_orchestrator/templates/latex/poetry.tex
T

88 lines
1.4 KiB
TeX

% Opus Orchestrator - Poetry Template
% Verse collections, poetry books
\documentclass[12pt,openright]{memoir}
% Packages
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath,amssymb}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage{geometry}
\usepackage{microtype}
\usepackage{lettrine}
% Poetry trim size
\geometry{
paperwidth=6in,
paperheight=9in,
textwidth=4in,
textheight=7in,
inner=1in,
outer=0.75in,
}
% Hyperref
\hypersetup{colorlinks=false}
% Fonts
\usepackage{mathpazo} % Palatino - classic for poetry
% Chapter style
\chapterstyle{ell}
% Drop caps with lettrine
\lettrineIndentZeros=true
\lettrineHeight=2
\lettrineDepth=1
% Stanza spacing
\usepackage{setspace}
\setstretch{1.2}
% Metadata
\def\booktitle{$book_title$}
\def\bookauthor{$author$}
\def\bookdate{$date$}
\begin{document}
% Title page
\thispagestyle{empty}
\begin{center}
\vspace*{2in}
{\Huge\scshape\booktitle\par}
\vspace{1.5in}
{\Large\scshape\bookauthor\par}
\vfill
{\large\scshape\bookdate}
\end{center}
% Copyright
\clearpage
\thispagestyle{empty}
\vspace*{\fill}
\begin{center}
Copyright \textcopyright\ \bookdate\ \bookauthor\\
All rights reserved.
\end{center}
\vspace*{\fill}
% Dedication
$if(dedication)$
\clearpage
\thispagestyle{empty}
\vspace*{3in}
\begin{center}
\textit{$dedication$}
\end{center}
$endif$
% Poetry collection
\mainmatter
$body$
\end{document}