minted を使用する場合、リスト名: thing をカスタマイズするにはどうすればよいですかListing 1:
? 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}
答え1
パッケージとそこからlisting
の環境について話していると思います:minted
\caption
\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}
結果: