在 pdf 文档中打印反斜杠

在 pdf 文档中打印反斜杠

我想D:\\hl_sv在 PDF 文档中打印以下路径,但遇到无法显示反斜杠的问题。如何转义它们以将其写入 PDF 文档中。

文本代码:

\documentclass[paper=a4, fontsize=11pt]{scrartcl}   % 
\usepackage[ngerman, english]{babel}
\usepackage[protrusion=true,expansion=true]{microtype}  

\renewcommand{\baselinestretch}{1.5}
\usepackage[backend=bibtex]{biblatex}

\addbibresource{references.bib}

\begin{document}

\begin{itemize}

\item[1.] Currently, the parser parses PDF files in this path \textbf{D:\\hl\_sv} which needs to be changed to the saved timetable files path.
\end{itemize}

\end{document}

答案1

带包装url

 [ ... ] this path \path{D:\\hl\_sv}

答案2

没有任何包,以防您在文档中多次写这些: D:\textbackslash\textbackslash hl\_sv其中\textbackslash用于\并且下划线用产生\_,这是因为下划线在 LaTeX 中通常代表下标。

这是上面列出的编辑的完整代码,我也编辑了您的列表,因为enumerate它自动编号:

\documentclass[paper=a4, fontsize=11pt]{scrartcl}   % 
\usepackage[ngerman, english]{babel}
\usepackage[protrusion=true,expansion=true]{microtype}  

\renewcommand{\baselinestretch}{1.5}
\usepackage[backend=bibtex]{biblatex}

\addbibresource{references.bib}

\begin{document}

\begin{enumerate}

\item Currently, the parser parses PDF files in this path \textbf{D:\textbackslash\textbackslash hl\_sv} which needs to be changed to the saved timetable files path. 
\end{enumerate}

\end{document}

enter image description here

相关内容