brentthorne | 8241b94 | 2018-12-03 23:51:48 -0500 | [diff] [blame^] | 1 | %brent's poster layout :) |
| 2 | |
| 3 | \documentclass[60pt,extrafontsizes]{memoir} |
| 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 |
| 17 | \setsecheadstyle{\small\bfseries\color{red}} |
| 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 | |
| 26 | \usepackage[style=authoryear-comp,backend=biber]{biblatex} |
| 27 | |
| 28 | \bibliography{\jobname} |
| 29 | |
| 30 | \counterwithout{section}{chapter} |
| 31 | \makechapterstyle{mydefault}{ |
| 32 | \addtocounter{secnumdepth}{2} |
| 33 | \setsecheadstyle{\small\color{red}\textbf} |
| 34 | \setsubsecheadstyle{\itshape} |
| 35 | \setsubsubsecheadstyle{\itshape} |
| 36 | } |
| 37 | |
| 38 | \chapterstyle{mydefault} |
| 39 | |
| 40 | |
| 41 | \defbibheading{bibliography}[\bibname]{% |
| 42 | \section*{#1}% |
| 43 | \markboth{#1}{#1}} |
| 44 | |
| 45 | |
| 46 | \AtBeginDocument{% |
| 47 | \renewcommand{\bibname}{References} |
| 48 | } |
| 49 | |
| 50 | |
| 51 | |
| 52 | %define column spacing |
| 53 | \setlength\columnsep{1.2in} |
| 54 | |
| 55 | %spacing after section head title |
| 56 | \setaftersecskip{1sp} |
| 57 | \setbeforesecskip{0.5in} |
| 58 | |
| 59 | \setlength{\parskip}{0pt} |
| 60 | |
| 61 | %begin the document |
| 62 | \begin{document} |
| 63 | |
| 64 | |
| 65 | % group which adds title author and other infor |
| 66 | % Used instead of \maketitle for better spacing options |
| 67 | \begingroup |
| 68 | \centering |
| 69 | \textbf{$title$}\\[0.3in] |
| 70 | \footnotesize $author$\par |
| 71 | \endgroup |
| 72 | \vspace{1.2in} |
| 73 | % end title section ------------------- |
| 74 | |
| 75 | % Brgin body of poster |
| 76 | \begin{multicols*}{3} |
| 77 | \scriptsize{\noindent |
| 78 | $body$ |
| 79 | \printbibliography |
| 80 | } |
| 81 | \end{multicols*} |
| 82 | |
| 83 | %end the poster |
| 84 | \end{document} |