LaTeX - 列表 - 代码缩进

发布于 2024-10-03 18:47:52 字数 411 浏览 8 评论 0原文

所以我正在写一些关于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

墨小沫ゞ 2024-10-10 18:47:52

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.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文