init-projects/latex/document/document.tex

32 lines
642 B
TeX
Raw Normal View History

\DocumentMetadata{testphase = {phase-III,math}}
2023-10-03 12:08:51 +02:00
\documentclass{article}
\usepackage[T1]{fontenc} % encoding
\renewcommand{\familydefault}{\sfdefault} % sans-serif font
\usepackage[french]{babel} % langages
\frenchsetup{SmallCapsFigTabCaptions=false}
2024-01-12 01:58:21 +01:00
\newcommand{\settitle}{TITLE}
\newcommand{\setauthor}{YOU}
2023-10-03 12:08:51 +02:00
2024-01-12 01:58:21 +01:00
\usepackage[
pdfauthor={\setauthor}, % author metadata
pdftitle={\settitle}, % title metadata
hidelinks, % clickable nks in table of contents
]{hyperref}
\title{\settitle}
\author{\setauthor}
2023-10-03 12:08:51 +02:00
\date{}
\begin{document}
\maketitle
\tableofcontents
\clearpage
\section{SECTION}
Hello, world!
\end{document}