如何在 traditionalTeX 中使用引号或引文

如何在 traditionalTeX 中使用引号或引文

我正在尝试在传统 TeX 中使用 \begin{quote},想知道它是如何工作的。我找不到答案。欢迎提出任何建议。

答案1

\def\Quote{%
  \par
  \begingroup
  \parindent=0pt
  \rightskip=2.2cm
  \leftskip=2.2cm
}
\def\endQuote{\par\endgroup}

I am trying to use quote in traditional \TeX\ and was wondering how this works. I 
have not been able to find an answer to it. Any suggestions are very welcome. 

\Quote
I am trying to use quote in traditional \TeX\ and was wondering how this works. I 
have not been able to find an answer to it. Any suggestions are very welcome. 
I am trying to use quote in traditional \TeX\ and was wondering how this works. I 
have not been able to find an answer to it. Any suggestions are very welcome. 
\endQuote

I am trying to use quote in traditional \TeX\ and was wondering how this works. I 
have not been able to find an answer to it. Any suggestions are very welcome. 
\bye

在此处输入图片描述

答案2

\begin{quote}是 LaTeX 环境,而不是 Plain TeX 宏。您可以\narrower在 Plain TeX 中使用该宏:

According to {\it The \TeX book}, p.~100 you can use the {\tt narrower} macro
and the {\tt smallskip} macro to create a block quotation. Something like
this:

{\narrower\smallskip\noindent
  This paragraph will have narrower lines than the surrounding paragraphs do,
  because it uses the ``narrower'' feature of plain \TeX. The former margins
will be restored after this group ends.\smallskip}

\bye

在此处输入图片描述

相关内容