私は次の問題に行き詰まっており、解決方法がわかりません。これが私の問題です:
\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*
スペースも出力します。