├── .gitignore ├── LICENSE ├── README.md ├── beamerthemeOxford.sty ├── ox_brand_cmyk_rev.pdf ├── oxford_poster.bib ├── oxford_poster.pdf ├── oxford_poster.tex ├── oxford_poster_landscape.png └── oxford_poster_portrait.png /.gitignore: -------------------------------------------------------------------------------- 1 | ## Core latex/pdflatex auxiliary files: 2 | *.aux 3 | *.lof 4 | *.log 5 | *.lot 6 | *.fls 7 | *.out 8 | *.toc 9 | *.fmt 10 | *.fot 11 | *.cb 12 | *.cb2 13 | 14 | ## Intermediate documents: 15 | *.dvi 16 | *-converted-to.* 17 | # these rules might exclude image files for figures etc. 18 | # *.ps 19 | # *.eps 20 | # *.pdf 21 | 22 | ## Bibliography auxiliary files (bibtex/biblatex/biber): 23 | *.bbl 24 | *.bcf 25 | *.blg 26 | *-blx.aux 27 | *-blx.bib 28 | *.brf 29 | *.run.xml 30 | 31 | ## Build tool auxiliary files: 32 | *.fdb_latexmk 33 | *.synctex 34 | *.synctex.gz 35 | *.synctex.gz(busy) 36 | *.pdfsync 37 | 38 | ## Auxiliary and intermediate files from other packages: 39 | # algorithms 40 | *.alg 41 | *.loa 42 | 43 | # achemso 44 | acs-*.bib 45 | 46 | # amsthm 47 | *.thm 48 | 49 | # beamer 50 | *.nav 51 | *.snm 52 | *.vrb 53 | 54 | # cprotect 55 | *.cpt 56 | 57 | # fixme 58 | *.lox 59 | 60 | #(r)(e)ledmac/(r)(e)ledpar 61 | *.end 62 | *.?end 63 | *.[1-9] 64 | *.[1-9][0-9] 65 | *.[1-9][0-9][0-9] 66 | *.[1-9]R 67 | *.[1-9][0-9]R 68 | *.[1-9][0-9][0-9]R 69 | *.eledsec[1-9] 70 | *.eledsec[1-9]R 71 | *.eledsec[1-9][0-9] 72 | *.eledsec[1-9][0-9]R 73 | *.eledsec[1-9][0-9][0-9] 74 | *.eledsec[1-9][0-9][0-9]R 75 | 76 | # glossaries 77 | *.acn 78 | *.acr 79 | *.glg 80 | *.glo 81 | *.gls 82 | *.glsdefs 83 | 84 | # gnuplottex 85 | *-gnuplottex-* 86 | 87 | # hyperref 88 | *.brf 89 | 90 | # knitr 91 | *-concordance.tex 92 | # TODO Comment the next line if you want to keep your tikz graphics files 93 | *.tikz 94 | *-tikzDictionary 95 | 96 | # listings 97 | *.lol 98 | 99 | # makeidx 100 | *.idx 101 | *.ilg 102 | *.ind 103 | *.ist 104 | 105 | # minitoc 106 | *.maf 107 | *.mlf 108 | *.mlt 109 | *.mtc 110 | *.mtc[0-9] 111 | *.mtc[1-9][0-9] 112 | 113 | # minted 114 | _minted* 115 | *.pyg 116 | 117 | # morewrites 118 | *.mw 119 | 120 | # mylatexformat 121 | *.fmt 122 | 123 | # nomencl 124 | *.nlo 125 | 126 | # sagetex 127 | *.sagetex.sage 128 | *.sagetex.py 129 | *.sagetex.scmd 130 | 131 | # sympy 132 | *.sout 133 | *.sympy 134 | sympy-plots-for-*.tex/ 135 | 136 | # pdfcomment 137 | *.upa 138 | *.upb 139 | 140 | # pythontex 141 | *.pytxcode 142 | pythontex-files-*/ 143 | 144 | # thmtools 145 | *.loe 146 | 147 | # TikZ & PGF 148 | *.dpth 149 | *.md5 150 | *.auxlock 151 | 152 | # todonotes 153 | *.tdo 154 | 155 | # xindy 156 | *.xdy 157 | 158 | # xypic precompiled matrices 159 | *.xyc 160 | 161 | # endfloat 162 | *.ttt 163 | *.fff 164 | 165 | # Latexian 166 | TSWLatexianTemp* 167 | 168 | ## Editors: 169 | # WinEdt 170 | *.bak 171 | *.sav 172 | 173 | # Texpad 174 | .texpadtmp 175 | 176 | # Kile 177 | *.backup 178 | 179 | # KBibTeX 180 | *~[0-9]* 181 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Atılım Güneş Baydin 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # oxford-poster 2 | A [LaTeX](https://en.wikipedia.org/wiki/LaTeX) [beamer](https://en.wikipedia.org/wiki/Beamer_(LaTeX)) poster style themed for the [University of Oxford](http://www.ox.ac.uk/). 3 | 4 | Atılım Güneş Baydin , November 2016. 5 | 6 | Defaults to A0 size. Needs a bit of clean up and tweaking. 7 | 8 | Based on the [latex-beamerposter](https://github.com/deselaers/latex-beamerposter) package by Philippe Dreuw and Thomas Deselaers. 9 | 10 | ### Example 11 | 12 | #### Landscape 13 | 14 | ![landscape](https://github.com/gbaydin/oxford-poster/raw/master/oxford_poster_landscape.png) 15 | 16 | #### Portrait 17 | ![portrait](https://github.com/gbaydin/oxford-poster/raw/master/oxford_poster_portrait.png) 18 | -------------------------------------------------------------------------------- /beamerthemeOxford.sty: -------------------------------------------------------------------------------- 1 | % A beamer poster style for the University of Oxford. Atilim Gunes Baydin , November 2016. 2 | % Based on the I6pd2 style created by Thomas Deselaers an Philippe Dreuw. 3 | \ProvidesPackage{beamerthemeOxford} 4 | 5 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 6 | % \RequirePackage{tangocolors} 7 | \RequirePackage{wrapfig} 8 | %\selectcolormodel{cmyk} 9 | \mode 10 | 11 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 12 | \definecolor{lightgrey}{rgb}{0.95,0.95,0.95} % Defines the color used for content box headers 13 | \definecolor{bluetinge}{rgb}{0.9,0.95,1} 14 | \definecolor{oxfordblue}{RGB}{0,33,71} % Pantone 282, Hex #002147, RGB 0 33 71, CMYK 100 80 0 60 15 | \definecolor{darkgreen}{rgb}{0,.4,0} 16 | 17 | \setbeamercolor{headline}{fg=oxfordblue,bg=oxfordblue} 18 | \setbeamercolor{footline}{fg=oxfordblue,bg=white} 19 | \setbeamerfont{footline}{size=\large,series=\tt} 20 | \setbeamercolor{separation line}{bg=white} 21 | \setbeamercolor{title in headline}{fg=white} 22 | \setbeamercolor{author in headline}{fg=white} 23 | \setbeamercolor{institute in headline}{fg=white} 24 | 25 | \setbeamercolor{framesubtitle}{fg=white, bg=oxfordblue} 26 | \setbeamercolor{author in head/foot}{fg=white, bg=oxfordblue} 27 | \setbeamercolor{title in head/foot}{fg=white, bg=oxfordblue} 28 | 29 | \setbeamercolor*{normal text}{fg=black, bg=white} 30 | \setbeamercolor*{block body}{bg=lightgrey,fg=oxfordblue} 31 | \setbeamercolor*{block title}{fg=white,bg=oxfordblue} 32 | \setbeamerfont{block title}{size=\large,series=\bf} 33 | \setbeamercolor{upper separation line head}{fg=oxfordblue} 34 | 35 | \setbeamercolor*{example body}{fg=lightgrey,bg=oxfordblue} 36 | \setbeamercolor*{example text}{fg=lightgrey,bg=oxfordblue} 37 | \setbeamercolor*{example title}{bg=white,fg=ta2gray} 38 | 39 | %\setbeamercolor{alerted text}{fg=ta3gray} 40 | 41 | %\setbeamercolor{example text}{fg=taorange} 42 | \setbeamercolor{structure}{fg=oxfordblue} 43 | 44 | \setbeamertemplate{itemize items}[triangle] 45 | \setbeamertemplate{navigation symbols}{} % no navigation on a poster 46 | 47 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 48 | \setbeamertemplate{block begin}{ 49 | \vskip.75ex 50 | \begin{beamercolorbox}[ht=3.5ex,dp=0.5ex,center,leftskip=-1em,colsep*=.75ex]{block title}% 51 | \usebeamerfont*{block title}% 52 | \vspace{-7pt} 53 | {\hspace{-21pt}\phantom{Gg}\insertblocktitle}% phantom because of baseline problem 54 | \end{beamercolorbox}% 55 | {\ifbeamercolorempty[bg]{block body}{}{\nointerlineskip\vskip-0.5pt}}% 56 | \usebeamerfont{block body}% 57 | \begin{beamercolorbox}[leftskip=10pt,colsep*=.75ex,sep=0.5ex,vmode]{block body}% 58 | \justifying 59 | \ifbeamercolorempty[bg]{block body}{\vskip-.25ex}{\vskip-.75ex}\vbox{}% 60 | } 61 | \setbeamertemplate{block end}{ 62 | \end{beamercolorbox} 63 | } 64 | 65 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 66 | \setbeamertemplate{headline}{ 67 | \leavevmode 68 | \begin{beamercolorbox}[wd=\paperwidth]{headline} 69 | \begin{columns}[T] 70 | \begin{column}{.015\paperwidth} 71 | \end{column} 72 | \begin{column}{.71\paperwidth} 73 | \vskip4ex 74 | \vspace{20pt} 75 | \raggedright 76 | \usebeamercolor{title in headline}{\color{fg}\textbf{\LARGE{\inserttitle}}\\[1ex]} 77 | \vspace{20pt} 78 | \usebeamercolor{author in headline}{\color{fg}\large{\insertauthor}\\[1ex]} 79 | \vspace{-5pt} 80 | \usebeamercolor{institute in headline}{\color{fg}\large{\insertinstitute}\\[1ex]} 81 | \vspace{0pt} 82 | \end{column} 83 | \begin{column}{.226\paperwidth} 84 | \vskip11ex 85 | \vspace{-30pt} 86 | \begin{center} 87 | \hfill 88 | \includegraphics[height=9cm]{ox_brand_cmyk_rev.pdf} 89 | %\begin{wrapfigure}{r}{0.35\linewidth} 90 | %\colorbox{white}{\includegraphics[width=.35\linewidth]{LiU_primary_black}} \\ 91 | %\includegraphics[width=.35\linewidth]{uppsalalogo.png} 92 | %\end{wrapfigure} 93 | \end{center} 94 | \vskip2ex 95 | \end{column} 96 | \begin{column}{.02\paperwidth} 97 | \end{column} 98 | \end{columns} 99 | \vskip2ex 100 | \end{beamercolorbox} 101 | 102 | \begin{beamercolorbox}[wd=\paperwidth]{lower separation line head} 103 | \rule{0pt}{3pt} 104 | \end{beamercolorbox} 105 | } 106 | 107 | % \setbeamertemplate{headline}{ 108 | % \leavevmode 109 | % \begin{beamercolorbox}[sep=0.5cm,wd=.8\paperwidth]{headline} 110 | % \usebeamercolor{title in headline}{\raggedleft\color{fg}\textbf{\LARGE{\inserttitle}}\\[1ex]} 111 | % \usebeamercolor{author in headline}{\raggedleft\color{fg}\large{\insertauthor}\\[1ex]} 112 | % \usebeamercolor{institute in headline}{\raggedleft\color{fg}\large{\insertinstitute}\\[1ex]} 113 | % \end{beamercolorbox}% 114 | % \begin{beamercolorbox}[wd=.2\paperwidth]{logo in headline} 115 | % \centering 116 | % \LARGE{LOGO} 117 | % \end{beamercolorbox} 118 | 119 | 120 | %} 121 | 122 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 123 | \setbeamertemplate{footline}{ 124 | \begin{beamercolorbox}[wd=\paperwidth]{upper separation line foot} 125 | \rule{0pt}{3pt} 126 | \end{beamercolorbox} 127 | 128 | \leavevmode% 129 | % \begin{beamercolorbox}[ht=2ex,leftskip=1em,rightskip=1em]{author in head/foot}% 130 | % \texttt{\leftfoot} 131 | % \hfill 132 | % \texttt{\rightfoot} 133 | % \vskip1ex 134 | % \end{beamercolorbox} 135 | %\vskip0pt% 136 | %\begin{beamercolorbox}[wd=\paperwidth]{lower separation line foot} 137 | % \rule{0pt}{3pt} 138 | %\end{beamercolorbox} 139 | } 140 | 141 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 142 | % Display a grid to help align images ... and it looks nice with this color scheme 143 | %\beamertemplategridbackground[1cm] 144 | 145 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 146 | \mode 147 | 148 | % adapt height of imtemize rectangles 149 | \setbeamertemplate{itemize items}[triangle] 150 | \setbeamertemplate{itemize item}{\raisebox{0.12ex}{$\blacktriangleright$}\hskip0.1em} 151 | \setbeamertemplate{itemize subitem}{\raisebox{0.12ex}{$\triangleright$}\hskip0.1em} 152 | % or define your own template using \defbeamertemplate{itemize item}, see beameruserguide.pdf 153 | 154 | % equal font sizes for all levels 155 | \setbeamerfont{itemize/enumerate body}{size=\normalsize} 156 | \setbeamerfont{itemize/enumerate subbody}{size=\normalsize} 157 | \setbeamerfont{itemize/enumerate subsubbody}{size=\normalsize} 158 | 159 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 160 | %%% Local Variables: 161 | %%% mode: latex 162 | %%% TeX-PDF-mode: t 163 | %%% TeX-master: "poster-surf" 164 | %%% End: 165 | 166 | % set bibliography style 167 | \setbeamertemplate{bibliography item}[text] 168 | \setbeamercolor{bibliography item}{fg=black,bg=black} 169 | \setbeamercolor{bibliography entry author}{fg=black,bg=black} 170 | \setbeamercolor{bibliography item}{fg=black,bg=black} 171 | 172 | \setbeamertemplate{bibliography entry title}{} 173 | \setbeamertemplate{bibliography entry location}{} 174 | \setbeamertemplate{bibliography entry note}{} -------------------------------------------------------------------------------- /ox_brand_cmyk_rev.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaydin/oxford-poster/11dd39013047acfca8989f5eb222cf11017a1c89/ox_brand_cmyk_rev.pdf -------------------------------------------------------------------------------- /oxford_poster.bib: -------------------------------------------------------------------------------- 1 | @inproceedings{le-2016-inference-compilation, 2 | author = {Le, Tuan Anh and Baydin, Atılım Güneş and Wood, Frank}, 3 | booktitle = {Proceedings of the 20th International Conference on Artificial Intelligence and Statistics (AISTATS)}, 4 | title = {Inference Compilation and Universal Probabilistic Programming}, 5 | year = {2017}, 6 | volume = {54}, 7 | pages = {1338--1348}, 8 | series = {Proceedings of Machine Learning Research}, 9 | address = {Fort Lauderdale, FL, USA}, 10 | publisher = {PMLR} 11 | } 12 | 13 | -------------------------------------------------------------------------------- /oxford_poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaydin/oxford-poster/11dd39013047acfca8989f5eb222cf11017a1c89/oxford_poster.pdf -------------------------------------------------------------------------------- /oxford_poster.tex: -------------------------------------------------------------------------------- 1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2 | % A beamer poster style for the University of Oxford. Atilim Gunes Baydin , November 2016. 3 | % Based on the I6pd2 style created by Thomas Deselaers an Philippe Dreuw. 4 | % 5 | % Dreuw & Deselaer's Poster 6 | % LaTeX Template 7 | % Version 1.0 (11/04/13) 8 | % 9 | % Created by: 10 | % Philippe Dreuw and Thomas Deselaers 11 | % http://www-i6.informatik.rwth-aachen.de/~dreuw/latexbeamerposter.php 12 | % 13 | % This template has been downloaded from: 14 | % http://www.LaTeXTemplates.com 15 | % 16 | % License: 17 | % CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/) 18 | % 19 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 20 | 21 | %---------------------------------------------------------------------------------------- 22 | % PACKAGES AND OTHER DOCUMENT CONFIGURATIONS 23 | %---------------------------------------------------------------------------------------- 24 | 25 | \documentclass[final,hyperref={pdfpagelabels=false}]{beamer} 26 | 27 | \usepackage[orientation=landscape,size=a0,scale=1.3]{beamerposter} % Use the beamerposter package for laying out the poster with a portrait orientation and an a0 paper size 28 | 29 | \usetheme{Oxford} 30 | 31 | \usepackage[utf8]{inputenc} % allow utf-8 input 32 | \usepackage{blindtext} 33 | \usepackage{amsmath,amsthm,amssymb,latexsym} % For including math equations, theorems, symbols, etc 34 | \usepackage[document]{ragged2e} 35 | \usepackage{times}\usefonttheme{professionalfonts} % Uncomment to use Times as the main font 36 | \usefonttheme[onlymath]{serif} % Uncomment to use a Serif font within math environments 37 | %\boldmath % Use bold for everything within the math environment 38 | \usepackage{booktabs} % Top and bottom rules for tables 39 | \usepackage{microtype} 40 | 41 | \usecaptiontemplate{\small\structure{\insertcaptionname~\insertcaptionnumber: }\insertcaption} % A fix for figure numbering 42 | 43 | \newcommand{\shrink}{-15pt} 44 | 45 | \def\imagetop#1{\vtop{\null\hbox{#1}}} 46 | 47 | \let\oldbibliography\thebibliography 48 | \renewcommand{\thebibliography}[1]{\oldbibliography{#1} 49 | \setlength{\itemsep}{-10pt}} 50 | 51 | %---------------------------------------------------------------------------------------- 52 | % TITLE SECTION 53 | %---------------------------------------------------------------------------------------- 54 | \title{\Huge Oxford\\ Beamer Poster} % Poster title 55 | \author{Author 1, Author 2, Author 3} 56 | \institute{Department of Engineering Science, University of Oxford\\\vspace{4mm} 57 | \texttt{\{author1,author2,author3\}@robots.ox.ac.uk}} 58 | 59 | %---------------------------------------------------------------------------------------- 60 | % FOOTER TEXT 61 | %---------------------------------------------------------------------------------------- 62 | \newcommand{\leftfoot}{} % Left footer text 63 | \newcommand{\rightfoot}{} % Right footer text 64 | 65 | 66 | %---------------------------------------------------------------------------------------- 67 | 68 | \begin{document} 69 | \addtobeamertemplate{block end}{}{\vspace*{2ex}} % White space under blocks 70 | 71 | \begin{frame}[t] % The whole poster is enclosed in one beamer frame 72 | 73 | \begin{columns}[t] % The whole poster consists of three major columns, each of which can be subdivided further with another \begin{columns} block - the [t] argument aligns each column's content to the top 74 | 75 | \begin{column}{.02\textwidth}\end{column} % Empty spacer column 76 | 77 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 78 | %% Column 1 79 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 80 | 81 | \begin{column}{.3\textwidth} % 1st column 82 | 83 | \vspace{\shrink} 84 | \begin{block}{Overview} 85 | \begin{itemize} 86 | \item Overview 1 87 | \item Overview 2 88 | \item Overview 3 89 | \item Overview 4 90 | \end{itemize} 91 | \end{block} 92 | 93 | \begin{block}{Another block} 94 | Block text \cite{le-2016-inference-compilation}... 95 | \end{block} 96 | \end{column} % End of the 1st column 97 | 98 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 99 | %% Column 2 100 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 101 | 102 | \begin{column}{.02\textwidth}\end{column} % Empty spacer column 103 | 104 | \begin{column}{.3\textwidth} % 2nd column 105 | \vspace{\shrink} 106 | \begin{block}{Method} 107 | \textbf{Method details.} We formulate... $\mathcal S = \{s_1, s_2, s_3, s_4, s_5, s_6 \}$ 108 | 109 | Image example: 110 | \begin{center} 111 | \includegraphics[width=0.9\columnwidth]{ox_brand_cmyk_rev} 112 | \end{center} 113 | \end{block} 114 | 115 | \end{column} % End of the 2nd column 116 | 117 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 118 | %% Column 3 119 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 120 | 121 | \begin{column}{.02\textwidth}\end{column} % Empty spacer column 122 | 123 | \begin{column}{.3\textwidth} % 3rd column 124 | 125 | \begin{block}{Results} 126 | Results... 127 | \end{block} 128 | 129 | \begin{block}{References} 130 | \nocite{*} % Insert publications even if they are not cited in the poster 131 | \linespread{0.928}\selectfont 132 | \footnotesize{\bibliographystyle{unsrt} 133 | \bibliography{oxford_poster}} 134 | \end{block} 135 | 136 | \end{column} % End of the 3rd column 137 | 138 | \begin{column}{.02\textwidth}\end{column} % Empty spacer column 139 | 140 | \end{columns} % End of all the columns in the poster 141 | 142 | \end{frame} % End of the enclosing frame 143 | 144 | \end{document} -------------------------------------------------------------------------------- /oxford_poster_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaydin/oxford-poster/11dd39013047acfca8989f5eb222cf11017a1c89/oxford_poster_landscape.png -------------------------------------------------------------------------------- /oxford_poster_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaydin/oxford-poster/11dd39013047acfca8989f5eb222cf11017a1c89/oxford_poster_portrait.png --------------------------------------------------------------------------------