LaTeX - 列表 - 代码缩进
所以我正在写一些关于 git 的作业论文,我想插入一些控制台输出示例。我正在使用 TextMate。 我的 LaTeX 代码像其他普通源代码一样缩进,以使其更具可读性。 我现在的问题是,为什么我的输出 pdf 中的列表缩进以及如何防止这种情况发生。
一些示例代码:
\begin{lstlisting}
$ git ls-files
README
TU_Logo_SW.pdf
beleg.pdf
beleg.tex
\end{lstlisting}
在我的文件中,\begin 前面有一个选项卡,后面的行中有两个选项卡。 当我运行 pdflatex 时,代码将在 pdf 中缩进两个制表符。 Quickfix 是在我的 tex 文件中格式化所有列表而不缩进,但这非常难看;-(
so I'm working on some kind of homework paper about git and I want to insert some console output examples. I'm working with TextMate.
I have my LaTeX code indented like every other normal source code, to make it more readable.
My question now is, why get listings in my output pdf indented and how do I prevent that.
Some example code:
\begin{lstlisting}
$ git ls-files
README
TU_Logo_SW.pdf
beleg.pdf
beleg.tex
\end{lstlisting}
In my file there is one tab in front of \begin and two in the lines following.
When I run pdflatex the code will be indented with two tabstops in the pdf. Quickfix is to format all the listings without indention in my tex file, but thats pretty ugly ;-(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
lstlisting 有一个可以让你删除空格的键:
\begin{lstlisting}[gobble=4] 将从环境中的每个输入行中删除前四个字符。 (我认为此时制表符仍应算作一个字符。)
lstlisting has a key that lets you remove spaces:
\begin{lstlisting}[gobble=4] will remove the first four characters from every input line in the environment. (I think a tab should still count as one character at that point.)