[Tex/LaTex] How to cite one bibentry in full length in the body text

bibliographiesciting

I am using the natbib package.

Now I want to have a bibliography entry cited in full length in the text. That should also appear in the bibliography are. For example

Text text…

Mr. ABCD (2012) HELLO WORL, This is a cite in Page…

text text…

…..bib area…
Mr. bbb sss ..
Mr. ABCD (2012) HELLO WORL, This
is a cite in Page…

Best Answer

Use the \bibentry command from the bibentry package:

\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"
}
\end{filecontents}
\documentclass{article}
\usepackage{filecontents}
\usepackage{natbib}
\usepackage{bibentry}
\nobibliography*

\begin{document}

A full in-text cite of \bibentry{goossens93}.

A regular citation of \cite{goossens93}.

\bibliographystyle{plainnat}
\bibliography{mytestbib}

\end{document}

enter image description here