I have been using Overleaf for all latex documents and I want to compile them using Travis. I'm getting stuck at the biblatex.sty file and despite downloading one from https://ctan.org/tex-archive/macros/latex/contrib/biblatex?lang=en it shows the following error:
! Missing \endcsname inserted. <to be read again> \blx@datamodel@constant@optiondatatypes l.6741 ...odel@constant@optiondatatypes\endcsname}?
If I don't use an external .bib file and add citations using \begin{thebibliography}...\end{bibliography}, the Travis compilation does not show any error. The .bib file on Overleaf also compiles properly so I don't know what I'm missing here. I have tried commenting this line out and I have also tried to remove the \endcsname part of the code but it's still showing errors.
.styfiles from CTAN. It would be better to install packages via your TeX distribution (tlmgr). But it is almost impossible to investigate this any further without an example document that reproduces the issue (with as little code as possible) and the complete.logfile of the failing run. – moewe Jun 11 '21 at 08:53biblatexand Biber are installed already. For most documents things will just work. Overleaf update their system only once a year, so it is possible that Overleaf is behind the state of the art a bit. Usually this is no problem, but if you need brand new features, you will have to wait. ... – moewe Jun 12 '21 at 10:05biblatexand friends there. If you installed a vanilla TeX live (https://tex.stackexchange.com/q/1092/35864), you would usetlmgr install biblatex biberandtlmgr update --self --all. If you installed TeX live via apt-get you might be stuck with an ancient version of TeX Live. – moewe Jun 12 '21 at 10:07biblatex.styfrom CTAN and dropping it in your project/document directory will most likely lead to problems (possibly errors), because you need a matching Biber version (and matching versions of other dependencies as well). If you want more specific advice you need to tell us more about your document (a short example document that reproduces the issue) and you need to tell us more about your TeX system setup and how you compile your document. – moewe Jun 12 '21 at 10:08