Maneiras de definir ambiente "Alternativo"

Maneiras de definir ambiente "Alternativo"

Suponha que temos duas/três maneiras de provar uma afirmação matemática em um contexto não rigoroso. Qual seria a melhor opção para você dizer o seguinte?:

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...

Que estilo você usaria?Você usaria definitionestilo?:

\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}

Imagem do MWE

Obrigado!!

informação relacionada