答案1
我不知道这是为什么,只是看起来这是为了避免在行首留下空格。但您可以通过在\strut
左括号前插入一个来解决这个问题:
\documentclass{article}
\usepackage{xeCJK}
\begin{document}
\begin{enumerate}
\item \strut「あああああああああああああ」
あああああああああああああ。
\strut「あああああああああああああ」
あああああああああああああ。
\end{enumerate}
\end{document}
另一种方法是在第二行插入半角空格:
\documentclass{article}
\usepackage{xeCJK}
\newlength{\cjktextsize}
\makeatletter
\newcommand{\cjkhalfspace}{%
\setlength{\cjktextsize}{\f@size pt}%
\hspace*{0.5\cjktextsize}}
\makeatother
\begin{document}
\begin{enumerate}
\item「あああああああああああああ」
\cjkhalfspace あああああああああああああ。
「あああああああああああああ」
\cjkhalfspace あああああああああああああ。
\end{enumerate}
\end{document}