after the encoding, citation call-outs do not appear as they should. They appears like this:
I doubt that there is any useful information here (Scha85), Scha85.
the bibliography does not appear as well.
here the code:
\documentclass[12pt,oneside]{report}
\usepackage[a4paper,tmargin=3cm,bmargin=3cm,rmargin=2.5cm,lmargin=2.5cm]{geometry}
\usepackage[american]{babel}
\usepackage{amsfonts,amssymb,amsmath,amsthm}
\usepackage{xcolor}
\usepackage{pifont}
\usepackage{marvosym}
\usepackage{fancybox,fancyhdr}
\usepackage{graphicx}
\usepackage{eso-pic}
\usepackage{yfonts}
\usepackage{pdfsync}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[dvips]{epsfig}
\usepackage{caption,subcaption}
\usepackage{csquotes}
\usepackage[backend=biber,style=apa]{biblatex}
\addbibresource{distib.bib}
%==================== Algorithm ===
\usepackage{algorithmicx}
\usepackage[ruled]{algorithm}
\usepackage{algpseudocode}
\usepackage{hyperref} % load this package last
\begin{document}
I doubt that there is any useful information here
Scha85.\parencite{Scha85}, \textcite{Scha85}.
\printbibliography
\end{document}
% here the is the bibliography. it is just a portion of 100 items of them
@book{Dori,
author={Dorigo, M. and Caro, G.D.},
title={The Ant Colony Optimization Meta-Heuristic},
year={1999},
editor={D. Corne, M. Dorigo, and F. Glover},
publisher={New Ideas in Optimiztion},
address={McGraw-Hill}}
@phdthesis{Horn97,
author={Horn, J.},
title={The Nature of Niching: Genetic Algorithms and the Evolution of Optimal, Cooperative Populations},
year={1997},
type={Doctoral dissertation},
school={University of Illinois, Illinois Genetic Algorithm Lab},
address={Urbana},
key={95001}}
@inproceedings{DAP,
author = {Kalyanmoy Deb and Samir Agrawal and Amrit Pratap and T. Meyarivan},
title = {A Fast Elitist Non-Dominated Sorting Genetic Algorithm for Multi-Objective Optimization: NSGA-II},
booktitle = {Parallel Problem Solving from Nature VI Conference},
year = {2000},
pages = {849-858}}
@techreport{glass2012,
author={UN-Water GLASS},
title={The Challenge of Extending and Sustaining Services},
year={2012},
institution={World Health Organization}}
pdflatex mwe.tex,biber mwe,pdflatex mwe.textwice? Make sure you calledbiberand notbibtex! – Mensch Feb 13 '20 at 13:55\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem. – adn Feb 13 '20 at 14:12bibertag. – Mico Feb 13 '20 at 14:16.blgfile (on Windows machines the.blgfile may be classed as a 'performance monitor file', it is not, it is a normal text file you can open with your editor). – moewe Feb 13 '20 at 20:29.blgfile and post its full contents here. We can't investigate your code any further, because we don't know the contents of yourdistib.bib. – moewe Feb 13 '20 at 20:30.blgfile, you didn't run Biber. Do you compile your document from an editor or from the command line? Can you try to compile your document from the command line to exclude possible sources of error and interference? – moewe Feb 14 '20 at 06:53.bibfile does not contain the entryScha85from your document, so it doesn't really lend itself to testing. The only problem with your entries that I could spot iseditor={D. Corne, M. Dorigo, and F. Glover},: Regardless of the desired output, all names in a name field must be separated with anand, the style will take care of the output formatting, so it should beeditor={D. Corne and M. Dorigo and F. Glover},. In the example that was not a fatal error, but there are cases where similar problems can be fatal. – moewe Feb 14 '20 at 07:10.blgyou didn't run Biber. If you compile from the command line, you need to runpdflatex document,biber document,pdflatex document,pdflatex document(assuming your main.texfile isdocument.texand you compile withpdflatex, you can replace "pdflatex" with your favourite LaTeX compiler). If you are using an editor you need to configure it for Biber and then instruct it to run Biber. How you do that depends on the editor. Some run Biber automatically or semi-automatically, with others you need to explicitly call Biber by clicking some buttons – moewe Feb 14 '20 at 12:38