Skip to content

Latest commit

 

History

History
64 lines (51 loc) · 4.34 KB

README.md

File metadata and controls

64 lines (51 loc) · 4.34 KB

Simple presentation

GitHub contributors GitHub forks GitHub Repo stars GitHub Workflow Status

Getting started

To use this template:

  1. Fork this repository and give it the name you want.
  2. Modify the file main.tex to include whatever you want (you can also rename it).

The compilation necessitates latexmk v4.51 or higher, included by default in recent texlive distributions. To compile the document, simply run on macOS or Linux

make

If you want to clean up your local repository, simply run on macOS or Linux

make clean

Important notes

All the files *.tex in the root folder are attempted to be compiled as LaTeX root files. Therefore, if you split your presentation into several documents, create a folder (e.g., content/) and place your secondary LaTeX files in it.

Extra mathematical commands

This template also includes the following mathematical commands. All the options in the macros are optional (but not the arguments).

Command Options Rendering
\eu $\mathrm{e}$ (exponential)
\iu $\mathrm{i}$ (complex)
\du $\mathrm{d}$ (differential)
\C $\mathbb{C}$
\F $\mathbb{F}$
\N $\mathbb{N}$
\Q $\mathbb{Q}$
\R $\mathbb{R}$
\Z $\mathbb{Z}$
\T $\mathsf{T}$ (transpose)
\argmax $\mathrm{argmax}$
\argmin $\mathrm{argmin}$
\card $\mathrm{card}$
\conv $\mathrm{conv}$
\rank $\mathrm{rank}$
\sgn $\mathrm{sgn}$
\vspan $\mathrm{span}$
\abs[<option>]{<argument>} \big, \Big, \bigg, \Bigg, or auto $\lvert x \rvert$
\ceil[<option>]{<argument>} \big, \Big, \bigg, \Bigg, or auto $\lceil x \rceil$
\floor[<option>]{<argument>} \big, \Big, \bigg, \Bigg, or auto $\lfloor x \rfloor$
\norm[<option>]{<argument>} \big, \Big, \bigg, \Bigg, or auto $\lVert x \rVert$
\set[<option>]{<argument>} \big, \Big, \bigg, \Bigg, or auto ${ x }$ (GitHub renders badly)
\inner[<option>]{<argument>} \big, \Big, \bigg, \Bigg, or auto $\langle x, y \rangle$

Finally, the template also include a command @ for fine-tuning mathematical formula. See p. 155 of The TeXbook for details.