Brent Thorne | 425961c | 2018-12-03 13:56:09 -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{multicol} |
| 8 | |
| 9 | %define poster size |
| 10 | \usepackage[paperwidth=45in,paperheight=38in, text={7in,10in},centering, margin=1in]{geometry} |
| 11 | |
| 12 | %define column spacing |
| 13 | \setlength\columnsep{1.5in} |
| 14 | |
| 15 | %begin the document |
| 16 | \begin{document} |
| 17 | |
| 18 | |
| 19 | % group which adds title author and other infor |
| 20 | % Used instead of \maketitle for better spacing options |
| 21 | \begingroup |
| 22 | \centering |
| 23 | \LARGE $title$\\[0.3in] |
| 24 | \footnotesize $author$\par |
| 25 | \endgroup |
| 26 | |
| 27 | \vspace{2in} |
| 28 | % end title section ------------------- |
| 29 | |
| 30 | % Brgin body of poster |
| 31 | \begin{multicols*}{3} |
| 32 | \footnotesize{ |
| 33 | $body$ |
| 34 | } |
| 35 | \end{multicols*} |
| 36 | %end the poster |
| 37 | \end{document} |