1

I work with both pictures and schematics, and instead of "figure", I want "Picture" or "Schematics" to show up. Thus I use \renewcommand as shown below:

\renewcommand{\figurename}{Picture}
\begin{figure}[htp]
\centering
\includegraphics[scale=1.0]{my_picture.png}
\caption{This is my picture}
\end{figure}

\renewcommand{\figurename}{Schematics}
\begin{figure}
\begin{tikzpicture}
    code
\end{tikzpicture}
\caption{This is my schematics}
\end{figure}

The result of the caption would be:

  • Picture 1.1 : This is my picture
  • Schematics 1.2 : This is my schematics

meaning that they are enumerated commonly, starting from 1. Is there a way both of them to have individual enumeration, such as

  • Picture 1.1 : This is my picture
  • Schematics 1.1 : This is my schematics
  • Picture 1.2 : This is my picture
  • Schematics 1.2 : This is my schematics
  • etc ......

0 Answers0