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.
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.
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}