Способы определения «альтернативной» среды

Способы определения «альтернативной» среды

Предположим, у нас есть два/три способа доказать математическое утверждение в нестрогом контексте. Какой вариант будет для вас лучшим, чтобы сказать следующее?:

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}

Изображение MWE

Спасибо!!

Связанный контент