Skip to content

Instantly share code, notes, and snippets.

@nasal
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nasal/9363028 to your computer and use it in GitHub Desktop.
Save nasal/9363028 to your computer and use it in GitHub Desktop.
LaTeX: starter document
% -*- coding: utf-8 -*-
\documentclass[a4paper]{article}
\usepackage[slovene]{babel} % šumniki s \v{c}
\usepackage[utf8]{inputenc} % šumniki s č
\usepackage{mathtools} % za matematiko
\usepackage{amssymb} % za dodatne simbole, \mathbb{F, R, N..}
\title{My Title}
\author{My Name}
\date{\today}
\begin{document}
\maketitle
\section{My first section}
\subsection{My fist subsection}
\noindent
Some text.
\begin{itemize}
\item Some,
\item Items,
\item Here.
\end{itemize}
\subsection{My second subsection}
\noindent
Some math \textbf{below}.
\[\forall \alpha \in \mathbb{F}, \forall x \in U: \alpha [\cdot] x = \alpha \cdot x\]
\noindent
An enumerated list.
\begin{enumerate}
\item Another,
\item List,
\item Now with numbers.
\end{enumerate}
\noindent
And now a list with description.
\begin{description}
\item[First] The first item,
\item[Second] The second item,
\item[Third] The third etc \ldots
\end{description}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment