I'm trying to get a full citation inside my text using the \bibentry command.
But it doesn't show anything.
MWE:
\documentclass[draft=false
,paper=a4
,twoside=false
,fontsize=11pt
,headsepline
,BCOR10mm
,DIV11
]{scrbook}
\usepackage[ngerman,english]{babel}
\usepackage{iftex}
\ifPDFTeX
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\else
\ifXeTeX
\usepackage{xltxtra}
\else
\usepackage{luatextra}
\fi
\defaultfontfeatures{Ligatures=TeX}
\fi
\usepackage{bibentry}
\usepackage{natbib}
\usepackage[german,refpage]{nomencl}
\bibliographystyle{dinat}
\usepackage{filecontents}
\begin{document}
\selectlanguage{ngerman}
\begin{filecontents*}{\jobname.bib}
@book{rice1999optical,
title={Optical Character Recognition: An Illustrated Guide to the Frontier},
author={Rice, S.V. and Nagy, G. and Nartker, T.A.},
isbn={9780792384922},
lccn={99020879},
series={The Springer International Series in Engineering and Computer Science},
url={http://books.google.de/books?id=u5ofWoiONPAC},
year={1999},
publisher={Springer US}}
\end{filecontents*}
\bibliography{\jobname}
Here i need a full Cite:
\\
\bibentry{rice1999optical}
\end{document}
What am I doing wrong?
EDIT: I'm not sure if the problem is the same if the document has not the same scope but here's an MWE. Go crystal balls go.
Hope the MWE clarifies it! Thanks again!
\documentclass{...}and ending with\end{document}. You might also want to add to your question how you're including the pdfs etc. – Aradnix Sep 27 '14 at 19:34\bibsstringcomes from? wherex1,x2,x3come from? what does the@articleentry have to do with the other snippets? Not all of use have functioning crystal balls. – jon Sep 27 '14 at 21:56\cite{rice1999optical}– Johannes_B Sep 28 '14 at 16:22biblatexandbiberfrom the beginning. – Johannes_B Sep 28 '14 at 16:25bibentrymanual:Thebibentrypackage will work with natbib with its native\bibitemformat, and with standard LaTeX. Nothing else can be guaranteed.That said, I can get bibentry output (with errors). I can post that as an 'answer' if you like. – jon Sep 28 '14 at 16:46\bibitemcommand, it gives me this error:Package natbib Error: Bibliography not campatible with author-year-citations.– Megalomaniac Sep 28 '14 at 16:55bibitem. It is saying that you need to use the standardnatbibstyles. You are usingdinnat, which raises an error. I'll post a (not-quite-)answer. – jon Sep 28 '14 at 17:53