在格式化部分时,我看到类似\renewcommand \thesection{\Roman{section}}
。
我目前正在研究一套日本历史课程笔记,如何定义\Chinese
命令来使用中文/日文编号作为章节标题?
或者,如果有人能告诉我在 LaTeX 代码库中可以找到特定定义的位置,那也同样有效。我尝试在我的 texlive 安装中进行 grep 和 find,但未能找到它。
答案1
平均能量损失(由刘)
\documentclass{article}
\usepackage{xeCJK}
\setCJKmainfont{SimSun}
\usepackage{zhnumber}
\renewcommand\thesection{\zhnum{section}}
\renewcommand{\thesubsection}{\thesection.\zhnum{subsection}}
\begin{document}
\section{One}
\setcounter{section}{9}
\section{Ten}
\subsection{Ten.One}
\setcounter{section}{74}
\section{Seventy four}
\setcounter{section}{999}
\section{One thousand}
\end{document}