% Created 2018-12-17 lun. 15:49 % Intended LaTeX compiler: pdflatex \documentclass[11pt]{article} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \usepackage{graphicx} \usepackage{grffile} \usepackage{longtable} \usepackage{wrapfig} \usepackage{rotating} \usepackage[normalem]{ulem} \usepackage{amsmath} \usepackage{textcomp} \usepackage{amssymb} \usepackage{capt-of} \usepackage{hyperref} \usepackage[frenchb]{babel} \date{December 2018} \title{What's up with references ?} \hypersetup{ pdfauthor={}, pdftitle={What's up with references ?}, pdfkeywords={}, pdfsubject={}, pdfcreator={Emacs 27.0.50 (Org mode 9.1.14)}, pdflang={Frenchb}} \begin{document} \maketitle \tableofcontents \listoftables \listoffigures \section{Some reference samples} \label{sec:orgfe4b8ad} This is created using \texttt{org-ref} 's \texttt{label} 's and \texttt{ref} 's. \subsection{A reference\ldots{}} \label{sec:org22891f6} \ldots{} to \cite{gelmanBayesianDataAnalysis2013} ,a \emph{good} textbook. \subsection{A table} \label{sec:org844d514} A Python block producing a (silly) table. \begin{verbatim} [[u+str(v) for v in range(1,4)] for u in ["a", "b"]] \end{verbatim} \captionof{figure}{A (silly) Python block. \label{lst:Python1}} \begin{table}[htbp] \caption{A (silly) Python table. \label{tab:Python1}} \centering \begin{tabular}{lll} a1 & a2 & a3\\ b1 & b2 & b3\\ \end{tabular} \end{table} The table \ref{tab:Python1} is produced by the code \ref{lst:Python1}. \subsection{A figure} \label{sec:orgf75a27d} A Python block producing a figure. \begin{verbatim} import matplotlib.pyplot as plt, numpy as np from sympy import * x=symbols("x") f=lambda x:sin(x)/x t=np.arange(-6*np.pi,6*np.pi, 0.1) ft=[f(u) for u in t] fig=plt.figure(figsize=(3,2)) plt.plot(t, ft, "b-") fig.tight_layout() plt.savefig("tstfig.pdf") "tstfig.pdf" \end{verbatim} \captionof{figure}{A Python block producing a figure. \label{lst:Python2}} \begin{figure}[htbp] \centering \includegraphics[width=.9\linewidth]{tstfig.pdf} \caption{A (not so silly) figure produced by Python. \label{fig:Python2}} \end{figure} The figure \ref{fig:Python2} is produced by the code \ref{lst:Python2}. \bibliographystyle{vancouver} \bibliography{Minimal} \end{document}