94 lines
4.2 KiB
TeX
Executable File
94 lines
4.2 KiB
TeX
Executable File
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||
% eBook
|
||
% LaTeX Template
|
||
% Version 1.0 (29/12/14)
|
||
%
|
||
% This template has been downloaded from:
|
||
% http://www.LaTeXTemplates.com
|
||
%
|
||
% Original author:
|
||
% Luis Cobo (luiscobogutierrez@gmail.com) with extensive modifications by:
|
||
% Vel (vel@latextemplates.com)
|
||
%
|
||
% License:
|
||
% CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)
|
||
%
|
||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||
|
||
%----------------------------------------------------------------------------------------
|
||
% DOCUMENT CONFIGURATIONS AND INFORMATION
|
||
%----------------------------------------------------------------------------------------
|
||
|
||
\documentclass[oneside, 9pt]{memoir} % Font size
|
||
|
||
\input{structure.tex} % Include the file that specifies the document structure and layout
|
||
|
||
\makeatletter
|
||
\@addtoreset{chapter}{part}
|
||
\makeatother
|
||
|
||
\title{Anders} % Book title
|
||
\author{Wolfgang \& Heike Hohlbein, translated by David Daily} % Author
|
||
\newcommand{\edition}{Edition 0} % Book edition
|
||
|
||
%----------------------------------------------------------------------------------------
|
||
\begin{document}
|
||
\frontmatter
|
||
%----------------------------------------------------------------------------------------
|
||
% TITLE PAGE
|
||
%----------------------------------------------------------------------------------------
|
||
|
||
\thispagestyle{empty} % Suppress page numbering
|
||
\ThisCenterWallPaper{2.4}{background.jpg} % Add the background image, the first argument is the scaling - adjust this as necessary so the image fits the entire page
|
||
|
||
\begin{tikzpicture}[remember picture,overlay]
|
||
\node [rectangle, rounded corners, fill=white, opacity=0.75, anchor=south west, minimum width=3cm, minimum height=6cm] (box) at (-0.5,-10) (box){};
|
||
% White rectangle - "minimum width/height" adjust the width and height of the box; "(-0.5,-10)" adjusts the position on the page
|
||
\node[anchor=west, color01, xshift=-1.5cm, yshift=-0.4cm, text width=2.9cm, font=\sffamily] at (box.north){\edition};
|
||
%"Text width" adjusts the wrapping width, "xshift/yshift" adjust the position relative to the white rectangle
|
||
\node[anchor=west, color01, xshift=-1.5cm, yshift=-2cm, text width=2.9cm, font=\sffamily\bfseries\scshape\Large] at (box.north){\thetitle};
|
||
\node[anchor=west, color01, xshift=-1.5cm, yshift=-3cm, text width=2.9cm, font=\sffamily\bfseries\small] at (box.north){Last updated \today};
|
||
% "Text width" adjusts the wrapping width, "xshift/yshift" adjust the position relative to the white rectangle
|
||
\node[anchor=west, color01, xshift=-1.5cm, yshift=-5cm, text width=2.9cm, font=\sffamily\bfseries] at (box.north){\theauthor};
|
||
% "Text width" adjusts the wrapping width, "xshift/yshift" adjust the position relative to the white rectangle
|
||
\end{tikzpicture}
|
||
|
||
\newpage % Make sure the following content is on a new page
|
||
|
||
|
||
%----------------------------------------------------------------------------------------
|
||
% INTRODUCTION SECTION
|
||
%----------------------------------------------------------------------------------------
|
||
\chapter*{Preface} % Introduction chapter suppressed from the table of contents
|
||
|
||
\begin{quote}
|
||
“‘I wish it need not have happened in my time,’ said Frodo.\newline
|
||
‘So do I,’ said Gandalf, ‘and so do all who live to see such times.
|
||
But that is not for them to decide.
|
||
All we have to decide is what to do with the time that is given us.’”\\
|
||
\end{quote}
|
||
|
||
\footnotesize{I started this project because I really like the book series and wanted it to exist in English for others to enjoy.
|
||
I started it in my 2nd year of High School (2013) because I was bored in class, finishing it after I took a break to finish college, get a job, and get married to the love of my life, Alissa.}
|
||
|
||
\newpage % Make sure the following content is on a new page
|
||
|
||
%----------------------------------------------------------------------------------------
|
||
% TABLE OF CONTENTS
|
||
%----------------------------------------------------------------------------------------
|
||
\begin{KeepFromToc}
|
||
\tableofcontents
|
||
\end{KeepFromToc}
|
||
|
||
\mainmatter
|
||
\input{book-1/all.tex}
|
||
|
||
\input{book-2/all.tex}
|
||
|
||
\input{book-3/all.tex}
|
||
|
||
\input{book-4/all.tex}
|
||
|
||
%===========================================================================================================================================
|
||
\end{document}
|