避免在“parcolumns”中缩进

避免在“parcolumns”中缩进

该包parcolumns有一个选项nofirstindent“抑制环境中第一段的缩进”,但显然它会缩进其他段落,甚至忽略\noindent

有没有办法避免这种情况并抑制所有缩进?

答案1

你可以用它将其设为零

\setlength{\parindent}{0pt}

我已经在一个组内使用了它,因此它仅在组内有效parcolumns

\documentclass{article}
\usepackage{parcolumns}
\usepackage{kantlipsum}
\usepackage[margin=.5in]{geometry}

\begin{document}
\kant[1-2]
{\setlength{\parindent}{0pt}
        \begin{parcolumns}{2}
            \colchunk{%
                \kant[1-2]
            }
            \colchunk{%
                \kant[3-4]
            }
            \colplacechunks
        \end{parcolumns}
}
\kant[1-2]
\end{document}

相关内容