
Could somebody can help me recreate this header ?
Thanks
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Code: Select all
\documentclass[11pt, a4paper]{article}
\usepackage{fancyhdr}
\fancyhead[L]{\textbf{PCSI 3}\\ \small 2021/2022}
\fancyhead[C]{\Large \textbf{DS 1}\\ \normalsize 2 heures}
\fancyhead[R]{Lycée \textsc{Sainte-Geneviève}\\ \small Samedi 18 septembre 2021}
\pagestyle{fancy}
\begin{document}
\end{document}
Code: Select all
\documentclass[11pt, a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[french]{babel}
\usepackage{blindtext}
\usepackage{showframe}
\begin{document}
{
\centering
\textbf{PCSI3}\hfill Lycée \textsc{Sainte-Geneviève}\par
{\small 2021/2022\hfill Samedi 18 septembre 2021\par}
{\large\textsc{DS 1}\par}
\Large\textbf{Title}
\par
}
\vspace{1.5\baselineskip}
\hrule
\smallskip
{
\raggedleft
\sffamily
\footnotesize
Submission date
\par
}
\blinddocument
\end{document}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis