5

How do i insert a # in a bibtex entry.. seem to be impossible it does not recognize the \# or # as simple hashtag (#)..

@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"
}
Lamda
  • 165

2 Answers2

6

You can try to use url package and type

\url{\#}
4

Here's a minimal example:

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

As usual in examples, I use the filecontents* environment; natbib is just for convenience.

enter image description here

egreg
  • 1,121,712