minted:如何更改编号行的起始数字?

minted:如何更改编号行的起始数字?

当您使用时\begin{minted}[linenos],它会从 1 开始对行进行编号,即:

1 console.log('something')
2 console.log('another thing)
...

我应该怎样做才能从任意数字开始编号,比如 5?

5 console.log('something')
6 console.log('another thing)
...

答案1

您可以将该firstnumber选项与一起使用linenos,如 minted 手册第 13 页中所述。

\documentclass{article}
\usepackage{minted}
\begin{document}
\begin{minted}[linenos,firstnumber=5]{python}
def f(x):
    return 2 * x
\end{minted}
\end{document}

相关内容