Supongamos que tenemos dos o tres formas de probar un enunciado matemático en un contexto no riguroso. ¿Cuál sería la mejor opción para ti si dijeras lo siguiente?:
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...
¿Qué estilo usarías?¿Usarías definition
estilo?:
\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}
¡¡Gracias!!