다음을 입력하려고 합니다.
C:\\Users\\Reymi\\Downloads\\imagen.png
모두 한 줄에. 문제는 이로 인해 \\
각 단어 사이에 줄을 건너뛴다는 것입니다.
답변1
당신은 사용할 수 있습니다url
이를 위한 패키지:
\documentclass{article}
\usepackage{url}
\DeclareUrlCommand\file{%
% Set monospace font
\def\UrlFont{\ttfamily}%
% Set characters to break after but not in between
\def\UrlBigBreaks{\do\:\do\\}
}
\begin{document}
\file|C:\\Users\\Reymi\\Downloads\\imagen.png|
Here's some long sentence that shows that the path \file|C:\\Users\\Reymi\\Downloads\\imagen.png| is also broken across lines.
\end{document}
산출: