init-projects/latex/document/document.tex

44 lines
1,010 B
TeX

\DocumentMetadata{testphase = {phase-III,math}}
\documentclass{article}
\usepackage[T1]{fontenc} % encoding
\renewcommand{\familydefault}{\sfdefault} % sans-serif font
\usepackage[french]{babel} % langages
\frenchsetup{SmallCapsFigTabCaptions=false}
% \usepackage[ % change page dimensions
% a4paper,
% left=20mm,
% top=20mm,
% ]{geometry}
% \usepackage{minted} % code integration
% \usemintedstyle{emacs}
\newcommand{\settitle}{TITLE}
\newcommand{\setauthor}{YOU}
\newcommand{\setsubject}{SUBJECT}
\newcommand{\setlocation}{LOCATION}
\usepackage[
pdfauthor={\setauthor}, % author metadata
pdftitle={\settitle}, % title metadata
pdfsubject={\setsubject}, % subject metadata
hidelinks, % clickable nks in table of contents
]{hyperref}
\title{\settitle}
\author{\href{mailto:place@holder.com}{\setauthor}\\\setsubject $\cdot$ \setlocation}
\date{}
\begin{document}
\maketitle
\flushbottom
\tableofcontents
\clearpage
\section{SECTION}
Hello, world!
\end{document}