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} |
Brent Thorne | 81d634a | 2018-12-03 15:00:57 -0500 | [diff] [blame] | 7 | \usepackage[T1]{fontenc} |
| 8 | \usepackage{palatino} |
Brent Thorne | 425961c | 2018-12-03 13:56:09 -0500 | [diff] [blame] | 9 | \usepackage{multicol} |
Brent Thorne | 81d634a | 2018-12-03 15:00:57 -0500 | [diff] [blame] | 10 | \usepackage{graphicx} |
| 11 | |
| 12 | % this is for keeping figures within the coloumns ---- |
| 13 | \usepackage{nonfloat} |
| 14 | |
| 15 | \newcommand\myfigure[1]{% |
| 16 | \medskip\noindent\begin{minipage}{\columnwidth} |
| 17 | \centering% |
| 18 | #1% |
| 19 | %figure,caption, and label go here |
| 20 | \end{minipage}\medskip} |
| 21 | %----------------------------------------------------- |
| 22 | |
Brent Thorne | 425961c | 2018-12-03 13:56:09 -0500 | [diff] [blame] | 23 | |
| 24 | %define poster size |
| 25 | \usepackage[paperwidth=45in,paperheight=38in, text={7in,10in},centering, margin=1in]{geometry} |
| 26 | |
| 27 | %define column spacing |
| 28 | \setlength\columnsep{1.5in} |
| 29 | |
| 30 | %begin the document |
| 31 | \begin{document} |
| 32 | |
| 33 | |
| 34 | % group which adds title author and other infor |
| 35 | % Used instead of \maketitle for better spacing options |
| 36 | \begingroup |
| 37 | \centering |
| 38 | \LARGE $title$\\[0.3in] |
| 39 | \footnotesize $author$\par |
| 40 | \endgroup |
| 41 | |
| 42 | \vspace{1in} |
| 43 | % end title section ------------------- |
| 44 | |
| 45 | % Brgin body of poster |
| 46 | \begin{multicols*}{3} |
| 47 | \footnotesize{ |
| 48 | $body$ |
| 49 | } |
| 50 | \end{multicols*} |
| 51 | %end the poster |
| 52 | \end{document} |