我正在尝试排版文档中的所有(描述)列表,不包含任何周围的文本或图形(希望通过章节标题获得一些上下文的情况除外)。
我以为这个preview
包可以提供帮助,并且可以让 MWE 工作,但它会在单独的页面上排版所有内容。我看不到可以改变此行为的选项。
有没有办法进行这种类型的解析,但所有的内容是否都按照传统 TeX 方法规定的分页显示?
这xcomment
包 (http://ctan.org/pkg/xcomment) 几乎可以做到这一点,但似乎不支持允许章节标题通过。
梅威瑟:
\documentclass[]{article}
%% Use below code to get just an outline and description lists
\usepackage[active,delayed,tightpage,pdftex]{preview}
\PreviewMacro[*[!]{\section} % Include Section headings
\PreviewMacro[*[!]{\subsection} % Include Subsection headings
\PreviewEnvironment{description} % Include description environments
\setlength{\PreviewBorder}{2ex} % Give a little bit of a border
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{blindtext}
\begin{document}
\blindtext
\section{Short lists}
\blinditemize
\blindtext
\blinddescription
\blindtext
\section{Long lists}
\begin{description}
\item[First] \blindtext
\item[Second] \blindtext
\end{description}
\blindenumerate
\end{document}
这给出了单独的页面...:
附带问题:
当我删除该tightpages
选项时,列表并不全部包含在页面中。这在长列表中表现得最为明显,如下所示。这是正常的吗?如何修复?