I am using xelatex and want to use the xeCJK package, but without indenting the first paragraph of a section. I tried the setup directive below, which should do the trick. But it does not. The manual is in Chinese ...
\documentclass{article}
\usepackage{xeCJK}
\setCJKmainfont{SimSun}
\xeCJKsetup{indentfirst=false}
\begin{document}
\section{Section 1}
I want to have a paragrpah without indentation.
This one should be indented.
\subsection{Section 2}
Same here.
This one should be indented.
\end{document}