如何在同一行中的 \begin{verbatim} 和 \end{verbatim} 中写入文本?

如何在同一行中的 \begin{verbatim} 和 \end{verbatim} 中写入文本?

我被以下问题困扰,不知道如何解决。这是我的问题:

\documentclass{article}
\begin{document}

 \begin{verbatim}'\hfill\end{verbatim} MKS' which puts the word 'MKS' at the far right of the page where as  \begin{verbatim}'\noindent \end{verbatim}MKS' which
 puts  'MKS ' at the far left  of  the page in the same line.

\end{document}

生产:

在此处输入图片描述
但我想制作:
在此处输入图片描述

\begin{verbatim}和中的文本\end{verbatim}会另起一行,并且只为 和 中的文本占用一整行。这看起来很丑。我想将其与其他文本一起获取。我该怎么做?

答案1

环境的内联(或简写)用法verbatim\verb<char><stuff><char>您指定<char>除 之外的任何内容*。选择一个未在 中出现的字符<stuff>。在您的实例中,您将使用:

在此处输入图片描述

\documentclass{article}
\begin{document}
\verb|'\hfill| MKS' which puts the word `MKS' at the far right of the page where as 
\verb|'\noindent| MKS' which puts `MKS' at the far left of the page in the same line.
\end{document}

-variant也*打印\verb*空格。

相关内容