如何在示例末尾添加 \clubsuit

如何在示例末尾添加 \clubsuit

我想知道是否有一组简单的代码可以让标准\begin{example} \end{example}环境amsthm具有额外的功能,即\clubsuit在示例末尾右对齐 a ?同样,我想对 remark 环境执行完全相同的修改,但使用 a\diamond而不是 a \clubsuit

答案1

您可能想要查看该ntheorem软件包。以下是从文档第 17 页摘录的几个可自定义的示例:

在此处输入图片描述

\documentclass{article}
\usepackage[thmmarks]{ntheorem}
\theoremstyle{change}
\theorembodyfont{\upshape}
\theoremsymbol{\ensuremath{\clubsuit}}
\theoremseparator{}
\newtheorem{example}{Example}

\theoremstyle{change}
\theorembodyfont{\upshape}
\theoremsymbol{\ensuremath{\diamondsuit}}
\theoremseparator{}
\newtheorem{remark}{Remark}

\theoremheaderfont{\scshape}\theorembodyfont{\upshape}
\theoremstyle{nonumberplain}
\theoremseparator{:}
% \theoremsymbol{\rule{1ex}{1ex}}
% for tohecz
\theoremsymbol{\makebox[7.7778pt][c]{\rule{1ex}{1ex}}}
\newtheorem{Proof}{Proof}

\begin{document}

\begin{example}
Here's an example
\end{example}

\begin{remark}
Here's a remark
\end{remark}

\begin{Proof}
Here is a proof
\end{Proof}

\end{document}

相关内容