LaTeX

Add tablenotes using threeparttable

\usepackage[flushleft]{threeparttable}

In the table:

\begin{table}
\centering
\caption{...}
\footnotesize
{
\def\sym#1{\ifmmode^{#1}\else\(^{#1}\)\fi}
\begin{threeparttable}

  \begin{tabular}{l*{9}{d{1.4}}}

    \\ INSERT TABLE HERE
    \\ Notes can be included using \tnote{...}, e.g. \tnote{\dag}

  \end{tabular}

  \begin{tablenotes}
    \item[$*$] $p<0.1$, \sym{**} $p<0.05$, \sym{***} $p<0.01$
    \item[\dag] These ... \smallskip
    \item \emph{Note:} This is ...
  \end{tablenotes}

\end{threeparttable}
}
\label{tbl:name}
\end{table}

Matrix with labels and borders

Using the kbordermatrix package:

\usepackage{kbordermatrix}
\renewcommand{\arraystretch}{1.3}
\kbordermatrix{
{}_{\downarrow\, t-1}\,\,\,\,\,\,{}^{t \rightarrow}\hspace{-1em}
%\stackrel{\quad\,\,\,\,\mbox{\scriptsize$t\rightarrow$}}{\downarrow\, t-1}
  & \text{Low} &\text{Medium}&\text{High}& \omit{} &
     \stackrel{\text{\scriptsize{No}}}{\text{offer}}
   & \text{Rejected} \\
\text{Low}     & 69.6 & 10.9 & 5.4  &\omit\vline & 4.3  & 9.8  \\
\text{Medium}       & 25.9 & 37.0 & 22.2 &\omit\vline & 5.6  & 9.3  \\
\text{High}       & 24.2 & 24.2 & 48.5 &\omit\vline & 0.0  & 3.0  \\ \cline{2-7}
\text{No offer}      & 37.5 & 25.0 & 25.0 &\omit\vline & 12.5 & 0.0  \\
\text{Rejected}      & 30.0 & 20.0 & 5.0  &\omit\vline & 10.0 & 35.0 \\
%Total | & 45.9 & 21.3 & 17.4 & 4.8  & 10.6
}

Column type that hides the content

\newcolumntype{H}{>{\setbox0=\hbox\bgroup}c<{\egroup}@{}}

Aligning digits in a table

\usepackage{dcolumn}
\newcolumntype{d}[1]{D{.}{.}{#1}}

\newcommand{\dc}[1]{\multicolumn{1}{c}{#1}}
\begin{tabular}{l*{9}{d{1.4}}}

Subfigures

\begin{figure}
\centering
    \begin{subfigure}{0.49\textwidth}
        \includegraphics[width=\linewidth]{\OxPath/graph/1e_bareffortdemanded.pdf}
        \caption{Effort demanded}
        \label{fig:1e_bareffortdemanded}
    \end{subfigure}
    \begin{subfigure}{0.49\textwidth}
        \includegraphics[width=\linewidth]{\OxPath/graph/1e_bareffortchosen.pdf}
        \caption{Effort chosen}
        \label{fig:1e_bareffortchosen}
    \end{subfigure}

  \caption{...}
  \label{fig:name}
\end{figure}

Hyperref colouring

\usepackage{hyperref}

\newcommand\myshade{85}
\colorlet{mylinkcolor}{violet}
\colorlet{mycitecolor}{RawSienna}
\colorlet{myurlcolor}{YellowOrange}

\hypersetup{
  linkcolor  = mylinkcolor!\myshade!black,
  citecolor  = mycitecolor!\myshade!black,
  urlcolor   = myurlcolor!\myshade!black,
  colorlinks = true,
}