-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.tex
46 lines (33 loc) · 877 Bytes
/
test.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
\documentclass[a4paper,12pt]{article}
%% Well understand input, and nice output
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{hyperref}
\hypersetup{colorlinks} % uncomment this line if you prefer colored hyperlinks (e.g., for onscreen viewing)
\usepackage{palatino}
% For graphics / images
\usepackage{graphicx}
\graphicspath{{graphics/}}
\DeclareGraphicsExtensions{.pdf,.eps,.png,.jpg}
%% Easy for loop for LaTeX
% https://stackoverflow.com/a/5958641/
\usepackage{pgffor}
\usepackage{pokemonnumbering}
% Metadata
\title{Pokédex}
\author{Lilian Besson}
\begin{document}
% full title page
\maketitle
\thispagestyle{empty}
\tableofcontents
\pokemonnumbering
% all the Pokémons
% \foreach \n in {1}{
% \foreach \n in {1,...,3}{
\foreach \n in {1,...,151}{
\input{src/\n.tex}
}
\end{document}