假设我们有两/三种方法在非严格背景下证明数学陈述。你认为以下说法的最佳选择是什么?:
We will prove it [a math exercise, minority a theorem] in two different ways.
Alternative [Name of the alternative one]. Let...
Alternative [Name of the alternative two]. Let...
您会采用什么风格?你会使用definition
风格吗?:
\documentclass{article}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsthm}
\theoremstyle{definition}
\newtheorem*{alt}{Alternative}
\begin{document}
We will prove it [a math exercise, minority a theorem] in two different ways.
\begin{alt}[Name of the alternative one]
Let...
\end{alt}
\begin{alt}[Name of the alternative two]
Let...
\end{alt}
\end{document}
谢谢!!