文字没有完全对齐?字母之间有空格

文字没有完全对齐?字母之间有空格

我是 LaTeX 新手,我想重新创建一个看起来完全一样的 PDF 文件。现在我设法让所有方程式和所有内容都正确无误。但格式有点不对,在原始文档中,某些地方的字母之间有更多空格。

我已经阅读了这个论坛和其他论坛上的许多帖子、解释功能等的 PDF 文件,但找不到解决我的问题的方法,这就是我在这里发布我的问题的原因!

原始文件如下所示: 原来的

我的文件如下所示: 我的文档

第二个句子中显示出来,非常微妙,但当你将文档放在一起比较时却很明显。(我的文档打开了显示框,因为我认为我的边距偏离了,这就是黑条的原因)

整个文档中多处都出现这种情况,但我不知道原因。任何帮助都将不胜感激,因为我在过去两个小时里一直在尝试修复它,但没有成功。

配置代码:

\documentclass[a4paper, 12pt, a4wide]{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{amsmath, amsthm, amssymb}
\newtheorem{theorem}{Theorem}
\usepackage[english]{babel}
\usepackage[a4paper,includeheadfoot,margin=2.54cm]{geometry}
\usepackage{showframe}

编辑:抱歉违反了规则,我删除了我的帖子并编辑了第一篇帖子。

以下是文本中存在错误的部分代码:

\begin{document}
\section{The Koch Snowflake}
The \emph{Koch snowflake}, one of the first fractals, is based on work by the Swedish mathe\-matician Helge von Koch~\cite{koch}. It is what we get if we start with an equilateral triangle 
\begin{figure}[h] \label{koch}
  \centering
  \includegraphics[width=10cm]{snowflake.jpg}
  \caption{The initial equilateral triangle and the refinement of the Koch snowflake after one, two, and three iterations.}
\end{figure} \\
and repeat the following an infinite number of times:
\begin{quote}
 \textit{Divide all the line segments into three segments of equal length. Then draw, for each middle line segment, an equilateral triangle that has the middle segment as its base and points outward. Finally, remove all middle segments.}
\end{quote}
Figure~\ref{koch} shows the first iterations in the construction.
%

答案1

找到导致您问题的例子相当容易。例如,在以下文本前有一个额外的空行:

\documentclass[a4paper, 12pt, a4wide]{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{amsmath, amsthm, amssymb}
\newtheorem{theorem}{Theorem}
\usepackage[english]{babel}
\usepackage[a4paper,includeheadfoot,margin=2.54cm]{geometry}
\usepackage{showframe}
\parindent=0pt
\begin{document}

The \emph{Koch Snowflake}, one of the first fractals, is based on the work of the Swedish mathe\-matician Helge von Koch [1]. It is what we get if we start with an equilateral triangle
\rule{3cm}{3cm}

The \emph{Koch Snowflake}, one of the first fractals, is based on the work of the Swedish mathe\-matician Helge von Koch [1]. It is what we get if we start with an equilateral triangle

\rule{3cm}{3cm}  
\end{document}

在此处输入图片描述

不同的情况\parfillskip也可能是原因之一。但是如果没有更多的背景和代码,我们只能猜测。

相关内容