厳密ではない状況で数学的な記述を証明する方法が 2 つまたは 3 つあるとします。次のことを述べる場合、最適な選択肢は何でしょうか。
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}
ありがとう!!