I am on Ubuntu using TexLive and I cannot compile this .tex file:
\documentclass[
letter,
12pt %% set default font size to 12 point
]{scrartcl} %% article, see KOMA documentation (scrguide.dvi)
%just have this
%\usepackage{ucs} breaks biblatex?
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[american]{babel}
\usepackage[autostyle]{csquotes}
\usepackage[
backend=biber,
style=authoryear-icomp,
sortlocale=de_DE,
natbib=true,
url=false,
doi=true,
eprint=false
]{biblatex}
\addbibresource{references-biblatex.bib}
\usepackage[hidelinks]{hyperref}
\hypersetup{
colorlinks=false,
}
\usepackage{amsmath,amssymb,amstext}
\usepackage{graphicx}
\usepackage{siunitx}
%\usepackage{expl3} % i thought i might have to include it
\usepackage[version=4]{mhchem} %chemical notation
\title{Not very minimal Example}
\author{Test Name}
\date{}
\begin{document}
\maketitle
\tableofcontents
Test
\printbibliography
\end{document}
I when remove the mhchem package it works, but I need it for my lab report.
With the mhchem package I get following message:
/texmf/tex/latex/l3kernel/l3str.sty
*****************************************************************
**
** Package l3str is obsolete and has been removed!
**
** Its functionality is now only provided as part of in the expl3 package
**
** After showing you an error message you can hit <return> we will continue
** for now by loading expl3 for you. However, at some point in the future
** the old packages will be removed.
**
** Therefore, please replace '\usepackage{l3str}'
** with '\usepackage{expl3}' in your documents as soon as possible.
**
*******************************************************************
! Package l3str Error: This package is obsolete --- use 'expl3' instead.
See the l3str package documentation for explanation.
Type H <return> for immediate help.
...
l.72 use 'expl3' instead}
It don't really know how to fix that. I tried following things:
- remove/install l3kernel
- compile it on a Windows machine with TeXStudio (works there!)
- googling arround, not understanding what could be the problem
The fact that it works on Windows should tell me that my latex installation is somehow not setup correctly and I might have to install some other packege? (via tlmgr)
I hope somebody can help me, I like latex a lot but it's very intimidating at first. :)
tlmgrto update (sudo tlmgr update --all). – Nicola Talbot Jan 24 '16 at 19:24sudo tlmgr update --allsays there are no updates available – Domsl Jan 24 '16 at 19:37