答案1
设置ctexart
中章节标题后的缩进\@startsection
。应该有一个键可以更改行为,但遗憾的是我不懂中文,文档似乎是中文的。键应该是与 一词相关的任何内容afterindent
,如果您懂文档,请搜索它。
因此,以下方法可行ctexart
:
\documentclass[UTF8]{ctexart}
\usepackage{xpatch}
\makeatletter
\xpatchcmd\@startsection{\@afterindenttrue}{\@afterindentfalse}{}
{%
\GenericError{}{Patching \noexpand\@startsection failed}{}
{Read the manual of 'ctexart' and search for the key 'afterindent'.}%
}
\makeatother
\begin{document}
\section{A}
\subsection{A-A}
before text
\begin{itemize}
\item a
\item b
\end{itemize}
after text
\end{document}