
OIST LaTeX Template: OIST Posters
Author:
Jeremie Gillet
Last Updated:
4 anni fa
License:
Other (as stated in the work)
Abstract:
OIST LaTeX Template: OIST Posters

\begin
Discover why over 20 million people worldwide trust Overleaf with their work.
OIST LaTeX Template: OIST Posters

\begin
Discover why over 20 million people worldwide trust Overleaf with their work.
% Poster Template for the Okinawa Institute of Science and Technology (OIST)
% Created by Jeremie Gillet on June 2019
\documentclass[
    a0paper, % Size of poster
    landscape, % Orientation
    fontscale=0.3 % General scaling for fonts, increase the number for smaller fonts (considered removing text first)
    ]{baposter}
% Graphics
\usepackage{graphicx} % Required for including images
\graphicspath{{figures/}} % Directory in which figures are stored
% Add any packages you need here
\usepackage{amsmath} % For typesetting math
\usepackage{lipsum}  % For dummy text
% Defining colors
\selectcolormodel{HTML}
\definecolor{OIST}{HTML}{C80019} 
\definecolor{DarkRed}{RGB}{100,0,10}
% Changing fonts family
\renewcommand{\familydefault}{\sfdefault}
\usepackage{helvet}
% Starting document, feel free to change the style of headers and boxes
% Documentation can be found here: http://www.brian-amberg.de/uni/poster/
% Unfortunately it is not very complete
\begin{document}
\begin{poster}{ % General poster options
    columns=4, % Number of columns, maximum 6
    eyecatcher=true, % Set to false for ignoring the left logo in the title and move the title left
    background=none, % No background
    linewidth=1pt, % Width of the border lines around content boxes
    textborder=rectangle, % Format of the border around content boxes, can be: none, bars, coils, triangles, rectangle, rounded, roundedsmall, roundedright or faded
    borderColor=OIST, % Border color
    headerheight=0.15 \textheight, % Height of the header
    headershape=rectangle, % Specify the rounded corner in the content box headers, can be: rectangle, small-rounded, roundedright, roundedleft or rounded
    headerfont=\large \sf \bf, % Large, bold and sans serif font in the headers of content boxes
    headerborder=closed, % Adds a border around the header of content boxes
    headershade=plain, % Single color in the background
    headerColorOne=white, % Background color for the header in the content boxes
    headerFontColor=DarkRed, % Text color for the header text in the content boxes
    boxColorOne=white, % Background color of the content boxes
} 
{ \includegraphics[height=.75 \headerheight]{logo.jpg} } % Eyecatcher on the left
{ \color{OIST}\huge Title of the poster } % Poster title
{ \color{OIST}\small
  \vspace{1em} 
  Author\\
  Email\\
  Okinawa Institute of Science and Technology
} % Authors
{ \includegraphics[height=.75 \headerheight]{logo.jpg} } % Eyecatcher on the right
\begin{posterbox}[
    name = box1,  % Name for alignment 
    column = 0, % First column 
    ]{Box title}
    Enter your own content boxes, aligned with whichever complex alignments
\end{posterbox}
\begin{posterbox}[
    name = box2,  % Name for alignment 
    column = 0, % First column 
    below = box1, % Alignment
    ]{Box title}
    \lipsum[1]
\end{posterbox}
\begin{posterbox}[
    name = box3,  % Name for alignment 
    column = 0, % First column 
    below = box2, % Alignment
    ]{Box title}
    \lipsum[1]
\end{posterbox}
\begin{posterbox}[
    name = box4,  % Name for alignment 
    column = 1, % First column 
    span = 3, % Vertical span of columns
    ]{Box title}
    \lipsum[1]
\end{posterbox}
\begin{posterbox}[
    name = box5,  % Name for alignment 
    column = 1, % First column 
    below = box4, % Alignment
    ]{Box title}
    \lipsum[1]
\end{posterbox}
\begin{posterbox}[
    name = box6,  % Name for alignment 
    column = 2, % First column 
    span = 2, % Vertical span of columns
    below = box4, % Alignment
    bottomaligned = box5, % Alignment
    ]{Box title}
    \lipsum[1]
\end{posterbox}
% References, if required
\begin{posterbox}[
    name = references,  % Name for alignment 
    column = 3, % Last column 
    below = box6, % Alignment
    ]{References}
    \renewcommand{\section}[2]{} % Get rid of the default "References" section title
    \nocite{*} % Insert publications even if they are not cited in the poster
    \bibliography{Bibliography}
    \bibliographystyle{abbrv}
\end{posterbox}
\end{poster}
\end{document}