我被以下问题困扰,不知道如何解决。这是我的问题:
\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*
空格。