如何在双 {} 之间分隔段落

如何在双 {} 之间分隔段落

文档类

我使用以下文档类: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}

在此处输入图片描述

放大视图

在此处输入图片描述

相关内容