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:
Pero me gustaría producir:
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 verbatim
entorno 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:
\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.