Latex

Include figure

\begin{figure}
  \centering
  \includegraphics[height=0.5\linewidth]{images/filename.png}
  \caption{Some caption}
  \label{fig:some-figure}
\end{figure}

Using hyperref and the correct labels with autoref (Eq. 1 instead of Equation 1 and Fig. 1 instead of Figure 1)

\usepackage[english]{babel}
\usepackage[%
  colorlinks = true,
  citecolor  = RoyalBlue,
  linkcolor  = RoyalBlue,
  urlcolor   = RoyalBlue,
  ]{hyperref}
  
\addto\extrasenglish{%
  \renewcommand{\chapterautorefname}{Chapter}%
  \renewcommand{\figureautorefname}{Fig.}%
  \renewcommand{\equationautorefname}{Eq.}%
  \renewcommand{\sectionautorefname}{Section}%
  \renewcommand{\subsectionautorefname}{Section}%
}

Continuous figure labeling in book class (Fig 1, 2, 3 instead of Fig 1.1, 2.1, 2.2...)

Subfigures side by side

Last updated

Was this helpful?