我如何输入终点标记?

我如何输入终点标记?

这是我的代码

\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage[thmmarks,standard,thref]{ntheorem}
\usepackage{graphicx}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\theoremseparator{.}
\theoremsymbol{\ensuremath{\square}}
\newtheorem{sol}{Soluttion}

\begin{document}
\begin{sol}
This is an exercise
\end{sol}


\begin{sol}
This is an exercise
\begin{equation}
x^2 - 2(m+1)x - m^2 - 1 = 0.
\end{equation}
\end{sol}
\end{document}

我输入了 endmark,但是之后却\begin{equation} \end{equation} 无法收到 endmark。

答案1

您所需要的已经由proof的环境提供了amsthm

尝试以下步骤(根据您提供的示例简化):

\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amssymb} % loads amsfonts automatically

\begin{document}
\begin{proof}[Solution]
This is an exercise
\end{proof}

\begin{proof}[Solution]
This is an exercise
\begin{equation}
x^2 - 2(m+1)x - m^2 - 1 = 0.
\qedhere
\end{equation}
\end{proof}
\end{document}

proof可以通过添加代码将标题更改为“解决方案”

\renewcommand{\proofname}{Solution}

在序言中。

proof设置环境来识别\qedhere。将此功能添加到定理类环境中是 ams 正在考虑的请求列表中,但暂时可能不会被考虑。

相关内容