Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sano-jin/express-beamer
A modern LaTeX Beamer theme
https://github.com/sano-jin/express-beamer
beamer beamer-template beamer-theme latex
Last synced: 23 days ago
JSON representation
A modern LaTeX Beamer theme
- Host: GitHub
- URL: https://github.com/sano-jin/express-beamer
- Owner: sano-jin
- License: mit
- Created: 2021-06-03T04:35:41.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-29T12:30:24.000Z (about 3 years ago)
- Last Synced: 2023-03-09T02:57:39.415Z (almost 2 years ago)
- Topics: beamer, beamer-template, beamer-theme, latex
- Language: TeX
- Homepage: https://sano-jin.github.io/express-beamer/
- Size: 165 MB
- Stars: 28
- Watchers: 3
- Forks: 9
- Open Issues: 3
-
Metadata Files:
- Readme: README.html
- License: LICENSE
Awesome Lists containing this project
README
README.html
Express-Beamer
Yet another Beamer theme !
Please tell me if you have any request, advice, etc…!!!/slide.pdf is the output pdf.
slide imageGetting started
Prerequisites
- latexmk
Installation
git clone https://github.com/sano-jin/express-beamer.git`
make
Usage
The following code shows a minimal example of a Beamer presentation.
\documentclass[xetex, unicode, 10pt]{beamer}
\usepackage{sty/style}
\title{A minimal example}
\date{\today}
\author{Author}
\institute{Institute}
\begin{document}
\maketitle
\section{First Section}
\begin{frame}{First Frame}
Hello, world!
\end{frame}
\end{document}
Take a look at /tex/slide.tex and edit this.
The output /slide.pdf is quite self explanatory (or at least, designed to be).
Please take a look at it!
Customization
Customization is fairly easy.
for example, if you want to change color schemes, you can just overwrite the default color theme like following:
\definecolor{backgroundcolor}{RGB}{50, 50, 50}
\definecolor{textcolor}{RGB}{235, 235, 235}
\definecolor{maincolor}{RGB}{255, 241, 118}
\definecolor{accentcolor}{RGB}{70, 164, 199}
Then you can get the following slide. Beautiful!
slide image
Contact
Feel free to contact me at twitter@sano65747676.
Directory Structure
+ tex/ # A directory for "tex" files.
| + slide.tex # What you need to edit.
|
+ fig/ # A directory for some figures and source codes.
| + sample.tex # A sample source code.
| + logo.png # Your Logo! Please replace it with your own!
|
+ sty/ # A directory for "sty"ling files.
| |
| + style.sty # The main file for styling.
| + source.sty # For syntax highlighting source codes.
| + citation # For the custom "footcite".
|
+ theme/ # Adirectory for our custom theme.
| + ... # Some styling files.
|
+ ref.bib # For citing the references.
+ Makefile
+ latexmkrc
+ slide.pdf # Output slide!