BibTex 中的“%”符号 - Latex

BibTex 中的“%”符号 - Latex

我想使用 BibTex 引用包含 % 符号的 url。

如果我只写 %,则该行的其余部分将成为注释。如果我写 \%,则斜线也会出现。

    @MISC{ref,
      title="title",
      note="\url{http://www.abc.com/a%20b\%20c}"
    }

帮忙?有没有“%”的宏?

答案1

你为什么不创建任何最小示例?下面的示例运行良好

\RequirePackage{filecontents}
\begin{filecontents}{\jobname.bib}
@MISC{ref,
      title="title",
      note="\url{http://www.abc.com/a%20b\%20c}"
    }
\end{filecontents}
\documentclass{article}
\usepackage{url}

\begin{document}
\cite{ref}
\bibliography{\jobname}
\bibliographystyle{plain}
\end{document}

答案2

“%20” 是空格字符。您可以直接使用\url{http://www.abc.com/a b c,这样当用户点击 URL 时,他们将被带到a%20b%20c

答案3

你有没有尝试过http://www.abc.com/a\%20b\%20c?

相关内容