我想重现这种布局(特别是章节+论文的底部和顶部)。
我的代码:
\documentclass[a4paper, french, 12pt]{article}
\usepackage{amsfonts}
\usepackage{indentfirst}
\usepackage{xcolor}
\usepackage{array}
\usepackage{booktabs}
\usepackage[margin=0.5in]{geometry}
\title{\textsc{\fbox{Rappel de trigonométrie}}}
\date{}
\begin{document}
\maketitle
\pagenumbering{gobble}
\renewcommand{\thesection}{\Roman{section})}
\section{\color{red}Valeurs remarquables et formules élémentaires}
Voici un tableau des valeurs remarquables concernant les fonctions trigonométriques:
\begin{center}
\[
\begin{array}{@{} l *{6}{>{\displaystyle}c} @{}}
\toprule
x & 0 &\frac{\pi}{6} &\frac{\pi}{4} &\frac{\pi}{3} &\frac{\pi}{2}&\pi\\
\midrule
\cos(x) & 1 &\frac{\sqrt3}{2}&\frac{\sqrt2}{2}&\frac{1}{2} &0 &-1 \\
\addlinespace
\sin(x) & 0 &\frac{1}{2} &\frac{\sqrt2}{2}&\frac{\sqrt3}{2}&1 &0 \\
\addlinespace
\tan(x) & 0 &\frac{1}{\sqrt3}&1 &\sqrt3 & / &0 \\
\bottomrule
\end{array}
\]
\end{center}
\par
Les fonctions $\cos$ et $\sin$ sont reliées par la formule suivante:
\begin{center}
\fbox{$\forall x \in \mathbb{R}, \cos^2(x) + \sin^2(x) = 1$}
\end{center}
\end{document}