LaTex列表和标题 - 如何精确对齐框架

时间:2015-03-17 10:07:04

标签: alignment latex listings

我想为我的列表使用格式正确的标题,如中所述 LaTeX source code listing like in professional books。此外,内容应该是框架。

\documentclass{report}

\usepackage{color}
\usepackage{xcolor}
\usepackage{listings}

\usepackage{caption}
\DeclareCaptionFont{white}{\color{white}}
\DeclareCaptionFormat{listing}{\colorbox{gray}{\parbox{\textwidth}{#1#2#3}}}
\captionsetup[lstlisting]{format=listing,labelfont=white,textfont=white}

\lstdefinestyle{framed}
{
     frame=lrb,         
     belowcaptionskip=-1pt,
     xleftmargin=8pt,
     framexleftmargin=8pt,
     framexrightmargin=5pt,
     framextopmargin=5pt,
     framexbottommargin=5pt,
     framesep=0pt,
     rulesep=0pt,
 }

\begin{document}

\begin{lstlisting}[style=framed,label=some-code,caption=Some Code]
public void here() {
    goes().the().code()
}
\end{lstlisting}

\end{document}

结果: Result

正如您可以清楚地看到的那样,框架未对齐左侧大约1px。 放大使我得出结论,这是对标题本身的边界设置的影响。但是,我找不到任何有关如何使用\ captionsetup配置边框的信息。

非常感谢任何有关如何解决此问题的想法。

1 个答案:

答案 0 :(得分:0)

其他人给了我一个很好的提示,只需要手动将标题框稍微向左移动:

DeclareCaptionFont{white}{\color{white}} 
\DeclareCaptionFormat{listing}{% 
  \hspace*{-0.4pt}\colorbox{gray}{\parbox{\dimexpr\textwidth-2\fboxsep+.8pt\relax}{#1#2#3}}} 
\captionsetup[lstlisting]{format=listing,labelfont=white,textfont=white}