Last active
October 13, 2015 18:58
-
-
Save gpolitis/4241213 to your computer and use it in GitHub Desktop.
TeX template for nice looking cheat sheets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[10pt,a4paper]{article} | |
\usepackage{fontspec, polyglossia} | |
\usepackage{amsmath, amssymb, amsthm} | |
\usepackage{multicol} | |
\usepackage[margin=.3in]{geometry} | |
\usepackage[normalem]{ulem} | |
\setmainlanguage{french} | |
\setotherlanguages{english, greek} | |
\newfontfamily\greekfont{Times New Roman} | |
\begin{document} | |
\theoremstyle{definition} | |
\newtheorem{defn}{Definition}[section] | |
\theoremstyle{remark} | |
\newtheorem{rem}{Remarque} | |
\setlength\columnsep{.3in} | |
\begin{multicols*}{2} | |
\textenglish{Cheatsheet template that works for me} | |
\end{multicols*} | |
\end{document} | |
%%% Local Variables: | |
%%% TeX-engine: xetex | |
%%% TeX-PDF-mode: t | |
%%% End: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment