提问于:
浏览数:
2838
请问如何进行中文编号?
例如:
一、研究背景
以下是我的失败尝试
\documentclass{article}
\usepackage{ctex}
\begin{document}
\ctexsetup[number={\chinese{section}}]{section}
\section{Introduction}
\end{document}
本人使用的是overleaf在线编辑器
2 回答
0
建议详细的看 `texdoc ctex` 第 7 节 章节标题格式设置
```tex
\documentclass{ctexart}
\ctexset{
section={% 设置 section 格式
format={\zihao{4}\heiti\centering},% 4号黑体字居中
name={,、},% 序号后跟顿号
aftername={\hspace{0pt}},% 修改序号和标题直接的间距
number=\chinese{section},% 设置序号为中文
},
}
\begin{document}
\section{Introduction}
\end{document}
```
作者追问:2020-02-27 11:55
我希望标题居左,所以我将“centering”改成了“left”,但是标题左侧仍有2字符的缩进,请问这个可以修改吗?
回答: 2020-02-27 11:56
用 `\raggedright`,去看看 `texdoc lshort-zh` 吧
-
非常感谢! – 核糖体 2020-02-27 22:38 回复
1
```tex
\documentclass{ctexart}
\ctexset{
section={
number=\chinese{section},
},
}
\begin{document}
\section{研究背景}
\end{document}
```
![](https://pics.latexstudio.net/data/images/202002/cdff82b986ef517.png)
下次麻烦用代码块
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。