¿Cómo escribir texto dentro de \begin{verbatim} y \end{verbatim} en la misma línea?

¿Cómo escribir texto dentro de \begin{verbatim} y \end{verbatim} en la misma línea?

Estoy atascado en el siguiente problema y no sé cómo solucionarlo. Aquí está mi problema:

\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}

Produce:

ingrese la descripción de la imagen aquí
Pero me gustaría producir:
ingrese la descripción de la imagen aquí

El texto dentro de \begin{verbatim}y \end{verbatim}crea una nueva línea y toma una línea completa para este texto solo dentro de él. Esto se ve feo. Quiero obtenerlo con el otro texto. ¿Cómo puedo hacer esto?

Respuesta1

El uso en línea (o abreviado) del verbatimentorno es \verb<char><stuff><char>cuando usted especifica <char>algo distinto a *. Elige un personaje que no aparezca dentro de <stuff>. En su caso, usaría:

ingrese la descripción de la imagen aquí

\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}

La *variante -también \verb*imprime los espacios.

información relacionada