如何开始使用 LaTeX 排版数学证明?

如何开始使用 LaTeX 排版数学证明?

我想开始使用 LaTeX 将我的证明整理成可读的形式。这个主题是因为我的教授更喜欢通过电子邮件交流,而不是阅读潦草的证明。我对 LaTeX 的了解足以让我可以在 math.SE 上发帖并使我的问题可读,但我不知道如何在文档中包含 LaTeX。

如何将我的证明制作成 LaTeX 文档?

答案1

框架如下,

\documentclass[preview,border=12pt,varwidth]{standalone}
%\documentclass{article}
\usepackage{mathtools}
\usepackage{amsthm}
\title{My Title}
\author{My Name}
\date{\today}

\newtheorem{thm}{Theorem}
\begin{document}
\maketitle

\begin{thm}
$ax^2+bx+c=0$ has 2 real roots if $D>0$.
\end{thm}

\begin{proof}
This is my proof that $ax^2+bx+c=0$ has 2 real roots if $D>0$.
\[
x_{1,2}=\frac{-b\pm\sqrt{D}}{4ac}
\]
\end{proof}
\end{document}

在此处输入图片描述

有关更详细的概览教程,请访问定理

相关内容