我正在使用 Betterposter (https://github.com/rafaelbailo/betterposter-latex-template) 类的海报,但我的问题是因为我的标题真的很长。
我想知道如何在文本行之间留出一些空间,以便输出看起来不会混乱。
这是 .cls 文件中的标题命令
%% Title command
\renewcommand{\title}[1]{
{\fontsizetitle\textbf{\leavevmode
#1
}}\\
}
\fontsizetitle
是
\renewcommand{\fontsizetitle}{\fontsize{56.57}{70.71} \selectfont}
我的头衔是
\title{May God's Grace Guide My Vote: How Subliminal Primes of Place Influence Voter Decision Making}
如何增加标题行的行间距(即使很小)?我不需要文本的双倍行距,只需要在行间增加几个点。
谢谢你!
答案1
一种可能的方法是使用可选的垂直空间参数添加手动换行符,\\[space]
例如\\[10mm]
您没有指定海报的大小,但使用 A0(默认值),我必须将字体大小设置为 72pt 才能将最后两个单词放在一行上(决策)。
梅威瑟:
%%%% Better Poster latex template example v1.0 (2019/04/04)
%%%% GNU General Public License v3.0
%%%% Rafael Bailo
%%%% https://github.com/rafaelbailo/betterposter-latex-template
%%%%
%%%% Original design from Mike Morrison
%%%% https://twitter.com/mikemorrison
\documentclass[a0paper,fleqn]{betterposter}
\begin{document}
\betterposter{
%%%%%%%% CENTER COLUMN
\maincolumn{
\textbf{Main finding} goes here,
}{
}
}{
%%%%%%%% LEFT COLUMN
\renewcommand{\fontsizetitle}{\fontsize{72}{90} \selectfont}
\title{May God's Grace\\[10mm] Guide My Vote:\\[10mm] How Subliminal\\[10mm] Primes of Place\\[10mm] Influence Voter\\[10mm] Decision Making}
\author{Mike Morrison}
\author{Rafael Bailo}
\institution{Optional Institution Under Name}
}{
%%%%%%%% RIGHT COLUMN
}
\end{document}
结果:
请注意,由于手动换行,标题不对齐。如果您想要这样做,那么您可以在标题中放置一个 minipage(默认情况下是对齐的),并使用命令的第二个参数自动设置行距\fontsize
。预计在没有 minipage 的情况下也可以做到这一点,但由于某种原因,在不使用 minipage 的情况下使用此命令时行距不会改变。此解决方案要求您手动设置标题的宽度,这里我使用了0.8\leftbarwidth
,其中\leftbarwidth
由类定义为0.2\paperwidth
,0.8 调整边距。
梅威瑟:
%%%% Better Poster latex template example v1.0 (2019/04/04)
%%%% GNU General Public License v3.0
%%%% Rafael Bailo
%%%% https://github.com/rafaelbailo/betterposter-latex-template
%%%%
%%%% Original design from Mike Morrison
%%%% https://twitter.com/mikemorrison
\documentclass[a0paper,fleqn]{betterposter}
\begin{document}
\betterposter{
%%%%%%%% CENTER COLUMN
\maincolumn{
\textbf{Main finding} goes here,
}{
}
}{
%%%%%%%% LEFT COLUMN
\title{\begin{minipage}{0.8\leftbarwidth}%
\fontsize{72}{90} \selectfont%
May God's Grace Guide My Vote: How Subliminal Primes of Place Influence Voter Decision Making%
\end{minipage}}
\author{Mike Morrison}
\author{Rafael Bailo}
\institution{Optional Institution Under Name}
}{
%%%%%%%% RIGHT COLUMN
}
\end{document}
结果: