文档类
我使用以下文档类:sig-alternate.cls
文档类别可以在以下位置找到:http://www.acm.org/sigs/publications/proceedings-templates
问题:
我有以下代码:
\conferenceinfo{Text 1 here}{Text 2 here}
我希望输出是:
Text 1 here
Text 2 here
现在,两个文本句子彼此对齐。
我曾尝试查看双 \ 以及 \newline,但目前尚未成功。
答案1
您需要插入段落分隔符,但通常的\par
命令在这里不起作用。相反,您需要使用\endgraf
:
\documentclass{sig-alternate}
\begin{document}
\conferenceinfo{Text 1 here}{\endgraf Text 2 here.\endgraf More.}
\title{My title}
\author{Me}
\maketitle
\end{document}
该\conferenceinfo
宏的定义方式不允许在其参数中出现段落中断;\endgraf
在这种情况下可以使用替换命令(纯 TeX 的遗留)。
答案2
这似乎完美无缺:
\documentclass{sig-alternate}
\usepackage{lipsum} % just for the example
\begin{document}
\conferenceinfo{Text 1 here}{\\ Text 2 here.}
\title{My title}
\author{Me}
\maketitle
\section{A}
\lipsum[1-20]
\end{document}
放大视图