Skip to content
Snippets Groups Projects
index.tex 492 B
Newer Older
  • Learn to ignore specific revisions
  • \documentclass{article}
    \usepackage{url,graphics,rotating,hyperref}
    
    tuhe's avatar
    tuhe committed
    \usepackage{cleveref}
    
    \usepackage{showlabels}
    
    tuhe's avatar
    tuhe committed
    \begin{document}
    
    \section{First section}\label{sec1}
    
    Math is hard \cite{bertsekasII,rosolia2018data,herlau}, see also \cref{eq1} and \cref{fig1}.
    
    tuhe's avatar
    tuhe committed
    \begin{equation}
    
    	2+2 = 4 \label{eq1}
    
    tuhe's avatar
    tuhe committed
    \end{equation}
    \begin{figure}\centering
    
    \includegraphics[width=.8\linewidth]{br}\caption{A figure}\label{fig1}
    
    tuhe's avatar
    tuhe committed
    \end{figure}
    
    \bibliographystyle{alpha}
    
    \bibliography{library}						
    
    tuhe's avatar
    tuhe committed
    \end{document}