Estou escrevendo um documento article class
em TeX
. Eu quero que title page
se pareça com aqueleaqui, com todo o conteúdo alinhado à esquerda, uma linha horizontal iniciando logo após a palavra RESUMO e outra linha horizontal abaixo do resumo. Inicialmente brinquei com hline
e, hlinefill
mas houve erros quando os usei dentro ou fora abstract
do ambiente. O que tenho agora produz o padrão title page
. Como posso produzir um title page
como o acima? Aqui está o código que usei:
\documentclass{article}
\usepackage{blindtext}
\title{Something Goes Here}
\author{Dr X\\ University of Dr X}
\begin{document}
\maketitle
\begin{abstract}
\blindtext
\end{abstract}
\hlinefill
\end{document}
Responder1
Isso é fácil com o abstract
pacote:
\documentclass{article}
\usepackage{blindtext}
\usepackage[style]{abstract}
\renewcommand{\abstitlestyle}[1]{\raggedright\MakeUppercase#1\enspace\hrulefill\smallskip}
\setlength{\absleftindent}{0pt}
\setlength{\absrightindent}{0pt}
\setlength{\absparindent}{0pt}
\title{Something Goes Here}
\author{Dr Nutty\\ University of Nonsense}
\begin{document}
\maketitle
\begin{abstract}
\noindent\blindtext
\end{abstract}
\hrule
\end{document}