Hi guys i am using a template for my bachelor thesis from a university in germany. I am using Texlive for the packages and Texmaker. In texmaker i configured the Bibtex compiler to biber % I am also using Jabref.
Ill post the relevant code for the bibliography and citation:
\addbibresource{litaratur_BA.bib}
\begin{document}
\input{misc/setup.tex}
\newgeometry{ inner=2cm, outer=2cm, marginparwidth=0cm, marginparsep=0mm, bindingoffset=.5cm, top=1.5cm, bottom=2.5cm, includehead, includefoot }
\addchap{Literaturverzeichnis}
\setlength\columnsep{2em}
\begin{multicols}{2} \begin{refcontext}[sorting=nyt] \renewcommand*{\bibfont}{\small\RaggedRight} \linespread{1.0}\selectfont \printbibliography[heading=none] \end{refcontext} \end{multicols}
\end{document}
In my Setup.tex i have the following code related to my bibliography:
\usepackage[ backend=biber, style=alphabetic, doi=false,isbn=false, terseinits=true, giveninits=true, sortcites=true, language=english, backref=true, ]{biblatex} \AtEveryBibitem{% \clearlist{language} \clearlist{extra} }
\DefineBibliographyStrings{english}{% backrefpage = {page}, backrefpages = {pages}, }
After i used the command \cite{citation key} or even \citep{citation key} (i am inserting the correct citation key) i first compile with lualatex and then twice with Bibtex and afterwards again with lualatex. In my pdf i cant see the citation and i cant see the bibliogrpahy. Only the citation and the bibliogrpahy doesnt work.
My main file in which everything is being loaded is called main. When i compile with bibtex i get the message "Error : could not start the command : biber "main"
Can someone pls help^^
tlmgror one of its GUI frontends to install Biber. Note that even if Biber is installed, it may not be found, if the TeX Live binary directory is not added to the system path. Editors usually don't care about this, but if you run from the command line that is relevant. – moewe Apr 16 '23 at 07:32