如何在mactex 中把chapter转化成中文
发布网友
发布时间:2022-04-24 16:00
我来回答
共1个回答
热心网友
时间:2023-10-21 03:20
将上述CJK环境中的命令:
\titleformat{\chapter}[hang]{\centering\LARGE\bfseries}{\chaptername}{1em}{}
\renewcommand{\chaptername}{第\CJKnumber{\thechapter}章}
\renewcommand{\contentsname}{目\quad 录}
放入正文的开始部分(注意也放在CJk环境中)。
我测试了一下,可以解决这个问题。测试代码如下:
\documentclass[12pt,oneside,openany,a4paper]{book}
\usepackage{CJK}
\usepackage{amsmath}
\usepackage{cases}
\usepackage[bf,small,center,indentafter,pagestyles]{titlesec}
\usepackage{CJKpunct}
\usepackage{CJKnumb}
\hoffset=1cm\voffset=-1cm
\textwidth=12.5cm \textheight=22cm
\begin{document}
\begin{CJK*}{GBK}{song}
\titleformat{\chapter}[hang]{\centering\LARGE\bfseries}{\chaptername}{1em}{}
\renewcommand{\chaptername}{第\CJKnumber{\thechapter}章}
\renewcommand{\contentsname}{目\quad 录}
\tableofcontents
\chapter{绪论}
Blabla……
\end{CJK*}
\end{document}
ps:CJK用起来还是麻烦了点,也有点落伍了,建议改用xetex+ctex。