mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-01-31 10:57:58 +00:00
0681d1fd7c
It's been a while but I've been using NixOS (or anything styled like it like GuixSD, for example) and distro-hopped from Arch Linux. I think it's high noon for making the structure of this setup to be truer to one of the big objectives which is how easy to transfer this between different setups. Which means I removed some things such as the package lists, systemd config files, and package manager-specific configs. While the solution is easy (which is to simply ignore the system-specific files) but I'm not going with the pragmatic solution not because I'm a dumbass but because I'm so smart that I want to create a challenge for myself to solve a puzzle on figuring out a way on how to structure my dotfiles. :) Such a productive use of my time, that's for sure.
72 lines
1.5 KiB
Plaintext
Executable File
72 lines
1.5 KiB
Plaintext
Executable File
\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} |