\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 行を占有します。これは見苦しいです。他のテキストと一緒に取得したいのですが、どうすればよいですか?

答え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*スペースも出力します。

関連情報