如何使定理环境的编号只与section有关

2019-10-27 00:55发布

MWE ```tex \documentclass{ctexbook} \usepackage{amsmath} \usepackage{theorem} { \theoremstyle{chang...

MWE ```tex \documentclass{ctexbook} \usepackage{amsmath} \usepackage{theorem} { \theoremstyle{change} \theoremheaderfont{\bfseries} \theorembodyfont{\normalfont} \newtheorem{ti}{}[section] } \begin{document} \chapter{高等数学} \section{极限、连续} \subsection{函数极限} \begin{ti} 求 $\lim_{x\to 0} \frac{\sqrt{1+x} - 1 - \frac{x}{2}}{\ee^{x^{2}}-1}$. \end{ti} \end{document} ``` 显示为`1.1.1`,我只想要`1.1`,即第一个代表`chapter`的数字去掉,`1.2`,`1.3`
1条回答
论坛 github.com/C
2019-10-27 01:14
通过 `\newtheorem{name}{title}[within]` 定义的定理环境,定理标题中使用的计数器名为 `name`,对应的计数器输出格式即为 `\the`。 ```tex \documentclass{ctexbook} \usepackage{amsmath} \usepackage{theorem} { \theoremstyle{change} \theoremheaderfont{\bfseries} \theorembodyfont{\normalfont} \newtheorem{ti}{}[section] } \renewcommand{\theti}{\arabic{section}.\arabic{ti}} \begin{document} \chapter{高等数学} \section{极限、连续} \subsection{函数极限} \begin{ti} content \end{ti} \begin{ti} content \end{ti} \section{title} \begin{ti} content \end{ti} \begin{ti} content \end{ti} \end{document} ``` ![](https://wenda.latexstudio.net/data/attach/191026/8EnRsq8M.png) 参考文档:https://latexref.xyz/_005cnewtheorem.html#g_t_005cnewtheorem

一周热门 更多>