21 lines
570 B
TeX
21 lines
570 B
TeX
\documentclass[a4paper,english]{article}
|
||
\usepackage{babel}
|
||
\usepackage[T1]{fontenc}
|
||
\usepackage[utf8]{inputenc}
|
||
\usepackage{cleveref}
|
||
|
||
\begin{document}
|
||
\thispagestyle{empty}
|
||
|
||
\section{An introduction}\label{sec:section1}
|
||
\section{Fasten your seatbelt}\label{sec:section2}
|
||
\section{Operating altitude reached}\label{sec:section3}
|
||
\section{It’s going downhill}\label{sec:section4}
|
||
\section{Just before impact}\label{sec:section5}
|
||
\section{Calm down}\label{sec:section6}
|
||
|
||
Reference be made to \cref{sec:section1,sec:section2,sec:section3,sec:section5}.
|
||
|
||
\end{document}
|
||
|