I'm writing a project in LaTex, and when I'm inserting a reference, it will not work. The name I named in the bib-file only gets into the pdf in bold.
Here is my code:
\usepackage[backend=biber,style=authoryear,autocite=inline]{biblatex}
\usepackage[style=numeric,sorting=none]{biblatex}
\addbibresource{Bibliography.bib}
\usepackage[labelfont={bf, it}]{caption}
\captionsetup{font=footnotesize, textfont=it}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{float}
\usepackage[normalem]{ulem}
\useunder{\uline}{\ul}{}
\usepackage[T1]{fontenc}
\usepackage[table,xcdraw]{xcolor}
\usepackage{multicol}
\usepackage{adjustbox}
\usepackage{array}
\usepackage{wrapfig}
\usepackage{multirow}
\usepackage{tabu}
\usepackage{rotating}
\usepackage{amsmath}
%\usepackage[table,xcdraw]{xcolor}
\usepackage[a4paper, total={6in, 9in}]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead[L]{\fontsize{10}{12}}
\linespread{1.5}
\usepackage{times}
\usepackage[none]{hyphenat}
\sloppy
\usepackage{hyperref}
\usepackage[utf8]{inputenc}
And my bib-file looks like this:
@article{t,
title = {Technological Aspects of β-Carotene Production},
journal = {Food and Bioprocess Technology},
volume = {4},
number = {5},
pages = {693-701},
year = {2011},
issn = {19355149, 19355130},
author = {Ribeiro, Bernardo Dias and Barreto, Daniel Weingart and Coelho, Maria Alice Zarur}
}
And then the t will appear in the pdf in bold, when I use ~autocite{t}. Furthermore in my main I entered: \printbibliography[title={Bibliography}]

biber name-of-you-tex-file. But there's probably a simpler way from your editor (the details depend on the editor). The normal cycle is(pdf)latex -> biber -> pdflatex (twice). – Bernard Jun 19 '19 at 09:03biblatextwice with conflicting options. This should produce an error. You should load the package only once. More generally, the preamble loads a lot of packages. Do you need all of them? Do you know why you load each package? I also find the loading order of some of the packages a bit unusual, but you should probably be fine as long ashyperrefis loaded last (as it is at the moment). – moewe Jun 19 '19 at 15:56