二重の \\ を入力するにはどうすればいいですか?

二重の \\ を入力するにはどうすればいいですか?

入力しようとしています:

C:\\Users\\Reymi\\Downloads\\imagen.png 

すべて 1 行に。問題は、\\これにより各単語の間に 1 行がスキップされることです。

答え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}

出力:

ここに画像の説明を入力してください

関連情報