Wie tippt man doppeltes \\?

Wie tippt man doppeltes \\?

Ich versuche Folgendes einzugeben:

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

alles in einer Zeile. Das Problem ist, dass dadurch \\zwischen jedem Wort eine Zeile übersprungen wird.

Antwort1

Du kannst den ... benutzenurlPaket hierfür:

\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}

Ausgabe:

Bildbeschreibung hier eingeben

verwandte Informationen