Last active
August 29, 2015 13:57
-
-
Save nasal/9363028 to your computer and use it in GitHub Desktop.
LaTeX: starter document
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
% -*- 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