我想要一种通用的方法,在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
并且它们之间的间隔不要太大,那么这是必要的。
随意选择。