-
Notifications
You must be signed in to change notification settings - Fork 2
/
8up-zine.tex
66 lines (44 loc) · 1.14 KB
/
8up-zine.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
\documentclass[statementpaper,oneside,article,14pt]{memoir}
\usepackage{geometry}
\usepackage{libertine}
\usepackage{kantlipsum}
% Disable chapter/section numbering.
\setsecnumdepth{none}
\maxsecnumdepth{none}
% Optional background
% http://tex.stackexchange.com/a/276280
\usepackage{transparent}
\usepackage{eso-pic}
\newcommand{\BackgroundPic}[1]{%
\put(0,0){%
\parbox[b][\paperheight]{\paperwidth}{%
\vfill
\centering
{\transparent{0.4} \includegraphics[width=\paperwidth,height=\paperheight,%
keepaspectratio]{#1}}%
\vfill
}}}
\begin{document}
% Edit inside the { brackets } to change these.
\title{8-up Zine}
\author{You}
\date{Fall 2016}
\begingroup
\let\cleardoublepage\clearpage
% \AddToShipoutPicture*{\BackgroundPic{samplecover}}
\begin{titlingpage}
\maketitle
% Could add a small author's note, etc. here if you like.
\end{titlingpage}
\endgroup
% As the zine is so short, you probably won't need page numbers; however, if you
% want them, comment out the next line with a %.
\pagestyle{empty}
%% CONTENT GOES BELOW
\section{Some fake text}
\kant[1-6]
%% CONTENT ENDS
% Back cover
\newpage
\Large That's it! Have fun.
\end{document}