Last active
May 24, 2019 17:51
-
-
Save Simsso/081399ebe1762c01401f138feb73b819 to your computer and use it in GitHub Desktop.
LaTeX Simple Boilerplate
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[a4paper]{article} | |
| \usepackage[utf8]{inputenc} | |
| % math | |
| \usepackage{amsmath} | |
| \usepackage{amssymb} % special set sybmols e.g. for real numbers R | |
| \usepackage{bm} % bold math | |
| \usepackage{isomath} | |
| % bracket fix (see https://tex.stackexchange.com/questions/2607) | |
| \let\originalleft\left | |
| \let\originalright\right | |
| \renewcommand{\left}{\mathopen{}\mathclose\bgroup\originalleft} | |
| \renewcommand{\right}{\aftergroup\egroup\originalright} | |
| % links | |
| \usepackage{url} | |
| \usepackage[colorlinks=true, allcolors=blue]{hyperref} | |
| % new paragraph spacing and indent | |
| \setlength{\parindent}{0pt} | |
| \setlength{\parskip}{6pt} | |
| \title{Title} | |
| \author{Timo Denk} | |
| \date{Mar 8, 2019} | |
| \begin{document} | |
| \maketitle | |
| \section{Introduction} | |
| Text | |
| \end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment