"대체" 환경을 정의하는 방법

"대체" 환경을 정의하는 방법

엄격하지 않은 맥락에서 수학적 명제를 증명하는 두 가지 또는 세 가지 방법이 있다고 가정합니다. 다음과 같이 말할 때 가장 좋은 선택은 무엇입니까?:

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 사진

감사해요!!

관련 정보