Estou preso no seguinte problema e não sei como resolvê-lo. Aqui está o meu 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}
Produz:
Mas eu gostaria de produzir:
O texto dentro \begin{verbatim}
e \end{verbatim}
faz uma nova linha e ocupa uma linha inteira para esse texto somente dentro dele. Isso parece feio. Quero obtê-lo com o outro texto. Como posso fazer isso?
Responder1
O uso in-line (ou abreviado) do verbatim
ambiente é \verb<char><stuff><char>
onde você especifica <char>
algo diferente de *
. Escolha um personagem que não ocorra dentro de <stuff>
. No seu caso, você usaria:
\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}
O *
-variant \verb*
também imprime os espaços.