我正在尝试使用 ACM 模板将上标添加到我的论文标题中。我遇到一个问题,当我尝试将文本设置为上标时,它最终会变成小字体,不会与标题一起缩放,并且位于行的中心。
这是一个有效的例子:
\documentclass{acm_proc_article-sp}
\usepackage{caption}
\usepackage{comment}
\usepackage{float}
\begin{document}
\title{DT\textsuperscript{2}CE}
\maketitle
\end{document}
不确定如何纠正这个问题。我试过使用,\raise0.5ex\hbox{2}
但无法将文本缩放到合适的大小。
答案1
为了排版标题,该类acm_proc_article-sp
使用了\ttlfnt
有问题的旧命令来定义\newfont
(事实上,它也对其他元素使用这个旧命令!):
\newfont{\ttlfnt}{phvb8t at 18pt}
给出一个合理的替代定义,例如
\renewcommand\ttlfnt{\fontfamily{phv}\fontseries{b}\fontsize{18}{22}\selectfont}
完整示例:
\documentclass{acm_proc_article-sp}
\renewcommand\ttlfnt{\fontfamily{phv}\fontseries{b}\fontsize{18}{22}\selectfont}
\begin{document}
\title{DT{\fontsize{17.28}{20}\selectfont\textsuperscript{2}}CE}
\author{Author}
\maketitle
\end{document}