Como posso personalizar o nome da listagem: Listing 1:
coisa - quando uso o minted? Aqui está um MWE:
\documentclass{article}
\usepackage{minted}
% \renewcommand{\lstlistingname}{Something} % doesn't work!
\begin{document}
Some text.
\begin{minted}{python}
for i in range(3):
print i
\end{minted}
Some more text.
\end{document}
Responder1
Acho que você está falando sobre o listing
ambiente do minted
pacote e \caption
aí:
\documentclass{article}
\usepackage{minted}
\renewcommand\listingscaption{My Listing Caption}
\begin{document}
\begin{listing}[H]
\begin{minted}[gobble=12]{python}
for i in range(3):
print i
\end{minted}
\caption{Example of a listing.}
\label{lst:example}
\end{listing}
\end{document}
Resultado: