1

I have a .jpg image in my LaTeX document I want to be labelled as "Scheme x" rather than "Fig. x". Is it possible to change the label?

Thanks in advance for any advice.

naphaneal
  • 2,614
rleve
  • 11

1 Answers1

3

With the package chemstyle you can get a "Scheme" instead of a "Figure". I think in the command \label{xxx:test} you can write for xxx what ever you want.

UPDATE: You could also use a .jpg instead of a .pdf in my example.

\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{chemstyle}

\begin{document}

\begin{scheme}
    \centering
    \includegraphics[width=\textwidth]{test.pdf}
    \caption{Test.}
\end{scheme}

\end{document}

Output of my example (pdflatex compiler): Output of my example (pdflatex compiler)