清单添加空格,如何删除它?

时间:2010-11-25 09:23:39

标签: latex whitespace listings

嘿伙计们, 当使用列表在我的PDF中显示代码时,它会在一些字符后添加空格。 This is how it looks in the pdf(由于声誉,我不允许发布图片,因此请将“.png”添加到网址,抱歉)。

我正在使用以下代码添加商品信息。

\newcommand{\lstchange}[2]{
  \lstset{breaklines=true,
  frame=single,
  captionpos=b,
  basicstyle={\ttfamily\footnotesize},
  showspaces=false,
  showstringspaces=false,
  showtabs=false,
  numberstyle={\ttfamily\footnotesize},
  keywordstyle={\bfseries\color{blue}},
  stringstyle=\color{darkorange}\ttfamily,
  commentstyle=\color{OliveGreen},
  language=#1,
  morekeywords={#2} }
}

% ...

\lstchange{bash}{svn , cd, gnome-open}
\begin{lstlisting}[caption=someCaption, label=someLabel]
#!/bin/bash

svn checkout http://opendecisionrepository.googlecode.com/svn/trunk/sources/web-interface/src/main/webapp odr-appetizer-2 -r 621

cd odr-appetizer-2

#open drawing.xhtml
gnome-open drawing.xhtml
\end{lstlisting}

你们中有谁知道为什么会这样吗?即使我使用乳胶wikibook中的标准示例,也会发生这种情况。

也许这对你来说也很重要,配置文件:

\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

\usepackage[left=2.5cm, right=2.5cm, top=2.5cm, bottom=3cm, a4paper]{geometry}
\usepackage[pdftex]{graphics}
\usepackage{fancyhdr}


\usepackage{%
  array,
  booktabs,
  dcolumn,
  rotating,
  shortvrb,
  tabularx,
  units,
  url,
  xcolor,
  lastpage,
  longtable,
  lscape,
  multirow,
  amssymb,
  amsmath,
  float,
  chngpage,
  colortbl,
  helvet,
  listings
}

提前致谢!

干杯,

1 个答案:

答案 0 :(得分:0)

这里无法重现(使用\documentclass{article}),它看起来很好。我只需要评论“OliveGreen”,因为它不为人知。