%2C%20incluindo%20o%20t%C3%ADtulo%20da%20se%C3%A7%C3%A3o%20%22Resumo%22.png)
Eu tenho um documento com um resumo.
\begin{abstract}
\texttt{
blaa blaa
}
\end{abstract}
O texto abstrato aparece como texttt conforme esperado.
Como posso fazer com que o título, ou seja, o texto que diz "Resumo" apareça texttt
também em fonte?
Responder1
Aqui está uma etoolbox
maneira de mudar para ttfamily
logo no início do abstract
ambiente.
\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}