TemplateTalks & posterspostertalk
Gemini Poster
A modern A0 portrait poster on the Gemini beamerposter theme, Raleway and Lato typography, compiled with lualatex.
MIT (gemini theme)
Loading PDF preview…
This workspace is set up as an A0 conference poster on the Gemini theme, with a title bar and blocks for introduction, method, results, and conclusion. Tell me what the poster presents, or paste your paper, and I will draft the content into the blocks.
What’s inside
- Starter files
main.tex3.3 KB
% !TeX program = lualatex % Gemini theme, https://github.com/anishathalye/gemini \documentclass[final]{beamer} \usepackage[T1]{fontenc} \usepackage{lmodern} \usepackage[size=custom,width=84.1,height=118.9,scale=1.0]{beamerposter} \usetheme{gemini} \usecolortheme{gemini} \usepackage{booktabs} \usepackage{pgfplots} \pgfplotsset{compat=1.18} % If you have N columns, choose \sepwidth and \colwidth such that % (N+1)*\sepwidth + N*\colwidth = \paperwidth \newlength{\sepwidth} \newlength{\colwidth} \setlength{\sepwidth}{0.03\paperwidth} \setlength{\colwidth}{0.455\paperwidth} \newcommand{\separatorcolumn}{\begin{column}{\sepwidth}\end{column}} \title{A Descriptive Poster Title That States the Finding} \author{Your Name \inst{1} \and A Coauthor \inst{2}} \institute[shortinst]{\inst{1} Your Institution \samelineand \inst{2} Another Institution} \footercontent{ \href{https://example.com}{https://example.com} \hfill Conference 2026 \hfill \href{mailto:you@example.com}{you@example.com}} \begin{document} \begin{frame}[t] \begin{columns}[t] \separatorcolumn \begin{column}{\colwidth} \begin{block}{Introduction} State the problem, why it matters, and the one-sentence contribution. Posters are read in under two minutes: lead with the finding, not the background. \end{block} \begin{block}{Method} We minimize a regularized objective over parameters $\theta$: \begin{equation*} \hat{\theta} = \arg\min_{\theta}\; \frac{1}{n}\sum_{i=1}^{n} \ell\bigl(f_\theta(x_i), y_i\bigr) + \lambda \|\theta\|_2^2 . \end{equation*} \heading{The key idea} Describe the model and estimation procedure in a short paragraph, then note the one trick that makes it work. \end{block} \begin{alertblock}{Takeaway} One sentence a passerby should remember after reading nothing else. \end{alertblock} \end{column} \separatorcolumn \begin{column}{\colwidth} \begin{block}{Results} \begin{figure} \centering \begin{tikzpicture} \begin{axis}[width=0.8\textwidth, height=0.5\textwidth, xlabel={Training set size}, ylabel={Accuracy (\%)}, legend pos=south east, grid=major] \addplot coordinates {(1,62) (2,68) (4,72) (8,74) (16,75)}; \addplot coordinates {(1,66) (2,72) (4,76) (8,78) (16,79)}; \legend{Baseline, Ours} \end{axis} \end{tikzpicture} \caption{Replace with your headline result.} \end{figure} \begin{table} \centering \begin{tabular}{lcc} \toprule Method & Accuracy & Time (s) \\ \midrule Baseline & 71.2 & 12.4 \\ \textbf{Ours} & \textbf{78.3} & 14.0 \\ \bottomrule \end{tabular} \caption{One headline comparison, not the full ablation.} \end{table} \end{block} \begin{block}{Conclusion} Restate the contribution in one line, name the main limitation, and give a pointer to the paper or code. Ask the agent in the chat to draft the poster from your paper. \end{block} \begin{block}{References} \footnotesize \begin{thebibliography}{9} \bibitem{example} A. Author and B. Author. A representative reference. \emph{Journal of Examples}, 2025. \end{thebibliography} \end{block} \end{column} \separatorcolumn \end{columns} \end{frame} \end{document}- Libraries and docs
beamercolorthemegemini.sty1.6 KB
% Gemini theme % https://github.com/anishathalye/gemini % ==================== % Definitions % ==================== \definecolor{lightgray}{RGB}{245, 246, 250} \definecolor{blue}{RGB}{64, 115, 158} \definecolor{darkblue}{RGB}{39, 60, 117} \definecolor{lightblue}{RGB}{232, 244, 255} % ==================== % Theme % ==================== % Basic colors \setbeamercolor{palette primary}{fg=black,bg=white} \setbeamercolor{palette secondary}{fg=black,bg=white} \setbeamercolor{palette tertiary}{bg=black,fg=white} \setbeamercolor{palette quaternary}{fg=black,bg=white} \setbeamercolor{structure}{fg=darkblue} % Headline \setbeamercolor{headline}{fg=lightgray,bg=blue} \setbeamercolor{headline rule}{bg=darkblue} % Block \setbeamercolor{block title}{fg=blue,bg=white} \setbeamercolor{block separator}{bg=black} \setbeamercolor{block body}{fg=black,bg=white} % Alert Block \setbeamercolor{block title alerted}{fg=blue,bg=lightblue} \setbeamercolor{block separator alerted}{bg=black} \setbeamercolor{block body alerted}{fg=black,bg=lightblue} % Example Block \setbeamercolor{block title example}{fg=blue,bg=lightgray} \setbeamercolor{block separator example}{bg=black} \setbeamercolor{block body example}{fg=black,bg=lightgray} % Heading \setbeamercolor{heading}{fg=black} % Itemize \setbeamercolor{item}{fg=darkblue} % Bibliography \setbeamercolor{bibliography item}{fg=black} \setbeamercolor{bibliography entry author}{fg=black} \setbeamercolor{bibliography entry title}{fg=black} \setbeamercolor{bibliography entry location}{fg=black} \setbeamercolor{bibliography entry note}{fg=black}beamerthemegemini.sty6.8 KB
% Gemini theme % https://github.com/anishathalye/gemini % ==================== % Dependencies % ==================== \RequirePackage{exscale} \RequirePackage{ragged2e} \RequirePackage{changepage} \RequirePackage{fontspec} \RequirePackage{calc} % ==================== % Fonts % ==================== \newfontfamily\Raleway[Ligatures=TeX]{Raleway} \newfontfamily\Lato[Ligatures=TeX]{Lato} \usefonttheme{professionalfonts} \setsansfont{Lato}[ UprightFont=*-Light, ItalicFont=*-LightItalic, BoldFont=*-Regular, BoldItalicFont=*-Italic ] \setbeamerfont{headline}{family=\Raleway} \setbeamerfont{headline title}{size=\Huge,series=\bfseries} \setbeamerfont{headline author}{size=\Large} \setbeamerfont{headline institute}{size=\normalsize} \setbeamerfont{block title}{family=\Raleway,size=\large,series=\bfseries} \setbeamerfont{heading}{family=\Lato,series=\bfseries} \setbeamerfont{caption}{size=\small} \setbeamerfont{footline}{family=\Raleway,size=\normalsize} % ==================== % Macros % ==================== \newcommand{\samelineand}{\qquad} % ==================== % Elements % ==================== % List \def\@listi{\leftmargin\leftmargini \topsep 1ex % spacing before \parsep 0\p@ \@plus\p@ \itemsep 0.5ex} % spacing between % Itemize \setbeamertemplate{itemize item}{\raise0.5ex \hbox{\vrule width 0.5ex height 0.5ex}} \setbeamertemplate{itemize subitem}{\raise0.3ex \hbox{\vrule width 0.5ex height 0.5ex}} \setbeamertemplate{itemize subsubitem}{\raise0.2ex \hbox{\vrule width 0.5ex height 0.5ex}} % Enumerate \setbeamertemplate{enumerate item}{\insertenumlabel.} \setbeamertemplate{enumerate subitem}{\insertsubenumlabel.} \setbeamertemplate{enumerate subsubitem}{\insertsubsubenumlabel.} % Equation \setlength\belowdisplayshortskip{2ex} % Caption \setbeamertemplate{caption}[numbered] \setbeamertemplate{caption label separator}[period] \setlength{\abovecaptionskip}{2ex} \setlength{\belowcaptionskip}{1ex} % Bibliography \setbeamertemplate{bibliography item}[text] \setbeamertemplate{bibliography entry article}{} \setbeamertemplate{bibliography entry title}{} \setbeamertemplate{bibliography entry location}{} \setbeamertemplate{bibliography entry note}{} % Navigation \beamertemplatenavigationsymbolsempty % ==================== % Components % ==================== % Heading \newcommand\heading[1] {% \par\bigskip {\usebeamerfont{heading}\usebeamercolor[fg]{heading}#1}\par\smallskip } % logo \newlength{\logoleftwidth} \setlength{\logoleftwidth}{0cm} \newlength{\logorightwidth} \setlength{\logorightwidth}{0cm} \newlength{\maxlogowidth} % space on both sides set to maxlogowidth to keep title centered \setlength{\maxlogowidth}{0cm} \newcommand{\logoright}[1]{ \newcommand{\insertlogoright}{#1} \settowidth{\logorightwidth}{\insertlogoright} \addtolength{\logorightwidth}{10ex} \setlength{\maxlogowidth}{\maxof{\logoleftwidth}{\logorightwidth}} } \newcommand{\logoleft}[1]{ \newcommand{\insertlogoleft}{#1} \settowidth{\logoleftwidth}{\insertlogoleft} \addtolength{\logoleftwidth}{10ex} \setlength{\maxlogowidth}{\maxof{\logoleftwidth}{\logorightwidth}} } % Headline \setbeamertemplate{headline} { \begin{beamercolorbox}{headline} \begin{columns} \begin{column}{\maxlogowidth} \vskip5ex \ifdefined\insertlogoleft \vspace*{\fill} \hspace{10ex} \raggedright \insertlogoleft \vspace*{\fill} \else\fi \end{column} \begin{column}{\dimexpr\paperwidth-\maxlogowidth-\maxlogowidth} \usebeamerfont{headline} \vskip3ex \centering \ifx \inserttitle \empty \else {\usebeamerfont{headline title}\usebeamercolor[fg]{headline title}\inserttitle\\[0.5ex]} \fi \ifx \beamer@shortauthor \empty \else {\usebeamerfont{headline author}\usebeamercolor[fg]{headline author}\insertauthor\\[1ex]} \fi \ifx \insertinstitute \empty \else {\usebeamerfont{headline institute}\usebeamercolor[fg]{headline institute}\insertinstitute\\[1ex]} \fi \end{column} \begin{column}{\maxlogowidth} \vskip5ex \ifdefined\insertlogoright \vspace*{\fill} \raggedleft \insertlogoright \hspace{10ex} \vspace*{\fill} \else\fi \end{column} \end{columns} \vspace{5ex} \ifbeamercolorempty[bg]{headline rule}{}{ \begin{beamercolorbox}[wd=\paperwidth,colsep=0.5ex]{headline rule}\end{beamercolorbox} } \end{beamercolorbox} } % Block \setbeamertemplate{block begin} { \begin{beamercolorbox}[colsep*=0ex,dp=2ex,center]{block title} \vskip0pt \usebeamerfont{block title}\insertblocktitle \vskip-1.25ex \begin{beamercolorbox}[colsep=0.025ex]{block separator}\end{beamercolorbox} \end{beamercolorbox} {\parskip0pt\par} \usebeamerfont{block body} \vskip-0.5ex \begin{beamercolorbox}[colsep*=0ex]{block body} \justifying \setlength{\parskip}{1ex} \vskip-2ex } \setbeamertemplate{block end} { \end{beamercolorbox} \vskip0pt \vspace*{2ex} } % Alert Block \setbeamertemplate{block alerted begin} { \begin{beamercolorbox}[colsep*=0ex,dp=2ex,center]{block title alerted} \vskip0pt \usebeamerfont{block title}\insertblocktitle \vskip-1.25ex \begin{beamercolorbox}[colsep=0.025ex]{block separator alerted}\end{beamercolorbox} \end{beamercolorbox} {\parskip0pt\par} \usebeamerfont{block body} \vskip-0.5ex \begin{beamercolorbox}[colsep*=0ex]{block body alerted} \justifying \begin{adjustwidth}{1ex}{1ex} \setlength{\parskip}{1ex} \vskip-2ex } \setbeamertemplate{block alerted end} { \end{adjustwidth} \vskip1ex \end{beamercolorbox} \vskip0pt \vspace*{2ex} } % Example Block \setbeamertemplate{block example begin} { \begin{beamercolorbox}[colsep*=0ex,dp=2ex,center]{block title example} \vskip0pt \usebeamerfont{block title}\insertblocktitle \vskip-1.25ex \begin{beamercolorbox}[colsep=0.025ex]{block separator example}\end{beamercolorbox} \end{beamercolorbox} {\parskip0pt\par} \usebeamerfont{block body} \vskip-0.5ex \begin{beamercolorbox}[colsep*=0ex]{block body example} \justifying \begin{adjustwidth}{1ex}{1ex} \setlength{\parskip}{1ex} \vskip-2ex } \setbeamertemplate{block example end} { \end{adjustwidth} \vskip1ex \end{beamercolorbox} \vskip0pt \vspace*{2ex} } % Footer \newcommand{\footercontent}[1]{\newcommand{\insertfootercontent}{#1}} \setbeamertemplate{footline}{ \ifdefined\insertfootercontent \begin{beamercolorbox}[vmode]{headline} \ifbeamercolorempty[bg]{headline rule}{}{ \begin{beamercolorbox}[wd=\paperwidth,colsep=0.25ex]{headline rule}\end{beamercolorbox} } \vspace{1.5ex} \hspace{\sepwidth} \usebeamerfont{footline} \centering \insertfootercontent \hspace{\sepwidth} \vspace{1.5ex} \end{beamercolorbox} \else\fi }main.pdfprebuilt · 107 KBReplaced by the first recompile.
Binary file, seeded as-is.
main.synctex.gzprebuilt · 13 KBReplaced by the first recompile.
Binary file, seeded as-is.