LaTex 文章标题中手动换行后如何添加换行符?

LaTex 文章标题中手动换行后如何添加换行符?

我想要一种通用的方法,在title而不使用第三方软件包中的错误。我知道这个帖子如何在缅因大学包的自定义标题中手动换行?这只是关于一个大学包。线程中讨论的方法在这里不起作用:\protect\\\parbox以及其他尝试:\vspace{},... 图 1 中的代码及其输出

\documentclass{article}
\usepackage[utf8]{inputenc}

\begin{document}
\title{Using ionizing potatoes and effects on hippocambuctemia and
horshoes in happiem mode locations\\ 
\large RESEARCH PAPER}

\maketitle
\end{document}

图 1 输出

在此处输入图片描述

预期输出:普通文本和大写文本之间的换行符
换行符开始:就在之前\large,或任何合适的标点符号

答案1

你可以做

\documentclass{article}

\begin{document}

\title{Using ionizing potatoes and effects on hippocambuctemia and
  horshoes in happiem mode locations\\
  {\large RESEARCH PAPER}}

\maketitle

\end{document}

或者,使用\\[2ex](或您喜欢的任何间距)。

当然,您在代码中看到的间距是可以解释的。

标题设置了\LARGE大小,这意味着,article在 10pt 处,字体大小为 17pt(实际上是 17.28pt),基线跳过 22pt;另一方面,\large在 14pt 处有 12pt 大小。

\\中断结束了一个段落,因为标题是在 的范围内处理的\centering,因此是在 22pt 基线跳过上排版的;第二部分再次使一个段落(\par末尾有一个隐式)在 14pt 基线跳过上排版。

戴上牙套后{\large RESEARCH PAPER}\large隐式\par执行,因此baselineskip将再次为22pt。

在此处输入图片描述

然而,诸如

\documentclass{article}

\begin{document}

\title{Using ionizing potatoes and effects on hippocambuctemia and
  horshoes in happiem mode locations\\[2ex]
  \large RESEARCH PAPER\\WHATEVER}

\maketitle

\end{document}

如果您需要两行\large并且它们之间的间隔不要太大,那么这是必要的。

在此处输入图片描述

随意选择。

相关内容