-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.tex
69 lines (45 loc) · 912 Bytes
/
layout.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
67
68
69
\documentclass{article}
\usepackage{subfigure}
\usepackage{lipsum}
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\usepackage{lscape}
\usepackage{pdfpages}
\usepackage{pgffor}
\renewcommand{\baselinestretch}{0}
\usepackage[pass]{geometry}
\newgeometry{margin=0pt}
\usepackage[font=tiny,skip=0pt]{caption}
\extrafloats{1}
\begin{document}
\begin{landscape}
% now two copies
\newcount\copy
\copy=2
\loop
\include{layout_beginning}
\advance \copy -1
\ifnum \copy>0
\repeat
% end of two copies
\include{layout_1000}
% now three copies
\newcount\copy
\copy=3
\loop
\include{layout_2000}
\include{layout_4000}
\include{layout_6000}
\include{layout_8000}
\include{layout_10000}
\include{layout_12000}
\include{layout_14000}
\include{layout_18000}
\include{layout_criminals}
\include{layout_tokens}
\advance \copy -1
\ifnum \copy>0
\repeat
% end of three copies
\end{landscape}
\end{document}