add Gemini-Poster
This commit is contained in:
15
Gemini-Poster/.editorconfig
Normal file
15
Gemini-Poster/.editorconfig
Normal file
@@ -0,0 +1,15 @@
|
||||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
indent_style = space
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[Makefile]
|
||||
indent_style = tab
|
||||
indent_size = 8
|
||||
|
||||
[*.{tex,sty,bib}]
|
||||
indent_size = 2
|
||||
2
Gemini-Poster/.latexmkrc
Normal file
2
Gemini-Poster/.latexmkrc
Normal file
@@ -0,0 +1,2 @@
|
||||
$bibtex_use = 2;
|
||||
$clean_ext = "nav snm";
|
||||
22
Gemini-Poster/LICENSE.md
Normal file
22
Gemini-Poster/LICENSE.md
Normal file
@@ -0,0 +1,22 @@
|
||||
The MIT License (MIT)
|
||||
=====================
|
||||
|
||||
**Copyright (c) Anish Athalye (me@anishathalye.com)**
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
||||
of the Software, and to permit persons to whom the Software is furnished to do
|
||||
so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
9
Gemini-Poster/Makefile
Normal file
9
Gemini-Poster/Makefile
Normal file
@@ -0,0 +1,9 @@
|
||||
.PHONY: main clean FORCE
|
||||
|
||||
main: poster.pdf
|
||||
|
||||
poster.pdf: FORCE
|
||||
latexmk -pdflatex='lualatex -interaction nonstopmode' -pdf poster.tex
|
||||
|
||||
clean:
|
||||
latexmk -pdf -C
|
||||
91
Gemini-Poster/README.md
Normal file
91
Gemini-Poster/README.md
Normal file
@@ -0,0 +1,91 @@
|
||||
# Gemini [](https://github.com/anishathalye/gemini/actions/workflows/ci.yml)
|
||||
|
||||
Gemini is a modern LaTeX [beamerposter] theme.
|
||||
|
||||
<p align="center">
|
||||
<a href="https://raw.githubusercontent.com/anishathalye/assets/master/gemini/poster-gemini.pdf">
|
||||
<img src="https://raw.githubusercontent.com/anishathalye/assets/master/gemini/poster-gemini-small.png">
|
||||
</a>
|
||||
</p>
|
||||
|
||||
If you're looking for a beamer presentation theme, take a look at [Auriga].
|
||||
|
||||
## Dependencies
|
||||
|
||||
* A TeX installation that includes [LuaTeX]
|
||||
* You also need `latexmk` if you want to use the provided `Makefile`
|
||||
* LaTeX package dependencies including beamerposter (these usually come with
|
||||
your TeX installation, but if not, you can get them from [CTAN])
|
||||
* [Raleway] and [Lato], which are both available under Open Font License
|
||||
|
||||
## Usage
|
||||
|
||||
1. Copy the files in this repository (or clone the repository)
|
||||
|
||||
1. In `poster.tex`, set up your paper size, column layout, and scale the
|
||||
content as necessary
|
||||
|
||||
1. Make a copy of `beamercolorthemegemini.sty`, update the `\usecolortheme`
|
||||
line in `poster.tex`, and theme the poster to your liking (optional, but
|
||||
highly recommended)
|
||||
|
||||
1. Run `make` to build your poster
|
||||
|
||||
## FAQ
|
||||
|
||||
See the [FAQ] in the Wiki for answers to frequently asked questions such as how
|
||||
to add an institution logo to the poster.
|
||||
|
||||
## Themes
|
||||
|
||||
Gemini currently includes the following color themes:
|
||||
|
||||
* `gemini` (default)
|
||||
* `mit`
|
||||
* `umich`
|
||||
* `labsix`
|
||||
|
||||
It's also easy to make your own!
|
||||
|
||||
### MIT theme
|
||||
|
||||
<p align="center">
|
||||
<a href="https://raw.githubusercontent.com/anishathalye/assets/master/gemini/poster-mit.pdf">
|
||||
<img src="https://raw.githubusercontent.com/anishathalye/assets/master/gemini/poster-mit-small.png">
|
||||
</a>
|
||||
</p>
|
||||
|
||||
### LabSix theme
|
||||
|
||||
<p align="center">
|
||||
<a href="https://raw.githubusercontent.com/anishathalye/assets/master/gemini/poster-labsix.pdf">
|
||||
<img src="https://raw.githubusercontent.com/anishathalye/assets/master/gemini/poster-labsix-small.png">
|
||||
</a>
|
||||
</p>
|
||||
|
||||
## Design goals
|
||||
|
||||
* **Minimal**: clean and easy to read, so that the emphasis is on the content
|
||||
* **Batteries included**: works and looks good out of the box
|
||||
* **Easy theming**: easy to create and use a new color theme
|
||||
|
||||
## Contributing
|
||||
|
||||
Contributions to Gemini such as bug reports, new themes, and new poster
|
||||
components are greatly appreciated! Given the subjective nature of design,
|
||||
you're encouraged to open an issue or pull request early to get feedback before
|
||||
investing a lot of time in implementing a new feature.
|
||||
|
||||
## License
|
||||
|
||||
Copyright (c) Anish Athalye. Released under the MIT License. See
|
||||
[LICENSE.md][license] for details.
|
||||
|
||||
[beamerposter]: https://github.com/deselaers/latex-beamerposter
|
||||
[Auriga]: https://github.com/anishathalye/auriga
|
||||
[LuaTeX]: http://www.luatex.org/
|
||||
[CTAN]: https://ctan.org/
|
||||
[Raleway]: https://www.fontsquirrel.com/fonts/raleway
|
||||
[Lato]: https://www.fontsquirrel.com/fonts/lato
|
||||
[license]: LICENSE.md
|
||||
[FAQ]: https://github.com/anishathalye/gemini/wiki/FAQ
|
||||
58
Gemini-Poster/beamercolorthemegemini.sty
Normal file
58
Gemini-Poster/beamercolorthemegemini.sty
Normal file
@@ -0,0 +1,58 @@
|
||||
% 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 alerted title}{fg=blue,bg=lightblue}
|
||||
\setbeamercolor{block alerted separator}{bg=black}
|
||||
\setbeamercolor{block alerted body}{fg=black,bg=lightblue}
|
||||
|
||||
% Example Block
|
||||
\setbeamercolor{block example title}{fg=blue,bg=lightgray}
|
||||
\setbeamercolor{block example separator}{bg=black}
|
||||
\setbeamercolor{block example body}{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}
|
||||
\setbeamertemplate{bibliography entry article}{}
|
||||
\setbeamertemplate{bibliography entry title}{}
|
||||
\setbeamertemplate{bibliography entry location}{}
|
||||
\setbeamertemplate{bibliography entry note}{}
|
||||
55
Gemini-Poster/beamercolorthemelabsix.sty
Normal file
55
Gemini-Poster/beamercolorthemelabsix.sty
Normal file
@@ -0,0 +1,55 @@
|
||||
% Gemini theme
|
||||
% https://github.com/anishathalye/gemini
|
||||
|
||||
% ====================
|
||||
% Definitions
|
||||
% ====================
|
||||
|
||||
\definecolor{labsixorange}{RGB}{243, 111, 33}
|
||||
|
||||
% Extra colors
|
||||
\definecolor{lightgray}{RGB}{240, 240, 240}
|
||||
\definecolor{lightorange}{RGB}{255, 240, 230}
|
||||
|
||||
% ====================
|
||||
% 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=labsixorange}
|
||||
|
||||
% Headline
|
||||
\setbeamercolor{headline}{fg=white,bg=labsixorange}
|
||||
\setbeamercolor{headline rule}{bg=black}
|
||||
|
||||
% Block
|
||||
\setbeamercolor{block title}{fg=labsixorange,bg=white}
|
||||
\setbeamercolor{block separator}{bg=black}
|
||||
\setbeamercolor{block body}{fg=black,bg=white}
|
||||
|
||||
% Alert Block
|
||||
\setbeamercolor{block alerted title}{fg=labsixorange,bg=lightorange}
|
||||
\setbeamercolor{block alerted separator}{bg=black}
|
||||
\setbeamercolor{block alerted body}{fg=black,bg=lightorange}
|
||||
|
||||
% Example Block
|
||||
\setbeamercolor{block example title}{fg=labsixorange,bg=lightgray}
|
||||
\setbeamercolor{block example separator}{bg=black}
|
||||
\setbeamercolor{block example body}{fg=black,bg=lightgray}
|
||||
|
||||
% Heading
|
||||
\setbeamercolor{heading}{fg=black}
|
||||
|
||||
% Itemize
|
||||
\setbeamercolor{item}{fg=labsixorange}
|
||||
|
||||
% 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}
|
||||
57
Gemini-Poster/beamercolorthememit.sty
Normal file
57
Gemini-Poster/beamercolorthememit.sty
Normal file
@@ -0,0 +1,57 @@
|
||||
% Gemini theme
|
||||
% https://github.com/anishathalye/gemini
|
||||
|
||||
% ====================
|
||||
% Definitions
|
||||
% ====================
|
||||
|
||||
% Colors from http://web.mit.edu/graphicidentity/colors.html
|
||||
\definecolor{mitred}{cmyk}{0.24, 1.0, 0.78, 0.17}
|
||||
\definecolor{mitdarkgray}{cmyk}{0.48, 0.39, 0.39, 0.04}
|
||||
\definecolor{mitlightgray}{cmyk}{0.24, 0.20, 0.20, 0.0}
|
||||
|
||||
% Extra colors
|
||||
\definecolor{lightgray}{RGB}{240, 240, 240}
|
||||
\definecolor{lightorange}{RGB}{255, 245, 242}
|
||||
|
||||
% ====================
|
||||
% 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=mitred}
|
||||
|
||||
% Headline
|
||||
\setbeamercolor{headline}{fg=black,bg=lightgray}
|
||||
|
||||
% Block
|
||||
\setbeamercolor{block title}{fg=mitred,bg=white}
|
||||
\setbeamercolor{block separator}{bg=black}
|
||||
\setbeamercolor{block body}{fg=black,bg=white}
|
||||
|
||||
% Alert Block
|
||||
\setbeamercolor{block alerted title}{fg=mitred,bg=lightorange}
|
||||
\setbeamercolor{block alerted separator}{bg=black}
|
||||
\setbeamercolor{block alerted body}{fg=black,bg=lightorange}
|
||||
|
||||
% Example Block
|
||||
\setbeamercolor{block example title}{fg=mitred,bg=lightgray}
|
||||
\setbeamercolor{block example separator}{bg=black}
|
||||
\setbeamercolor{block example body}{fg=black,bg=lightgray}
|
||||
|
||||
% Heading
|
||||
\setbeamercolor{heading}{fg=black}
|
||||
|
||||
% Itemize
|
||||
\setbeamercolor{item}{fg=mitred}
|
||||
|
||||
% 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}
|
||||
55
Gemini-Poster/beamercolorthemeumich.sty
Normal file
55
Gemini-Poster/beamercolorthemeumich.sty
Normal file
@@ -0,0 +1,55 @@
|
||||
% Gemini theme
|
||||
% https://github.com/anishathalye/gemini
|
||||
|
||||
% ====================
|
||||
% Definitions
|
||||
% ====================
|
||||
|
||||
\definecolor{UMichBlue}{RGB}{0, 39, 76} % #00274C
|
||||
\definecolor{UMichMaize}{RGB}{255, 203, 5} % #FFCB05
|
||||
\definecolor{UMichWhite}{RGB}{255, 255, 255} % #FFFFFF
|
||||
\definecolor{UMichGray}{RGB}{235, 235, 235}
|
||||
\definecolor{UMichLightMaize}{RGB}{242, 237, 217}
|
||||
|
||||
% ====================
|
||||
% Theme
|
||||
% ====================
|
||||
|
||||
% Basic colors
|
||||
\setbeamercolor{palette primary}{fg=UMichBlue,bg=UMichWhite}
|
||||
\setbeamercolor{palette secondary}{fg=UMichBlue,bg=UMichWhite}
|
||||
\setbeamercolor{palette tertiary}{bg=UMichBlue,fg=UMichWhite}
|
||||
\setbeamercolor{palette quaternary}{fg=UMichBlue,bg=UMichWhite}
|
||||
\setbeamercolor{structure}{fg=UMichBlue}
|
||||
|
||||
% Headline
|
||||
\setbeamercolor{headline}{fg=UMichGray,bg=UMichBlue}
|
||||
\setbeamercolor{headline rule}{bg=UMichMaize}
|
||||
|
||||
% Block
|
||||
\setbeamercolor{block title}{fg=UMichBlue,bg=UMichWhite}
|
||||
\setbeamercolor{block separator}{bg=UMichBlue}
|
||||
\setbeamercolor{block body}{fg=UMichBlue,bg=UMichWhite}
|
||||
|
||||
% Alert Block
|
||||
\setbeamercolor{block alerted title}{fg=UMichBlue,bg=UMichLightMaize}
|
||||
\setbeamercolor{block alerted separator}{bg=UMichBlue}
|
||||
\setbeamercolor{block alerted body}{fg=UMichBlue,bg=UMichLightMaize}
|
||||
|
||||
% Example Block
|
||||
\setbeamercolor{block example title}{fg=UMichBlue,bg=UMichWhite}
|
||||
\setbeamercolor{block example separator}{bg=UMichBlue}
|
||||
\setbeamercolor{block example body}{fg=UMichBlue,bg=UMichWhite}
|
||||
|
||||
% Heading
|
||||
\setbeamercolor{heading}{fg=UMichBlue}
|
||||
|
||||
% Itemize
|
||||
\setbeamercolor{item}{fg=UMichBlue}
|
||||
|
||||
% Bibliography
|
||||
\setbeamercolor{bibliography item}{fg=UMichBlue}
|
||||
\setbeamercolor{bibliography entry author}{fg=UMichBlue}
|
||||
\setbeamercolor{bibliography entry title}{fg=UMichBlue}
|
||||
\setbeamercolor{bibliography entry location}{fg=UMichBlue}
|
||||
\setbeamercolor{bibliography entry note}{fg=UMichBlue}
|
||||
257
Gemini-Poster/beamerthemegemini.sty
Normal file
257
Gemini-Poster/beamerthemegemini.sty
Normal file
@@ -0,0 +1,257 @@
|
||||
% 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]
|
||||
|
||||
% 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 alerted title}
|
||||
\vskip0pt
|
||||
\usebeamerfont{block title}\insertblocktitle
|
||||
\vskip-1.25ex
|
||||
\begin{beamercolorbox}[colsep=0.025ex]{block alerted separator}\end{beamercolorbox}
|
||||
\end{beamercolorbox}
|
||||
{\parskip0pt\par}
|
||||
\usebeamerfont{block body}
|
||||
\vskip-0.5ex
|
||||
\begin{beamercolorbox}[colsep*=0ex]{block alerted body}
|
||||
\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 example title}
|
||||
\vskip0pt
|
||||
\usebeamerfont{block title}\insertblocktitle
|
||||
\vskip-1.25ex
|
||||
\begin{beamercolorbox}[colsep=0.025ex]{block example separator}\end{beamercolorbox}
|
||||
\end{beamercolorbox}
|
||||
{\parskip0pt\par}
|
||||
\usebeamerfont{block body}
|
||||
\vskip-0.5ex
|
||||
\begin{beamercolorbox}[colsep*=0ex]{block example body}
|
||||
\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
|
||||
}
|
||||
9
Gemini-Poster/poster.bib
Normal file
9
Gemini-Poster/poster.bib
Normal file
@@ -0,0 +1,9 @@
|
||||
@article{shannon1948communication,
|
||||
author = {Claude E. Shannon},
|
||||
title = {A Mathematical Theory of Communication},
|
||||
journal = {Bell System Technical Journal},
|
||||
year = 1948,
|
||||
volume = {27},
|
||||
number = {3},
|
||||
pages = {379-423},
|
||||
}
|
||||
BIN
Gemini-Poster/poster.pdf
Normal file
BIN
Gemini-Poster/poster.pdf
Normal file
Binary file not shown.
314
Gemini-Poster/poster.tex
Normal file
314
Gemini-Poster/poster.tex
Normal file
@@ -0,0 +1,314 @@
|
||||
%! TeX Program = lualatex
|
||||
% Gemini theme
|
||||
% https://github.com/anishathalye/gemini
|
||||
|
||||
\documentclass[final]{beamer}
|
||||
|
||||
% ====================
|
||||
% Packages
|
||||
% ====================
|
||||
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage{lmodern}
|
||||
\usepackage[size=custom,width=120,height=72,scale=1.0]{beamerposter}
|
||||
\usetheme{gemini}
|
||||
\usecolortheme{gemini}
|
||||
\usepackage{graphicx}
|
||||
\usepackage{booktabs}
|
||||
\usepackage{tikz}
|
||||
\usepackage{pgfplots}
|
||||
\pgfplotsset{compat=1.14}
|
||||
\usepackage{anyfontsize}
|
||||
|
||||
% ====================
|
||||
% Lengths
|
||||
% ====================
|
||||
|
||||
% If you have N columns, choose \sepwidth and \colwidth such that
|
||||
% (N+1)*\sepwidth + N*\colwidth = \paperwidth
|
||||
\newlength{\sepwidth}
|
||||
\newlength{\colwidth}
|
||||
\setlength{\sepwidth}{0.025\paperwidth}
|
||||
\setlength{\colwidth}{0.3\paperwidth}
|
||||
|
||||
\newcommand{\separatorcolumn}{\begin{column}{\sepwidth}\end{column}}
|
||||
|
||||
% ====================
|
||||
% Title
|
||||
% ====================
|
||||
|
||||
\title{Some fancy title: followed by some more text}
|
||||
|
||||
\author{Alyssa P. Hacker \inst{1} \and Ben Bitdiddle \inst{2} \and Lem E. Tweakit \inst{2}}
|
||||
|
||||
\institute[shortinst]{\inst{1} Some Institute \samelineand \inst{2} Another Institute}
|
||||
|
||||
% ====================
|
||||
% Footer (optional)
|
||||
% ====================
|
||||
|
||||
\footercontent{
|
||||
\href{https://www.example.com}{https://www.example.com} \hfill
|
||||
ABC Conference 2025, New York --- XYZ-1234 \hfill
|
||||
\href{mailto:alyssa.p.hacker@example.com}{alyssa.p.hacker@example.com}}
|
||||
% (can be left out to remove footer)
|
||||
|
||||
% ====================
|
||||
% Logo (optional)
|
||||
% ====================
|
||||
|
||||
% use this to include logos on the left and/or right side of the header:
|
||||
% \logoright{\includegraphics[height=7cm]{logo1.pdf}}
|
||||
% \logoleft{\includegraphics[height=7cm]{logo2.pdf}}
|
||||
|
||||
% ====================
|
||||
% Body
|
||||
% ====================
|
||||
|
||||
\begin{document}
|
||||
|
||||
\begin{frame}[t]
|
||||
\begin{columns}[t]
|
||||
\separatorcolumn
|
||||
|
||||
\begin{column}{\colwidth}
|
||||
|
||||
\begin{block}{A block title}
|
||||
|
||||
Some block contents, followed by a diagram, followed by a dummy paragraph.
|
||||
|
||||
\begin{figure}
|
||||
\centering
|
||||
\begin{tikzpicture}[scale=6]
|
||||
\draw[step=0.25cm,color=gray] (-1,-1) grid (1,1);
|
||||
\draw (1,0) -- (0.2,0.2) -- (0,1) -- (-0.2,0.2) -- (-1,0)
|
||||
-- (-0.2,-0.2) -- (0,-1) -- (0.2,-0.2) -- cycle;
|
||||
\end{tikzpicture}
|
||||
\caption{A figure caption.}
|
||||
\end{figure}
|
||||
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ultricies
|
||||
eget libero ac ullamcorper. Integer et euismod ante. Aenean vestibulum
|
||||
lobortis augue, ut lobortis turpis rhoncus sed. Proin feugiat nibh a
|
||||
lacinia dignissim. Proin scelerisque, risus eget tempor fermentum, ex
|
||||
turpis condimentum urna, quis malesuada sapien arcu eu purus.
|
||||
|
||||
\end{block}
|
||||
|
||||
\begin{block}{A block containing a list}
|
||||
|
||||
Nam vulputate nunc felis, non condimentum lacus porta ultrices. Nullam sed
|
||||
sagittis metus. Etiam consectetur gravida urna quis suscipit.
|
||||
|
||||
\begin{itemize}
|
||||
\item \textbf{Mauris tempor} risus nulla, sed ornare
|
||||
\item \textbf{Libero tincidunt} a duis congue vitae
|
||||
\item \textbf{Dui ac pretium} morbi justo neque, ullamcorper
|
||||
\end{itemize}
|
||||
|
||||
Eget augue porta, bibendum venenatis tortor.
|
||||
|
||||
\end{block}
|
||||
|
||||
\begin{alertblock}{A highlighted block}
|
||||
|
||||
This block catches your eye, so \textbf{important stuff} should probably go
|
||||
here.
|
||||
|
||||
Curabitur eu libero vehicula, cursus est fringilla, luctus est. Morbi
|
||||
consectetur mauris quam, at finibus elit auctor ac. Aliquam erat volutpat.
|
||||
Aenean at nisl ut ex ullamcorper eleifend et eu augue. Aenean quis velit
|
||||
tristique odio convallis ultrices a ac odio.
|
||||
|
||||
\begin{itemize}
|
||||
\item \textbf{Fusce dapibus tellus} vel tellus semper finibus. In
|
||||
consequat, nibh sed mattis luctus, augue diam fermentum lectus.
|
||||
\item \textbf{In euismod erat metus} non ex. Vestibulum luctus augue in
|
||||
mi condimentum, at sollicitudin lorem viverra.
|
||||
\item \textbf{Suspendisse vulputate} mauris vel placerat consectetur.
|
||||
Mauris semper, purus ac hendrerit molestie, elit mi dignissim odio, in
|
||||
suscipit felis sapien vel ex.
|
||||
\end{itemize}
|
||||
|
||||
Aenean tincidunt risus eros, at gravida lorem sagittis vel. Vestibulum ante
|
||||
ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae.
|
||||
|
||||
\end{alertblock}
|
||||
|
||||
\end{column}
|
||||
|
||||
\separatorcolumn
|
||||
|
||||
\begin{column}{\colwidth}
|
||||
|
||||
\begin{block}{A block containing an enumerated list}
|
||||
|
||||
Vivamus congue volutpat elit non semper. Praesent molestie nec erat ac
|
||||
interdum. In quis suscipit erat. \textbf{Phasellus mauris felis, molestie
|
||||
ac pharetra quis}, tempus nec ante. Donec finibus ante vel purus mollis
|
||||
fermentum. Sed felis mi, pharetra eget nibh a, feugiat eleifend dolor. Nam
|
||||
mollis condimentum purus quis sodales. Nullam eu felis eu nulla eleifend
|
||||
bibendum nec eu lorem. Vivamus felis velit, volutpat ut facilisis ac,
|
||||
commodo in metus.
|
||||
|
||||
\begin{enumerate}
|
||||
\item \textbf{Morbi mauris purus}, egestas at vehicula et, convallis
|
||||
accumsan orci. Orci varius natoque penatibus et magnis dis parturient
|
||||
montes, nascetur ridiculus mus.
|
||||
\item \textbf{Cras vehicula blandit urna ut maximus}. Aliquam blandit nec
|
||||
massa ac sollicitudin. Curabitur cursus, metus nec imperdiet bibendum,
|
||||
velit lectus faucibus dolor, quis gravida metus mauris gravida turpis.
|
||||
\item \textbf{Vestibulum et massa diam}. Phasellus fermentum augue non
|
||||
nulla accumsan, non rhoncus lectus condimentum.
|
||||
\end{enumerate}
|
||||
|
||||
\end{block}
|
||||
|
||||
\begin{block}{Fusce aliquam magna velit}
|
||||
|
||||
Et rutrum ex euismod vel. Pellentesque ultricies, velit in fermentum
|
||||
vestibulum, lectus nisi pretium nibh, sit amet aliquam lectus augue vel
|
||||
velit. Suspendisse rhoncus massa porttitor augue feugiat molestie. Sed
|
||||
molestie ut orci nec malesuada. Sed ultricies feugiat est fringilla
|
||||
posuere.
|
||||
|
||||
\begin{figure}
|
||||
\centering
|
||||
\begin{tikzpicture}
|
||||
\begin{axis}[
|
||||
scale only axis,
|
||||
no markers,
|
||||
domain=0:2*pi,
|
||||
samples=100,
|
||||
axis lines=center,
|
||||
axis line style={-},
|
||||
ticks=none]
|
||||
\addplot[red] {sin(deg(x))};
|
||||
\addplot[blue] {cos(deg(x))};
|
||||
\end{axis}
|
||||
\end{tikzpicture}
|
||||
\caption{Another figure caption.}
|
||||
\end{figure}
|
||||
|
||||
\end{block}
|
||||
|
||||
\begin{block}{Nam cursus consequat egestas}
|
||||
|
||||
Nulla eget sem quam. Ut aliquam volutpat nisi vestibulum convallis. Nunc a
|
||||
lectus et eros facilisis hendrerit eu non urna. Interdum et malesuada fames
|
||||
ac ante \textit{ipsum primis} in faucibus. Etiam sit amet velit eget sem
|
||||
euismod tristique. Praesent enim erat, porta vel mattis sed, pharetra sed
|
||||
ipsum. Morbi commodo condimentum massa, \textit{tempus venenatis} massa
|
||||
hendrerit quis. Maecenas sed porta est. Praesent mollis interdum lectus,
|
||||
sit amet sollicitudin risus tincidunt non.
|
||||
|
||||
Etiam sit amet tempus lorem, aliquet condimentum velit. Donec et nibh
|
||||
consequat, sagittis ex eget, dictum orci. Etiam quis semper ante. Ut eu
|
||||
mauris purus. Proin nec consectetur ligula. Mauris pretium molestie
|
||||
ullamcorper. Integer nisi neque, aliquet et odio non, sagittis porta justo.
|
||||
|
||||
\begin{itemize}
|
||||
\item \textbf{Sed consequat} id ante vel efficitur. Praesent congue massa
|
||||
sed est scelerisque, elementum mollis augue iaculis.
|
||||
\begin{itemize}
|
||||
\item In sed est finibus, vulputate
|
||||
nunc gravida, pulvinar lorem. In maximus nunc dolor, sed auctor eros
|
||||
porttitor quis.
|
||||
\item Fusce ornare dignissim nisi. Nam sit amet risus vel lacus
|
||||
tempor tincidunt eu a arcu.
|
||||
\item Donec rhoncus vestibulum erat, quis aliquam leo
|
||||
gravida egestas.
|
||||
\end{itemize}
|
||||
\item \textbf{Sed luctus, elit sit amet} dictum maximus, diam dolor
|
||||
faucibus purus, sed lobortis justo erat id turpis.
|
||||
\item \textbf{Pellentesque facilisis dolor in leo} bibendum congue.
|
||||
Maecenas congue finibus justo, vitae eleifend urna facilisis at.
|
||||
\end{itemize}
|
||||
|
||||
\end{block}
|
||||
|
||||
\end{column}
|
||||
|
||||
\separatorcolumn
|
||||
|
||||
\begin{column}{\colwidth}
|
||||
|
||||
\begin{exampleblock}{A highlighted block containing some math}
|
||||
|
||||
A different kind of highlighted block.
|
||||
|
||||
$$
|
||||
\int_{-\infty}^{\infty} e^{-x^2}\,dx = \sqrt{\pi}
|
||||
$$
|
||||
|
||||
Interdum et malesuada fames $\{1, 4, 9, \ldots\}$ ac ante ipsum primis in
|
||||
faucibus. Cras eleifend dolor eu nulla suscipit suscipit. Sed lobortis non
|
||||
felis id vulputate.
|
||||
|
||||
\heading{A heading inside a block}
|
||||
|
||||
Praesent consectetur mi $x^2 + y^2$ metus, nec vestibulum justo viverra
|
||||
nec. Proin eget nulla pretium, egestas magna aliquam, mollis neque. Vivamus
|
||||
dictum $\mathbf{u}^\intercal\mathbf{v}$ sagittis odio, vel porta erat
|
||||
congue sed. Maecenas ut dolor quis arcu auctor porttitor.
|
||||
|
||||
\heading{Another heading inside a block}
|
||||
|
||||
Sed augue erat, scelerisque a purus ultricies, placerat porttitor neque.
|
||||
Donec $P(y \mid x)$ fermentum consectetur $\nabla_x P(y \mid x)$ sapien
|
||||
sagittis egestas. Duis eget leo euismod nunc viverra imperdiet nec id
|
||||
justo.
|
||||
|
||||
\end{exampleblock}
|
||||
|
||||
\begin{block}{Nullam vel erat at velit convallis laoreet}
|
||||
|
||||
Class aptent taciti sociosqu ad litora torquent per conubia nostra, per
|
||||
inceptos himenaeos. Phasellus libero enim, gravida sed erat sit amet,
|
||||
scelerisque congue diam. Fusce dapibus dui ut augue pulvinar iaculis.
|
||||
|
||||
\begin{table}
|
||||
\centering
|
||||
\begin{tabular}{l r r c}
|
||||
\toprule
|
||||
\textbf{First column} & \textbf{Second column} & \textbf{Third column} & \textbf{Fourth} \\
|
||||
\midrule
|
||||
Foo & 13.37 & 384,394 & $\alpha$ \\
|
||||
Bar & 2.17 & 1,392 & $\beta$ \\
|
||||
Baz & 3.14 & 83,742 & $\delta$ \\
|
||||
Qux & 7.59 & 974 & $\gamma$ \\
|
||||
\bottomrule
|
||||
\end{tabular}
|
||||
\caption{A table caption.}
|
||||
\end{table}
|
||||
|
||||
Donec quis posuere ligula. Nunc feugiat elit a mi malesuada consequat. Sed
|
||||
imperdiet augue ac nibh aliquet tristique. Aenean eu tortor vulputate,
|
||||
eleifend lorem in, dictum urna. Proin auctor ante in augue tincidunt
|
||||
tempor. Proin pellentesque vulputate odio, ac gravida nulla posuere
|
||||
efficitur. Aenean at velit vel dolor blandit molestie. Mauris laoreet
|
||||
commodo quam, non luctus nibh ullamcorper in. Class aptent taciti sociosqu
|
||||
ad litora torquent per conubia nostra, per inceptos himenaeos.
|
||||
|
||||
Nulla varius finibus volutpat. Mauris molestie lorem tincidunt, iaculis
|
||||
libero at, gravida ante. Phasellus at felis eu neque suscipit suscipit.
|
||||
Integer ullamcorper, dui nec pretium ornare, urna dolor consequat libero,
|
||||
in feugiat elit lorem euismod lacus. Pellentesque sit amet dolor mollis,
|
||||
auctor urna non, tempus sem.
|
||||
|
||||
\end{block}
|
||||
|
||||
\begin{block}{References}
|
||||
|
||||
\nocite{*}
|
||||
\footnotesize{\bibliographystyle{plain}\bibliography{poster}}
|
||||
|
||||
\end{block}
|
||||
|
||||
\end{column}
|
||||
|
||||
\separatorcolumn
|
||||
\end{columns}
|
||||
\end{frame}
|
||||
|
||||
\end{document}
|
||||
Reference in New Issue
Block a user