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 回答1

4
通过 `\newtheorem{name}{title}[within]` 定义的定理环境,定理标题中使用的计数器名为 `name`,对应的计数器输出格式即为 `\the<name>`。 ```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
  • 谢谢!问题解决了 – sikouhjw 2019-10-27 10:31 回复

你的回答

请登录后回答

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