In few of my citations I have a % sign in the url, which gives a problem when I use the bibentry environment (Paragraph ended before \BR@c@bibitem was complete). How can I deal with the % sign? Without the reference containing the % in the url everything works fine. Also without using the bibentry the % gives no problem. the % sign gives also no problem using a different bibliography stile as unsrt, which is not using the url information (which I don't want to do). (The bibliography style statto can be found here, same problem occurs using plainnat). Not using \begin{NoHyper}\bibentry{goossens93}\end{NoHyper} would be preferred to hyperlink the reference to the website, but I don't know if this would be possible at all.
\begin{filecontents}{mytestbib.bib}
@book{goossens93,
author = "Frank Mittelbach and Michel Goossens and Johannes Braams and David Carlisle and Chris Rowley",
title = "The {LaTeX} Companion",
year = "1993",
publisher = "Addison-Wesley",
address = "Reading, Massachusetts"
}
@BOOK{Kymissis__2009,
title = {Organic Field Effect Transistors - Theory, Fabrication and Characterization},
publisher = {Springer},
year = {2009},
author = {Kymissis, Ioannis},
abstract = {Organic Field Effect Transistors discusses the fundamental mechanisms
that apply to {OFETs} fabrication, operation, and characterization.
This unique book presents the state-of-the-art in organic field effect
transistors ({OFETs)} with ...},
isbn = {9780387921341},
keywords = {Circuits and Systems, Fabrication and Characterization, Organic Chemistry,
Organic Field Effect Transistors - Theory, Technology \& Engineering
/ Engineering (General)},
language = {English},
shorttitle = {Organic Field Effect Transistors},
timestamp = {2013.10.07},
url = {http://www.springer.com/engineering/circuits+%26+systems/book/978-0-387-92133-4}
}
\end{filecontents}
\documentclass{article}
\usepackage[pdftex]{hyperref}
\usepackage{filecontents}
\usepackage{natbib}
\usepackage{bibentry}
\nobibliography*
\begin{document}
A full in-text cite of
\begin{NoHyper}\bibentry{goossens93}\end{NoHyper}.
A regular citation of \cite{goossens93}.
Problematic cite \cite{Kymissis__2009}
\bibliographystyle{statto}
\bibliography{mytestbib}
\end{document}
