¿Cómo personalizo el nombre del listado: Listing 1:
cosa cuando uso acuñado? Aquí hay un 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}
Respuesta1
Creo que estás hablando del listing
entorno del minted
paquete y \caption
allí:
\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: