beamer 的计数问题

2020-09-05 11:33发布

## 编译环境 操作系统 * [x ] Windows 7/8/10 `若需勾选,请把[ ]改成[x]` Tex发行版 * [x ] TexLive `2019` `若需勾选,请把[ ]改成[x]`...

## 编译环境 操作系统 * [x ] Windows 7/8/10 `若需勾选,请把[ ]改成[x]` Tex发行版 * [x ] TexLive `2019` `若需勾选,请把[ ]改成[x]` ## 怎么将编号S1.1.1改为1.1? ``` \documentclass{beamer} \usepackage[UTF8]{ctex} \usetheme{} \setbeamertemplate{theorems}[numbered] %定理编号(默认定理环境是不显示编号) \newtheorem{myli}{\kaishu 例}[section] \renewcommand{\thesection}{\S~\arabic{part}.\arabic{section}} \begin{document} \part{A} \section{A1} \begin{frame}{\thesection } \begin{myli} \end{myli} \end{frame} \end{document} ``` ![](https://wenda.latexstudio.net/data/attach/200905/87AksrMp.png)
1条回答
逆天小白兔
2020-09-05 11:48 .采纳回答
重新定义计数器就可以了 ``` \documentclass{beamer} \usepackage[UTF8]{ctex} \usetheme{} \setbeamertemplate{theorems}[numbered] %定理编号(默认定理环境是不显示编号) \newtheorem{myli}{\kaishu 例}[section] \renewcommand{\themyli}{\arabic{part}.\arabic{myli}} \renewcommand{\thesection}{\S~\arabic{part}.\arabic{section}} \begin{document} \part{A} \section{A1} \begin{frame}{\thesection 定义} \begin{myli} 题内容 \end{myli} \begin{myli} 题内容 \end{myli} \end{frame} \end{document} ```

一周热门 更多>