When I compile my document using latexmk main.tex I get the following
warning
Package biblatex Warning: 'firstinits' option is deprecated, use 'giveninits' instead.
How do I get rid of this? I've installed and updated all packages in TeX Live 2015 using this guide.
main.tex
\documentclass[a4paper, hidelinks]{article}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage{listings}
\usepackage{csquotes}
\usepackage[numbered, atend]{bookmark}
\usepackage[
backend=biber,
style=ieee,
urldate=iso8601,
sorting=nty
]{biblatex}
\addbibresource{main.bib}
\begin{document}
\printbibliography{}
\end{document}
firstinitsoption in your preamble, or does it come with a package? – Bernard May 02 '16 at 18:52firstinitsoption, I think it come with a package – Oskar Persson May 02 '16 at 18:53biblatex? – Bernard May 02 '16 at 18:56biber– Oskar Persson May 02 '16 at 19:02biberis not a package. – cfr May 02 '16 at 19:03biblatex? – Bernard May 02 '16 at 19:09biblatex-ieeehas not yet been updated. You could report the issue to the package author. But basically, the best thing is to do is to report it and then wait for it to be updated. It is only a warning, after all. – cfr May 02 '16 at 19:18biblatex-ieeeversion on CTAN dates from 2016-04-16 and usesgiveninitsand not the deprecatedfirstinits. According to this site TeX live 2015 was frozen on or around 2016-04-04 which means that this updated is not included there. You can just ignore the warning (it's a warning after all) and wait for TeX live 2016 where the updated version will be included, or you can update the package manually if you absolutely must. – moewe May 03 '16 at 06:41