## 编译环境 操作系统 * [ ] Windows 7/8/10 * [ ] macOS * [x ] Linux `若需勾选,请把[ ]改成[x]` Tex发行版 * [ ] TexLive `年份` * [ ] MikTeX `版本号` * [x ] CTeX `若需勾选,请把[ ]改成[x]` ## 我的问题 两个lstlisting,代码行数计数如何不重新开始,下一个lstlisting接上个的行数继续计数。

1 回答1

1
不知道能不能回答你的问题 ``` \documentclass{ctexart} \usepackage{listings} \begin{document} 第一个环境 \begin{lstlisting}[numbers=left] for i:=maxint to 0 do begin { do nothing } end; \end{lstlisting} 第二个环境(序号接第一个) \lstset{firstnumber=last} \begin{lstlisting}[numbers=left] for i:=maxint to 0 do begin { do nothing } end; \end{lstlisting} \end{document} ``` 效果 ![](https://wenda.latexstudio.net/data/attach/200710/LwqQQDWL.png)

你的回答

请登录后回答

你的回答将会帮助更多人,请务必认真回答问题。