中文book类型,section连续编号怎么弄,如图 ![](https://pics.latexstudio.net/data/images/202001/f64f475e63200d6.png)

2 回答2

1
```tex \documentclass[heading]{ctexbook} \ctexset{ section={ name=\S, number=\arabic{section} } } \counterwithout{section}{chapter} \renewcommand\thesection{\arabic{section}} \begin{document} \tableofcontents \chapter{第一章} \section{第一章第一节} \section{第一章第二节} \chapter{第二章} \section{第二章第一节} \section{第二章第二节} \end{document} ```
  • 回复 undefined :需要使用 xelatex 编译 – frank.xin 2020-01-20 08:58 回复
  • 谢谢,但我用的是winEdt7.0, 用pdflatex编译,编译没法通过 – springer 2020-01-18 19:37 回复
1
可以试试调整编号重置方法,如: ```tex \documentclass{ctexbook} \makeatletter \@removefromreset{section}{chapter} \renewcommand\thesection{\arabic{section}} \makeatother \ctexset{ section/name = {\S}, } \begin{document} \tableofcontents \chapter{引言} \section{概述} xxxx \section{现状} xxxx \chapter{原理} \section{概述} xxxx \section{算法} xxxx \end{document} ``` 可能并不能完全符合要求,请根据具体情况再做调整。
  • 谢谢,但我用的是winEdt7.0, 用pdflatex编译,编译没法通过 – springer 2020-01-18 19:37 回复

你的回答

请登录后回答

你的回答将会帮助更多人,请务必认真回答问题。