我想要做的事情可以用这张图片来说明:
我希望对示例进行编号,在每个示例后画两个斜线,并在示例末尾和下一段之间添加一点垂直间距。
我尝试了以下代码,两种不同的方法,但使用其中一种方法我得到了编号,但不知道如何获取行,而使用另一种方法我不知道如何获取编号。
\documentclass[
12pt,
openright,%
parskip=full,
spanish,
]{scrreprt}
\usepackage[spanish]{babel}
\usepackage{amsmath,mathtools,amssymb,amsthm}
\theoremstyle{definition}
\newtheorem{theorem}{Teorema}[section]
\newenvironment{ExampleOne}
{\renewcommand\qedsymbol{$ / / $}\begin{proof}[Ejemplo]}
{\end{proof}}
\newtheorem{ExampleTwo}[theorem]{Ejemplo}
\begin{document}
\begin{ExampleOne}
This is an example
\end{ExampleOne}
\begin{ExampleTwo}
This is a second example
\end{ExampleTwo}
\end{document}
答案1
我不确定您真正想要什么符号和编号,但以下示例很容易修改:
\documentclass[
12pt,
openright,%
parskip=full,
spanish,
]{scrreprt}
\usepackage[spanish]{babel}
\usepackage{amsmath,mathtools,amssymb,amsthm}
\theoremstyle{definition}
\newtheorem{theorem}{Teorema}[section]
\newenvironment{ExampleOne}
{\renewcommand\qedsymbol{$ / / $}\begin{proof}[Ejemplo]}
{\end{proof}}
\newtheorem{ExampleTwo}[theorem]{Ejemplo}
\newenvironment{mythm}{\begin{ExampleTwo}}{\renewcommand\qedsymbol{$ / / $}\qed \end{ExampleTwo}}
\begin{document}
\chapter{Uno}
Yours:
\begin{ExampleOne}
This is an example
\end{ExampleOne}
\begin{ExampleTwo}
This is a second example
\end{ExampleTwo}
The new one:
\begin{mythm}
This is the third example
\end{mythm}
\end{document}