如何將我的摘要字體變更為文字終端 (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}

在此輸入影像描述

相關內容