Estou tentando obter duas listas separadas de números. Uns são as figuras contendo alguns gráficos criados usando tikzpicture
como:
\begin{figure}
\begin{tikzpicture}
\begin{axis}
...
\end{axis}
\end{tikzpicture}
\end{figure}
e as outras são imagens simples. No resultado preciso ter uma lista de figuras e uma lista de gráficos. Como posso conseguir isso? Por favor, dê um exemplo, se possível.
Responder1
O pacote newfloat
oferece uma interface simples:
\usepackage{newfloat}
\DeclareFloatingEnvironment[
fileext=lop,
listname={List of Plots},
name=Plot,
placement=tp,
%within=section,% activate it if you want
%chapterlistsgaps=on,% meaningful only if chapters exist
]{plot}
Exemplo completo:
\documentclass{article}
\usepackage{newfloat}
\usepackage{pgfplots}
\DeclareFloatingEnvironment[
fileext=lop,
listname={List of Plots},
name=Plot,
placement=tp,
%within=section,% activate it if you want
%chapterlistsgaps=on,% only meaningful when chapters exist
]{plot}
\pgfplotsset{compat=1.13}
\begin{document}
\listoffigures
\listofplots
\section{Test}
\begin{figure}[htp]
\centering
\fbox{\rule{0pt}{3cm}\rule{3cm}{0pt}}
\caption{A figure}
\end{figure}
\begin{plot}[htp]
\centering
\begin{tikzpicture}
\begin{axis}[
extra x ticks={-2,2},
extra y ticks={-2,2},
extra tick style={grid=major}]
\addplot {x};
\draw (axis cs:0,0) circle[radius=2];
\end{axis}
\end{tikzpicture}
\caption{A plot}
\end{plot}
\end{document}