brentthorne | 8241b94 | 2018-12-03 23:51:48 -0500 | [diff] [blame] | 1 | %brent's poster layout :) |
| 2 | |
brentthorne | 7fa24a2 | 2018-12-04 09:53:19 -0500 | [diff] [blame] | 3 | \documentclass[30pt,extrafontsizes]{memoir} |
brentthorne | 8241b94 | 2018-12-03 23:51:48 -0500 | [diff] [blame] | 4 | |
| 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 |
brentthorne | 7fa24a2 | 2018-12-04 09:53:19 -0500 | [diff] [blame] | 17 | \setsecheadstyle{\small\color{red}} |
brentthorne | 8241b94 | 2018-12-03 23:51:48 -0500 | [diff] [blame] | 18 | \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 | |
brentthorne | 7fa24a2 | 2018-12-04 09:53:19 -0500 | [diff] [blame] | 26 | \thispagestyle{empty} |
| 27 | |
brentthorne | 8241b94 | 2018-12-03 23:51:48 -0500 | [diff] [blame] | 28 | \usepackage[style=authoryear-comp,backend=biber]{biblatex} |
brentthorne | 7fa24a2 | 2018-12-04 09:53:19 -0500 | [diff] [blame] | 29 | \renewcommand*{\bibfont}{\tiny} |
brentthorne | 8241b94 | 2018-12-03 23:51:48 -0500 | [diff] [blame] | 30 | |
| 31 | \bibliography{\jobname} |
| 32 | |
| 33 | \counterwithout{section}{chapter} |
| 34 | \makechapterstyle{mydefault}{ |
| 35 | \addtocounter{secnumdepth}{2} |
brentthorne | 7fa24a2 | 2018-12-04 09:53:19 -0500 | [diff] [blame] | 36 | \setsecheadstyle{\Large\color{red}\textbf} |
brentthorne | 8241b94 | 2018-12-03 23:51:48 -0500 | [diff] [blame] | 37 | \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 | |
brentthorne | 8241b94 | 2018-12-03 23:51:48 -0500 | [diff] [blame] | 54 | %define column spacing |
| 55 | \setlength\columnsep{1.2in} |
| 56 | |
| 57 | %spacing after section head title |
brentthorne | 7fa24a2 | 2018-12-04 09:53:19 -0500 | [diff] [blame] | 58 | \setaftersecskip{0.3in} |
| 59 | \setbeforesecskip{1in} |
brentthorne | 8241b94 | 2018-12-03 23:51:48 -0500 | [diff] [blame] | 60 | |
| 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 |
brentthorne | 7fa24a2 | 2018-12-04 09:53:19 -0500 | [diff] [blame] | 71 | \huge\textbf{$title$}\\[0.3in] |
| 72 | \large $author$\par |
brentthorne | 8241b94 | 2018-12-03 23:51:48 -0500 | [diff] [blame] | 73 | \endgroup |
| 74 | \vspace{1.2in} |
| 75 | % end title section ------------------- |
| 76 | |
| 77 | % Brgin body of poster |
| 78 | \begin{multicols*}{3} |
brentthorne | 7fa24a2 | 2018-12-04 09:53:19 -0500 | [diff] [blame] | 79 | \small{\noindent |
brentthorne | 8241b94 | 2018-12-03 23:51:48 -0500 | [diff] [blame] | 80 | $body$ |
| 81 | \printbibliography |
| 82 | } |
| 83 | \end{multicols*} |
| 84 | |
| 85 | %end the poster |
| 86 | \end{document} |