mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-01-31 10:57:58 +00:00
72 lines
1.5 KiB
Plaintext
72 lines
1.5 KiB
Plaintext
\documentclass[class=memoir, crop=false, oneside, 14pt]{standalone}
|
|
|
|
% all of the packages to be used
|
|
\usepackage[nocomments]{standalone}
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage{fontawesome}
|
|
\usepackage[english]{babel}
|
|
\usepackage[rgb]{xcolor}
|
|
\usepackage{amsmath}
|
|
\usepackage{amssymb}
|
|
\usepackage{amsthm}
|
|
\usepackage{tikz}
|
|
\usepackage{pgfplots}
|
|
\usepackage{fancyhdr}
|
|
\usepackage{minted}
|
|
\usepackage[most]{tcolorbox}
|
|
\usepackage[colorlinks=true, linkcolor=., urlcolor=blue]{hyperref}
|
|
\usepackage{kpfonts}
|
|
|
|
% using the fancy header package
|
|
% http://linorg.usp.br/CTAN/macros/latex/contrib/fancyhdr/fancyhdr.pdf
|
|
\pagestyle{fancy}
|
|
|
|
% fill the header with the format
|
|
\fancyhead[L]{\doctitle}
|
|
\fancyhead[R]{\nouppercase{\rightmark}}
|
|
|
|
% fill the footer with the format
|
|
\fancyfoot[C]{\nouppercase{\leftmark}}
|
|
\fancyfoot[R]{\thepage}
|
|
|
|
% set the width of the horizontal bars in the header
|
|
\renewcommand{\headrulewidth}{2pt}
|
|
\renewcommand{\footrulewidth}{1pt}
|
|
|
|
% set the paragraph formatting
|
|
\renewcommand{\baselinestretch}{1.35}
|
|
|
|
% set chapter style
|
|
\chapterstyle{bianchi}
|
|
|
|
% set chapter spacing for easier reading on digital screen
|
|
\setlength{\beforechapskip}{-\beforechapskip}
|
|
|
|
% document metadata
|
|
\author{${1:"Gabriel Arazas"}}
|
|
\title{${2:"New Title"}}
|
|
\date{`!p
|
|
`}
|
|
|
|
\begin{document}
|
|
% Frontmatter of the class note if it's compiled standalone
|
|
\renewcommand{\abstractname}{Summary}
|
|
\maketitle
|
|
\newpage
|
|
|
|
\frontmatter
|
|
\chapter{Preface}
|
|
$3
|
|
\newpage
|
|
|
|
\tableofcontents
|
|
\newpage
|
|
|
|
\listoffigures
|
|
\newpage
|
|
|
|
\mainmatter
|
|
% Core content (HINT: always start with chapter LaTeX tag)
|
|
|
|
$0
|
|
\end{document} |