-
Notifications
You must be signed in to change notification settings - Fork 1
/
poster.tex
81 lines (68 loc) · 2.32 KB
/
poster.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
70
71
72
73
74
75
76
77
78
79
80
81
\documentclass[custom,plainsections,30pt]{sciposter}
% Define metadata
\newcommand{\pdfauthors}{Chris Fournier}
\newcommand{\pdftitle}{An Example LaTeX poster}
\newcommand{\pdfemail}{[email protected]}
\newcommand{\pdfinstitute}{School of Electrical Engineering and Computer Science\\
University of Ottawa}
% Include packages
\usepackage[pdftex]{graphicx}
\usepackage{tabulary} % Fancy table column types
\usepackage{amsmath} % More math
\usepackage{amsfonts} % Math fonts
\usepackage{mathtools} % Math display tools
\usepackage{cases} % Cases in math
\usepackage{glossaries} % Adds glossaries support; required for some captioning
\usepackage{multirow} % Multiple table rows
\usepackage{multicol} % Multiple table columns
\usepackage{comment} % Comment out sections
\usepackage{color} % Add colour support
\usepackage[table, x11names, rgb]{xcolor} % Add table colour support, colour names, and rgb specification of colours
\usepackage{soul} % Highlighting support
\usepackage[normalem]{ulem} % Underlining support
\usepackage{natbib} % Better citation styles
\usepackage{caption}
\usepackage{tikz} % Diagram and drawing library
\usepackage{tikz-qtree} % Draw trees
\usepackage{pgfplots} % Charts, requires tikz first
\usepackage{sectsty} % Set font styles to headings
% Add a variety of tikz packages for drawing
\usetikzlibrary{arrows,automata,shapes}
% Set headings to arial
\allsectionsfont{\usefont{OT1}{phv}{b}{n}\selectfont\centering}
% Set PDF metadata
\usepackage[pdfauthor={\pdfauthors},%
pdftitle={\pdftitle},%
pagebackref=false,%
pdfborder=0 0 0,
pdftex]{hyperref}
% Colour hyperlinks black so that they appear to be normal text
\hypersetup{
colorlinks,%
citecolor=black,%
filecolor=black,%
linkcolor=black,%
urlcolor=black
}
% Remove ruler between columns in multicol
\setlength{\columnseprule}{0pt}
% Include the title page setup
\input{title}
% Create a 3 column poster
\begin{document}
\maketitle
\begin{multicols*}{3} % Use a 3 column poster format
% Set the paragraph indent
\setlength{\parindent}{2em}
% Include various section files
\input{section_introduction}
\input{section_motivation}
\input{section_body}
\input{section_conclusion}
% Setup the bibliography
\begin{small}
\bibliographystyle{agsm} % Harvard = agsm
\bibliography{src/bib/manuals,src/bib/packages,src/bib/examples}
\end{small}
\end{multicols*}
\end{document}