如何将摘要字体更改为文本终端(texttt),包括部分标题“摘要”

如何将摘要字体更改为文本终端(texttt),包括部分标题“摘要”

我有一份带有摘要的文件。

\begin{abstract}

    \texttt{
        blaa blaa
    }

\end{abstract}

摘要文本按预期以 texttt 形式出现。

我怎样才能使标题(即“摘要”文本)texttt也出现在字体中?

答案1

这是一种etoolbox方法,ttfamily在环境开始时就切换到正确位置abstract

\documentclass[notitlepage]{article}

\usepackage{etoolbox}

\AtBeginEnvironment{abstract}{%
\ttfamily%
}

\begin{document}

\begin{abstract}
  Brontosaurs are thin at one end, thick in the middle and thin at the other end.
\end{abstract}
\end{document}

在此处输入图片描述

相关内容