Latex 实际文本宽度小于 documentclass 文章中的 \textwidth,但不在报告中

Latex 实际文本宽度小于 documentclass 文章中的 \textwidth,但不在报告中

我发现 Latex 中的文本宽度出现了奇怪的行为。当我使用 \documentclass[a4paper]{article} 时,实际文本宽度实际上并不是 \textwidth。如果我在 geometry 中使用 showframes,我可以看到这一点。该问题不会出现在 \documentclass[a4paper]{report} 中。

例 1:

\documentclass[a4paper]{article} % use larger type; default would be 10pt
\usepackage[top=1in, bottom=1in, left=0.5in, right=0.5in,showframe]{geometry} % to change the page dimensions top=1in, bottom=1in, left=0.5in, right=0.5in,
\usepackage{graphicx}
\usepackage{lipsum}
\usepackage{array}

\title{TEST}
\author{?}

\begin{document}
\maketitle
\abstract{???}
\tableofcontents
\newpage


\section{Introduction}\label{sec:Introdu}
\lipsum

\end{document}

例 2:

\documentclass[a4paper]{report} % use larger type; default would be 10pt
\usepackage[top=1in, bottom=1in, left=0.5in, right=0.5in,showframe]{geometry} % to change the page dimensions top=1in, bottom=1in, left=0.5in, right=0.5in,
\usepackage{graphicx}
\usepackage{lipsum}
\usepackage{array}

\title{TEST}
\author{?}

\begin{document}
\maketitle
\abstract{???}
\tableofcontents
\newpage


\section{Introduction}\label{sec:Introdu}
\lipsum

\end{document}

文章

报告

答案1

在文章类中,摘要是一种以较窄的宽度排版摘要的环境。\abstract相当于\begin{abstract}所以你永远不会真正结束摘要,因此整个文档都以较窄的宽度排版。

使用

\begin{abstract} 
... 
 \end{abstract} 

相关内容