blob: 3dff08fcddf1b3571d6680a68eb734b2df881f40 [file] [log] [blame]
brentthorne8241b942018-12-03 23:51:48 -05001%brent's poster layout :)
2
brentthorne7fa24a22018-12-04 09:53:19 -05003\documentclass[30pt,extrafontsizes]{memoir}
brentthorne8241b942018-12-03 23:51:48 -05004
5%utf-8 seems to be important
6\usepackage[utf8]{inputenc}
7\usepackage[T1]{fontenc}
8\usepackage{palatino}
9\usepackage{multicol}
10\usepackage{graphicx}
11\usepackage{blindtext,xcolor}
12
13%define column options
14\setlength{\columnseprule}{1pt}
15\def\columnseprulecolor{\color{red}}
16\setsubsubsecheadstyle{\small\color{red}\textbf}% Set \section style
brentthorne7fa24a22018-12-04 09:53:19 -050017\setsecheadstyle{\small\color{red}}
brentthorne8241b942018-12-03 23:51:48 -050018\setsecnumformat{}
19\def\sectionmark#1{\markboth{#1}{#1}}
20
21%-----------------------------------------------------
22
23%define poster size
24\usepackage[paperwidth=45in,paperheight=38in, text={7in,10in},centering, margin=1in]{geometry}
25
brentthorne7fa24a22018-12-04 09:53:19 -050026\thispagestyle{empty}
27
brentthorne8241b942018-12-03 23:51:48 -050028\usepackage[style=authoryear-comp,backend=biber]{biblatex}
brentthorne7fa24a22018-12-04 09:53:19 -050029\renewcommand*{\bibfont}{\tiny}
brentthorne8241b942018-12-03 23:51:48 -050030
31\bibliography{\jobname}
32
33\counterwithout{section}{chapter}
34\makechapterstyle{mydefault}{
35\addtocounter{secnumdepth}{2}
brentthorne7fa24a22018-12-04 09:53:19 -050036\setsecheadstyle{\Large\color{red}\textbf}
brentthorne8241b942018-12-03 23:51:48 -050037\setsubsecheadstyle{\itshape}
38\setsubsubsecheadstyle{\itshape}
39}
40
41\chapterstyle{mydefault}
42
43
44\defbibheading{bibliography}[\bibname]{%
45\section*{#1}%
46\markboth{#1}{#1}}
47
48
49\AtBeginDocument{%
50 \renewcommand{\bibname}{References}
51}
52
53
brentthorne8241b942018-12-03 23:51:48 -050054%define column spacing
55\setlength\columnsep{1.2in}
56
57%spacing after section head title
brentthorne7fa24a22018-12-04 09:53:19 -050058\setaftersecskip{0.3in}
59\setbeforesecskip{1in}
brentthorne8241b942018-12-03 23:51:48 -050060
61\setlength{\parskip}{0pt}
62
63%begin the document
64\begin{document}
65
66
67% group which adds title author and other infor
68% Used instead of \maketitle for better spacing options
69\begingroup
70 \centering
brentthorne7fa24a22018-12-04 09:53:19 -050071 \huge\textbf{$title$}\\[0.3in]
72 \large $author$\par
brentthorne8241b942018-12-03 23:51:48 -050073\endgroup
74\vspace{1.2in}
75% end title section -------------------
76
77% Brgin body of poster
78\begin{multicols*}{3}
brentthorne7fa24a22018-12-04 09:53:19 -050079\small{\noindent
brentthorne8241b942018-12-03 23:51:48 -050080$body$
81\printbibliography
82}
83\end{multicols*}
84
85%end the poster
86\end{document}