Files
Story/Main.tex
2021-10-24 21:21:10 +02:00

64 lines
1.1 KiB
TeX

% Title:
% Author: Zoë A. Porter <afanen@afanen-writes.net>
% Created: TIMESTAM
% Last Modified: TIMESTAM
% Rating:
% Summary:
%
%
%% preamble
\documentclass[twoside, openright, 10pt, pdflatex]{memoir}
% use special colour tables for pdf output
\ifpdf{}
\usepackage{pdfcolmk}
\fi{}
% paper size for pocket books
\setstocksize{19cm}{12.5cm}
\usepackage[paperwidth=12.5cm, paperheight=19cm]{geometry}
% all source code is UTF-8
\usepackage{ucs}
\usepackage[utf8x]{inputenc}
% allow import of images
\usepackage{graphicx}
% use the ding font
\usepackage{pifont}
% allow nicely formatted quotes
\usepackage{quoting}
% print pretty fleurons on paragraph breaks
\renewcommand{\pfbreakdisplay}{\ding{167}\quad{}\ding{167}\quad{}\ding{167}}
%% start of document
\begin{document}
% Make the title page
\begin{titlingpage}
\let\cleardoublepage\clearpage
\title{<++>}
\author{Zo\"{e} A. Porter}
\titlePM{}
\end{titlingpage}
% set the correctnumbering etc.
\mainmatter{}
\chapterstyle{novel}
% place chapters or story content here
% and the epologue here
\backmatter{}
\chapterstyle{dowding}
\end{document}
% vim: spelllang=en_gb: