\section{} 中的中文字符 \cjk 无法使用 pdflatex + \includegraphics

\section{} 中的中文字符 \cjk 无法使用 pdflatex + \includegraphics

为什么以下不起作用

\section{ \begin{CJK}{UTF8}{gbsn}
白居易
\end{CJK}}

当我在主文本中使用它时它可以工作,但在内部不起作用\section{xxx}

以下情况同样适用\section{ \includegraphics[]{image.png}}

关于如何使用 CJK 包和 pdflatex 强制在部分中使用中文字符,有什么建议吗?(我不想使用 xelatex 或 luatex,因为它们会弄乱我的其他设置)。

答案1

您应该CJK全局使用环境。

\documentclass{article}
\usepackage{CJKutf8}
\usepackage[T1]{fontenc}

\begin{document}
\begin{CJK}{UTF8}{gbsn}

\section{About 白居易}

some text

\clearpage\end{CJK}
\end{document}

\clearpage环境结束时别忘了CJK。这是关于CJK包的一个错误。

相关内容