LaTeX templates with Oxford branding & (optionally) MF group branding
Currently available:
oxslidesA class which inherits frombeamer, for generating slideshows. Seeexamples/oxslides_example.pdf.oxposterAtikzposterstyle, for generating A0 posters. Seeexamples/oxposter_example.pdf
The install.py has been tested on both Linux and Windows systems which have a
TexLive installation. I have not checked if it works with other TeX distributions
(MikTex etc.).
simon@computer:~$ git clone https://github.com/foroozandehgroup/tex_templates.git
simon@computer:~$ cd tex_templates
simon@computer:~/tex_templates$ python3.8 install.py # Python3.8 or higher needed.
ALL OF THESE MUST BE COMPILED WITH xelatex
mfbrandingAs well as the Oxford logo on the right of the slide header, the MF group logo will be placed on the left of the slide header.
% MF group branding
\documentclass[mfbranding]{oxslides}
% Only Oxford branding
% \documentclass{oxslides}
\title{TITLE}
\author{AUTHOR}
\email{EMAIL}
\date{DATE}
\begin{document}
\begin{frame}
\maketitle
\end{frame}
...
\end{document}
mfbrandingAs well as the Oxford logo on the right of the title, the MF group logo will be place to the left of the title.centertitleIfmfbrandingis not given, by default the title will be slightly shifted from center. Including thecentertitleoption will center the title.
The title can be a bit tricky to setup. I recommend you use the following command:
\title{\parbox{0.8\linewidth}{\centering<YOUR TITLE HERE>}}
% MF Group branding
\documentclass[mfbranding]{oxposter}
% Only Oxford branding, title slightly displaced fto left of poster center.
% \documentclass{oxposter}
% Only Oxford branding, title is centered.
% \documentclass[centertitle]{oxposter}
\title{TITLE}
\author{AUTHOR}
\institute{INSTITUTE}
\begin{document}
\maketitle
...
\end{document}