我正在尝试使用 pdflscape 包。当我包含摘要时,左边距的缩进变得非常大。这是一个最小的工作示例:
\documentclass[letterpaper, 12pt]{article}
\usepackage{pdflscape}
\begin{document}
\abstract{
The abstract of my document.
}
\begin{landscape}
Why is the left margin so large here?
\end{landscape}
\end{document}
如果您注释掉摘要,那么缩进将符合预期。您知道这是怎么回事吗?有什么建议的解决方法吗?
答案1
在课堂上article
,abstract
是一个环境,不是命令。作为命令,它执行环境的开始部分,摘要将随着整个文档的结束而结束。
在环境中它按预期工作:
\documentclass[letterpaper, 12pt]{article}
\usepackage{pdflscape}
\begin{document}
\begin{abstract}
The abstract of my document.
\end{abstract}
\begin{landscape}
Why is the left margin so large here?
\end{landscape}
\end{document}