我所在大学的论文指导方针要求我将摘要与摘要标签放在同一行。这是我正在使用的类文件中给出的摘要定义。
% ABSTRACT
% page ii (no number shown)
% should be double spaced. Heading is not indented. Written at top of page.
\begin{alwayssingle}
%\thispagestyle{empty}
{\parindent0pt
\addcontentsline{toc}{frontmatter}{\protect\numberline{}Abstract}
\vspace*{0in}
Name: \textsc{\@author}\\
Date of Degree: \textsc{\@degreeyear}\\
Title of Study: \textsc{\@title}\\
Major Field: \textsc{\field}\\
Abstract: {\makeatletter
\let\@currsize\normalsize
\makeatother
{\begin{singlespace}
\@abstract
\end{singlespace}}}
}`
摘要文本应与Abstract:
标签在同一行开始(即标签后不应有换行符)。我尝试注释掉一些指令,但由于我对 latex 不太熟悉,因此无法让它工作。
答案1
我不明白您显示的代码。但是,请尝试使用一个简单的abstract
,忽略类的内容。
% abstractprob.tex SE 624327
\documentclass{book}
\begin{document}
\frontmatter
\tableofcontents
\clearpage
\noindent Abstract: \addcontentsline{toc}{section}{Abstract} The abstract text,
which may take several lines in the document but look like a
normal paragraph..
\mainmatter
\chapter{A main chapter}
The start of the main document's text.
\end{document}