由于章节标题,文本以双列格式流出

由于章节标题,文本以双列格式流出

这是代码:

\documentclass[sttt]{svjour}

\usepackage{graphics}

\begin{document}
%
\title{Title}

\author{Author}
%
%
\institute{Institute}
%
\date{Received: date / Revised version: date}

\maketitle
%
\begin{abstract}
Channels used for communication in distributed systems Channels used for communication in distributed systems 
Channels used for communication in distributed systems 
Channels used for communication in distributed systems 
Channels used for communication in distributed systems 
Channels used for communication in distributed systems 

\end{abstract}
%
\section{Introduction}
\label{intro}
Your text comes here. Separate text sections with
\section{Section title}
\label{sec:1}

\end{document}

这是输出:

在此处输入图片描述

如何解决这个问题?

答案1

TeX 的段落设置器很好,但并不神奇;它在这里产生的是设置您指定的特定人工段落的最不坏的方法。通过文档类文件中设置的参数,段落设置器决定让“distributed”突出到边距中比其他选项更不坏。

如果您用真实的摘要段落替换虚拟文本,您可能会发现问题消失了,因为段落设置器更擅长处理真实文本而不是没有句号的虚拟文本。

\tolerance但是,假设这仍然是您的真实文本的问题,除了按照评论中的建议改变值之外,还有几种策略可以尝试。

  1. 确保您设置了正确的语言和连字规则。

  2. 在您的序言中添加允许的连字符点列表:例如\hyphenation{dis-trib-uted}

  3. 在有问题的位置手动为有问题的单词添加可选连字符,例如dis\-tri\-buted

  4. 将有问题的段落切换为不规则的右侧格式 --- 这在文档中间看起来很奇怪,但在摘要中可能没问题。使用\raggedright或更好的方法是,加载ragged2e包并使用\RaggedRight

  5. 将有问题的段落改用较小的字体 --- 这可能在摘要中是可以的。尝试使用\small

  6. 重写文本以避免该问题。

相关内容