如何从另一个计数器(Latex)设置继续计数器?

如何从另一个计数器(Latex)设置继续计数器?

我想设置一个计数器(自动),例如:

\newcounter{question}
\newcounter{example}

问题 1. 问题 2. 示例 3. 示例 4. 问题 5. 问题 6.

你能帮助我吗?非常感谢。

答案1

欢迎大陸:)))虽然使用questionexample来自amsthm是最好的方法,但总是可以定义一个新的计数器并使用它。

\documentclass{article}
\setlength{\parskip}{1ex}
\newcounter{yourcounter}
\newcommand\yourquestion[1]{%
\textbf{\stepcounter{yourcounter}Question \arabic{yourcounter}:} \textit{#1}\par}
\newcommand\yourexample[1]{%
\textbf{\stepcounter{yourcounter}Example \arabic{yourcounter}:} \textit{#1}\par}
\begin{document}
\yourquestion{How many continents are there?}
\yourexample{This example is for no purposes.}
\yourexample{And this is another example.}
\yourquestion{This is another question.}
\yourexample{How about the numbering of this example?}
\yourquestion{Lorem ipsum dolor sit amet, consectetur adipiscing elit. In eget viverra eros. Donec commodo dapibus dictum. Etiam non ex placerat, fermentum ex sed, suscipit sem. Praesent facilisis vel quam non fringilla. Morbi sagittis tortor sed varius luctus. Curabitur ullamcorper ante scelerisque quam commodo, quis imperdiet sapien maximus. Phasellus bibendum, ligula eu tempor vulputate, tortor erat bibendum sem, eget lacinia mauris dui ac elit.}
\end{document}

在此处输入图片描述

答案2

像这样?

\documentclass{article}
\usepackage{amsmath,amsthm}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}

\newtheorem{question}{Question} 
\newtheorem{example}[question]{Example}

\begin{document}
\section{Questions and Examples}

\begin{question}
$2+2=?$
\end{question}

\begin{question}
$\int \dfrac{1}{1+x} \mathrm{d}x=?$
\end{question}

\begin{example}
$2+2=4$
\end{example}

\begin{example}
Air...
\end{example}

\begin{question}
$2\times 5=10$
\end{question}

\end{document}

在此处输入图片描述

相关内容