章节中示例的连续编号(langsci-gb4e)

章节中示例的连续编号(langsci-gb4e)

我尝试使用

\counterwithout{exe}{chapter}

对 langsci-gb4e 示例的章节进行连续编号。但出现以下错误。

Latex Error: No counter 'exe' defined

工作示例

\documentclass{book}

\usepackage{langsci-gb4e}

%\counterwithout{exe}{chapter}

\begin{document} 

    \chapter{First Chapter}

    \begin{exe}
    \ex  first example
    \end{exe}

    \chapter{Second Chapter}

    \begin{exe}
    \ex  second example
    \end{exe}

\end{document} 

输出(我希望第二个示例编号为“(2)第二个示例”):

在此处输入图片描述

答案1

由于我完全不明白的原因,在 的定义中langsci-gb4e使用了计数器,尽管打印示例本身时使用的计数器是。从表面上看,这似乎是一个非常糟糕的主意,因为例如,它消除了独立于环境对实际环境进行编号的可能性,但事实就是如此。因此,您可以使用以下方法实现您想要的效果:equation{exe}xnumi{equation}{exe}

\counterwithout{equation}{chapter}

这是一个完整的例子:

\documentclass{book}

\usepackage{langsci-gb4e}

\counterwithout{equation}{chapter}

\begin{document} 

    \chapter{First Chapter}

    \begin{exe}
    \ex  first example
    \end{exe}

    \chapter{Second Chapter}

    \begin{exe}
    \ex  second example
    \end{exe}

\end{document} 

代码部分输出

相关内容