Skip to content

Instantly share code, notes, and snippets.

@Simsso
Last active May 24, 2019 17:51
Show Gist options
  • Select an option

  • Save Simsso/081399ebe1762c01401f138feb73b819 to your computer and use it in GitHub Desktop.

Select an option

Save Simsso/081399ebe1762c01401f138feb73b819 to your computer and use it in GitHub Desktop.
LaTeX Simple Boilerplate
\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