列举例子

列举例子

我希望能够跟踪各个章节/部分中编号的示例,类似\section{<name>}或环境之类的东西可能更合适。所以我可以有类似的东西

在此处输入图片描述

或者

在此处输入图片描述

但无需仔细规划命名,所以我可以说,例如

\example The problem (optional)
The solution

(如果我能指定前缀,则会获得加分)

答案1

我有同样的计划并得到了解决方案:

创建新环境如下:

% template for solved examples
\newcounter{examplenum}[section] % where to start, Chapter/section/subsection

\newenvironment{example}[1]{
% begin the environment
\refstepcounter{examplenum}
\noindent\textbf{Example or Ex.} \theexamplenum\hspace{0.6ex}\textit{#1}
\vspace{0.5ex}
% body of environment (the equations)
}{%
% close the environment
\hfill\(\color{blue!60}\rule{0.6em}{0.6em}\vspace{2ex}\)
}

模板的使用:

\begin{example}{Example text: 1+1}

1+1=2
\end{example}

您可以选择使用示例文本

希望您明白了。让我了解更多。

相关内容