Skip to content

TeXtw/express-beamer

This branch is up to date with sano-jin/express-beamer:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e503e4b · Nov 29, 2021

History

29 Commits
Nov 28, 2021
Nov 29, 2021
Nov 29, 2021
Nov 29, 2021
Nov 29, 2021
Nov 28, 2021
Jun 3, 2021
Nov 28, 2021
Jun 3, 2021
Jun 3, 2021
Nov 6, 2021
Nov 28, 2021
Nov 28, 2021
Jun 4, 2021
Jun 3, 2021
Jun 3, 2021
Nov 28, 2021
Jun 3, 2021

Repository files navigation

Express-Beamer

Yet another Beamer theme ! Please tell me if you have any request, advice, etc...!!!

/slide.pdf is the output pdf.

slide image

Getting 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!

Releases

No releases published

Packages

No packages published

Languages

  • TeX 96.4%
  • HTML 2.7%
  • Other 0.9%