我正在写一篇论文,其中引用了电子邮件标题中一个名为“已接收”字段的字段,“已接收”字段通常如下所示:
Received: from [email protected] (mail.example.com [127.0.0.1])
by [email protected] with SMTP id 77778888FFFF
for <[email protected]>; Thu, 22 Sep 2011 08:44:42 -0500 (CDT)
我想将其放在 LaTeX 中,放在引号内以强调它,但是为了正确对齐,我必须在每行后创建新行:
\begin{quote}
Received: from [email protected] (mail.example.com [127.0.0.1]) \\
by [email protected] with SMTP id 77778888FFFF \\
for $<[email protected]$>$; Thu, 22 Sep 2011 08:44:42 -0500 (CDT)
\end{quote}
我想知道的是,如何才能使第二行和第三行的缩进比第一行多一级?我会尝试悬挂缩进,但由于新行,所有三行都被视为单独的段落,所以它不起作用。有没有办法让我在第一行的缩进级别与其他行不同?
答案1
您可以使用verbatim
环境。这样做的好处是您不必转义<
、>
等,也无需手动插入换行符。
\documentclass{article}
\begin{document}
\begin{verbatim}
Received: from [email protected] (mail.example.com [127.0.0.1])
by [email protected] with SMTP id 77778888FFFF
for <[email protected]>; Thu, 22 Sep 2011 08:44:42 -0500 (CDT)
\end{verbatim}
\end{document}