所有内容都以粗体显示,并且分页符出现在错误的位置

所有内容都以粗体显示,并且分页符出现在错误的位置

我刚刚开始尝试使用 texmaker 3.3.2。我想我了解基础知识,但在一份非常短的文档中,我遇到了多个问题。我刚刚下载了 texmaker,所以我认为我没有意外更改任何默认值或设置。

第一个问题:除非有其他格式覆盖它,否则所有文本都是粗体,例如枚举列表或目录。

第二:所有分页符都出现在我插入它们之前的一个段落。

我使用的是 PdfLaTeX + 查看 PDF 的默认设置,但我尝试了其他一些设置,但仍然会出现这种情况。起初我以为我的文本可能有一系列字符导致粗体,但显然不是,因为我用下面的虚拟文本替换了它,但这种情况仍然会发生。

\documentclass[11pt,letterpaper,titlepage]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\author{Me}
\title{My title}
\begin{document}
\maketitle
\tableofcontents
\section*{Acknowledgements}
\paragraph{I would like to thank my research advisor.}
\paragraph{And some other people. }
\paragraph{This always ends up AFTER the page break, alas.}
\pagebreak
\section*{Abstract}
\paragraph{Most of the abstract.}
\paragraph{One more thing that also appears after a pagebreak.}
\pagebreak
\section{First section}
\end{document}

答案1

\paragraph不用于设置普通文本,它是一个标题,位于以下级别subsubsection。请参阅任何介绍性文字,例如维基百科或者LaTeX2e 的简短介绍

直接写普通文本,用空行分隔段落即可。此外,\newpage通常比\pagebreak(参见 egreg 的评论)更好。参见\pagebreak 与 \newpage了解它们之间的区别。

\documentclass[11pt,letterpaper,titlepage]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\author{Me}
\title{My title}
\begin{document}
\maketitle
\tableofcontents
\section*{Acknowledgements}
I would like to thank my research advisor.

And some other people. 

This always ends up AFTER the page break, alas.
\newpage
\section*{Abstract}
Most of the abstract.

One more thing that also appears after a pagebreak.
\newpage
\section{First section}
\end{document}

相关内容