答案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}
您可以选择使用示例文本。
希望您明白了。让我了解更多。