55 lines
1.5 KiB
TeX
55 lines
1.5 KiB
TeX
%
|
|
% Default template copied from Overleaf
|
|
%
|
|
|
|
|
|
%--------------------
|
|
% Packages
|
|
% -------------------
|
|
\documentclass[11pt,a4paper]{article}
|
|
\usepackage[utf8x]{inputenc}
|
|
\usepackage[T1]{fontenc}
|
|
%\usepackage{gentium}
|
|
\usepackage{mathptmx} % Use Times Font
|
|
|
|
|
|
\usepackage[pdftex]{graphicx} % Required for including pictures
|
|
\usepackage[swedish]{babel} % Swedish translations
|
|
\usepackage[pdftex,linkcolor=black,pdfborder={0 0 0}]{hyperref} % Format links for pdf
|
|
\usepackage{calc} % To reset the counter in the document after title page
|
|
\usepackage{enumitem} % Includes lists
|
|
|
|
\frenchspacing % No double spacing between sentences
|
|
\linespread{1.2} % Set linespace
|
|
\usepackage[a4paper, lmargin=0.1666\paperwidth, rmargin=0.1666\paperwidth, tmargin=0.1111\paperheight, bmargin=0.1111\paperheight]{geometry} %margins
|
|
%\usepackage{parskip}
|
|
|
|
\usepackage[all]{nowidow} % Tries to remove widows
|
|
\usepackage[protrusion=true,expansion=true]{microtype} % Improves typography, load after fontpackage is selected
|
|
|
|
\usepackage{lipsum} % Used for inserting dummy 'Lorem ipsum' text into the template
|
|
|
|
|
|
%-----------------------
|
|
% Set pdf information and add title, fill in the fields
|
|
%-----------------------
|
|
\hypersetup{
|
|
pdfsubject = {},
|
|
pdftitle = {},
|
|
pdfauthor = {}
|
|
}
|
|
|
|
%-----------------------
|
|
% Begin document
|
|
%-----------------------
|
|
\begin{document} %All text i dokumentet hamnar mellan dessa taggar, allt ovanför är formatering av dokumentet
|
|
|
|
\section{Introduction}
|
|
|
|
\lipsum[1-3]
|
|
|
|
|
|
\subsection*{Subtitle}
|
|
\lipsum[4-5]
|
|
\end{document}
|