Skip to content
Snippets Groups Projects
Select Git revision
  • 73174149df1b234927e3f6f6b7a9fe6fdb8deb1c
  • main default protected
2 results

index.tex

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    index.tex 492 B
    \documentclass{article}
    \usepackage{url,graphics,rotating,hyperref}
    \usepackage{cleveref}
    \usepackage{showlabels}
    \begin{document}
    \section{First section}\label{sec1}
    Math is hard \cite{bertsekasII,rosolia2018data,herlau}, see also \cref{eq1} and \cref{fig1}.
    \begin{equation}
    	2+2 = 4 \label{eq1}
    \end{equation}
    \begin{figure}\centering
    \includegraphics[width=.8\linewidth]{br}\caption{A figure}\label{fig1}
    \end{figure}
    
    \bibliographystyle{alpha}
    \bibliography{library}						
    \end{document}