\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

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*공백도 인쇄합니다.

관련 정보