다음 문제에 봉착했는데 해결 방법을 모르겠습니다. 내 문제는 다음과 같습니다.
\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*
공백도 인쇄합니다.