使用类似于 \Roman 和 \Arabic 的中文数字

使用类似于 \Roman 和 \Arabic 的中文数字

在格式化部分时,我看到类似\renewcommand \thesection{\Roman{section}}

我目前正在研究一套日本历史课程笔记,如何定义\Chinese命令来使用中文/日文编号作为章节标题?

或者,如果有人能告诉我在 LaTeX 代码库中可以找到特定定义的位置,那也同样有效。我尝试在我的 texlive 安装中进行 grep 和 find,但未能找到它。

答案1

zhnumber包。文档可能会告诉你比我更多的信息……

平均能量损失(由

\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}

输出

在此处输入图片描述

相关内容