在 bibtex 条目中插入#?

在 bibtex 条目中插入#?

如何在 bibtex 条目中插入 #?似乎不可能无法将\#或识别#为简单的井号标签 (#)。

@ONLINE {DMA,
    title = "AR# 57550 - Example Designs - Designing with the AXI DMA core",
    month = "aug",
    year  = "2015",
    url   = "http://www.xilinx.com/support/answers/57550.html"
}

答案1

您可以尝试使用url包和类型

\url{\#}

答案2

这是一个简单的例子:

\begin{filecontents*}{\jobname.bib}
@ONLINE {DMA,
    title = "AR\# 57550 - Example Designs - Designing with the AXI DMA core",
    month = aug,
    year  = "2015",
    url   = "http://www.xilinx.com/support/answers/57550.html"
}
\end{filecontents*}

\documentclass{article}
\usepackage{natbib}
\bibliographystyle{plainnat}

\begin{document}

\cite{DMA}

\bibliography{\jobname}

\end{document}

与示例中通常的情况一样,我使用filecontents*环境;natbib只是为了方便。

在此处输入图片描述

相关内容