Currently, I am writing thesis using latex. But, I encounter some problem regarding biblatex. I would like to do citation and reference. I am trying to build up code as below with \bibliography. But, it doesn;t show anything. In the pdf foramt, it shows question mark like [?].
\documentclass{article}
\usepackage{natbib}
\bibliographystyle{plain}
\begin{document}
fddsd\cite{b2}\\
\citep{b2}
\bibliography{reference}
\end{document}
When I compile biblatex (F11), it seems that it doesn;t generate final reference file. It returns error message like this:
Process started
INFO - This is Biber 2.9 INFO - Logfile is 'bibibibi.blg' INFO - Reading
'bibibibi.bcf' WARN - No data sources defined!
Process exited normally
But, when I use the following code it works well.
\documentclass{article}
\usepackage[backend=biber,bibencoding=latin1,style=authoryear,citestyle=autho
ryear]{biblatex}
\addbibresource{reference.bib}
\begin{document}
fddsd.\parencite{w4}
\parencite{b2}
\cite{b1}
\printbibliography
\end{document}
But, I prefer to use \bibliography rather than\printbibliography , since former one is easy to control using \natbib. Also, I have university format with \bibliography. So, I want to use the first code.
Is there anyone who can tell me why the first code is not working in my desktop and how to fix?
Thank you so much in advance.
biber %you needbibtex %.aux– moewe Apr 03 '18 at 13:24