2024-03-25 09:50:38 +01:00
|
|
|
\newcommand{\settitle}{TITLE}
|
|
|
|
\newcommand{\setauthor}{YOU}
|
|
|
|
\newcommand{\setsubject}{SUBJECT}
|
|
|
|
\newcommand{\setlocation}{LOCATION}
|
|
|
|
\newcommand{\setmail}{mailto:place@holder.com}
|
|
|
|
|
|
|
|
\begin{filecontents*}{\jobname.xmpdata}
|
|
|
|
\Title{\settitle}
|
|
|
|
\Author{\setauthor}
|
|
|
|
\Subject{\setsubject}
|
|
|
|
\end{filecontents*}
|
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-02-01 15:27:23 +01:00
|
|
|
% \usepackage[ % change page dimensions
|
|
|
|
% a4paper,
|
|
|
|
% left=20mm,
|
|
|
|
% top=20mm,
|
|
|
|
% ]{geometry}
|
|
|
|
|
|
|
|
% \usepackage{minted} % code integration
|
|
|
|
% \usemintedstyle{emacs}
|
|
|
|
|
2024-03-25 09:50:38 +01:00
|
|
|
\usepackage[a-3u]{pdfx}
|
|
|
|
\hypersetup{hidelinks} % clickable links in table of contents
|
2024-01-12 01:58:21 +01:00
|
|
|
|
|
|
|
\title{\settitle}
|
2024-02-06 16:51:07 +01:00
|
|
|
\author{\href{\setmail}{\setauthor}\\\setsubject~$\cdot$ \setlocation}
|
2023-10-03 12:08:51 +02:00
|
|
|
\date{}
|
|
|
|
|
|
|
|
\begin{document}
|
|
|
|
\maketitle
|
2024-02-06 01:45:52 +01:00
|
|
|
\flushbottom
|
2023-10-03 12:08:51 +02:00
|
|
|
\tableofcontents
|
|
|
|
\clearpage
|
|
|
|
|
|
|
|
\section{SECTION}
|
|
|
|
Hello, world!
|
|
|
|
|
|
|
|
\end{document}
|