定理、注释等语句末尾的数学表达式与符号之间的空格过多

定理、注释等语句末尾的数学表达式与符号之间的空格过多

我在我的定理(和其他)环境的末尾添加了一个菱形符号:

在此处输入图片描述

但是,当我在定理末尾使用任何显示数学时,菱形设置得太低了:

在此处输入图片描述

有什么办法可以让钻石升起来吗?自动地所以它与数学表达式的末尾对齐 (或几乎对齐)?像这样 (我用过\tag*{\diamond}):

在此处输入图片描述

\documentclass[letterpaper,11pt]{book}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}

\usepackage{amsmath}
\usepackage{dsfont}

%im using this font (in case it is important)
\usepackage{tgbonum}
\newcommand\hmmax{0}
\newcommand\bmmax{0}
\usepackage{helvet}
\renewcommand{\familydefault}{\sfdefault}

%using the package amsthm to define theorems lemmas, corolaries etc.
\usepackage{amsthm}
\newtheorem{thrm1}{Theorem}[section]
\newtheorem{remark1}[thrm1]{Remark}
\newtheorem{prop1}[thrm1]{Proposition}

%this new commands let me end every statment of a theorem, remark or proposition with any symbol, in this case i'm using "$\diamond$"

\newcommand{\thmsymbol}{$\diamond$}

\newenvironment{thrm}{\begin{thrm1}%
  \renewcommand{\qedsymbol}{\thmsymbol}\pushQED{\qed}}%
  {\popQED\end{thrm1}}
  
\newenvironment{remark}{\begin{remark1}%
  \renewcommand{\qedsymbol}{\thmsymbol}\pushQED{\qed}}%
  {\popQED\end{remark1}}

\newenvironment{prop}{\begin{prop1}%
  \renewcommand{\qedsymbol}{\thmsymbol}\pushQED{\qed}}%
  {\popQED\end{prop1}}
\begin{document}



\section*{So, my problem is the following.}

\begin{thrm} Every end of a theorem, proposition, remark etc, is marked with the symbol ``$\diamond$''.
\end{thrm}
\begin{remark}
As you can see, the diamond symbol is positioned immediately at the end of the sentence. I mean, it is just right here $\rightarrow\rightarrow\rightarrow\rightarrow\rightarrow$
\end{remark}

\section*{My problem is when I use math mode}

\begin{prop} When I use math mode, the position of the $\diamond$ is too low
    $$\int_0^1 x \, dx = \frac{1}{2} \quad \text{i mean, it goes waaaay down: } \rightarrow\rightarrow\rightarrow\rightarrow\rightarrow\rightarrow\rightarrow \searrow $$
\end{prop}

My question is: \textbf{is there some way to get the diamond up, automatically?} aligned (or almost aligned) with the end of the math expression, something like this:

\begin{prop1} Here is Euler's formula 
\begin{align*}
e^{ix} = \cos (x) + i \sin (x) \quad\quad \forall x \in \mathds{R} \tag*{$\diamond$}
\end{align*}
\end{prop1}
And I can continue without any problem, instead of dealing with: 
\begin{prop} Here is Euler's formula 
\begin{align*}
e^{ix} = \cos (x) + i \sin (x) \quad\quad \forall x \in \mathds{R} 
\end{align*}
\end{prop}
\noindent Too much space between the math expression and the diamond symbol!

\end{document}

答案1

您需要\qedhere考虑 QED 符号必须出现在数学显示中或列表末尾的情况(enumerateitemize)。

然而,你一定不能使用$$:参见为什么 \[ ... \] 比 $$ ... $$ 更可取?。在这里,这不仅仅是“可取的”,而是至关重要的. 任何标准amsmath显示环境均可接受\qedhere

\documentclass[letterpaper,11pt]{book}
\usepackage{amsmath}
\usepackage{amsthm}

\newtheorem{thrm1}{Theorem}[section]
\newtheorem{remark1}[thrm1]{Remark}
\newtheorem{prop1}[thrm1]{Proposition}

\newcommand{\thmsymbol}{$\diamond$}

\newenvironment{thrm}{\begin{thrm1}%
  \renewcommand{\qedsymbol}{\thmsymbol}\pushQED{\qed}}%
  {\popQED\end{thrm1}}
  
\newenvironment{remark}{\begin{remark1}%
  \renewcommand{\qedsymbol}{\thmsymbol}\pushQED{\qed}}%
  {\popQED\end{remark1}}

\newenvironment{prop}{\begin{prop1}%
  \renewcommand{\qedsymbol}{\thmsymbol}\pushQED{\qed}}%
  {\popQED\end{prop1}}


\begin{document}

\section*{So, my problem is the following.}

\begin{thrm}
Every end of a theorem, proposition, remark etc, is marked with the symbol ``$\diamond$''.
\end{thrm}

\begin{remark}
As you can see, the diamond symbol is positioned immediately at the end of the sentence. 
I mean, it is just right here $\rightarrow\rightarrow\rightarrow\rightarrow\rightarrow$
\end{remark}

\section*{My problem is when I use math mode}

\begin{prop}
When I use math mode correctly, the position of the $\diamond$ is perfect
\[
\int_0^1 x \, dx = \frac{1}{2} \qedhere
\]
\end{prop}

\end{document}

我只留下了文件的相关部分。

在此处输入图片描述

相关内容