Thmtools 去掉一个点

Thmtools 去掉一个点

我正在使用 thmtools 制作我的 LaTeX 模板。我经常使用带编号的数学框。但现在我想添加相同的框,只是没有数学上下文。所以我构建了这个:

\documentclas{article}
\usepackage{amsthm}
\usepackage{thmtools}
% The Box
\declaretheorem[name = , numbered = no,]{Boxname}
\newenvironment{boxname}[1][]{
    \begin{Boxname}\ifblank{#1}{}{\color{black}\hspace*{-0.68em}\normalfont\textbf{#1}}\color{black}\normalfont$ $\newline
        \raisebox{.2\baselineskip}{\rule{\linewidth}{0.6pt}}\newline\noindent
    }{
        \newline\noindent {\rule{\linewidth}{0.6pt}}
    \end{Boxname}
}
\begin{document}
    \begin{boxname}[Name of the Box]
        some stuff
    \end{boxname}
\end{document}

我的问题:总有一个点我无法删除。有人能帮我去掉这个点吗?

答案1

您应该定义一种特定的样式,用于删除标题后的标点和空格。

\documentclass{article}
\usepackage{amsthm}
\usepackage{thmtools}
\usepackage{etoolbox,xcolor}

% The Box
\declaretheoremstyle[
  headpunct={},
  postheadspace=0pt,
]{box}
\declaretheorem[
  style=box,
  name = ,
  numbered = no,
]{Boxname}
\newenvironment{boxname}[1][]{%
  \begin{Boxname}
  \ifblank{#1}
    {\mbox{}}
    {\normalcolor\normalfont\textbf{#1}}%
  \\
  \raisebox{.2\baselineskip}{\rule{\linewidth}{0.6pt}}\\
}{%
  \\\rule{\linewidth}{0.6pt}
  \end{Boxname}
}

\begin{document}

\begin{boxname}[Name of the Box]
some stuff
\end{boxname}

\end{document}

我还简化了代码。

在此处输入图片描述

相关内容