28

I have installed TexLive on Ubuntu 13.04 following the instructions provided in http://www.tug.org/texlive/acquire.html

but I always get some missing .sty error (for instance siunitx.sty). I struggled a lot to make it run. double checked the PATH, etc. but could not figure out the problem. do you know what the problem can be?

Best Mehdi

M.X
  • 383

1 Answers1

51

The siunitx.sty file appears to be part of package texlive-science

$ apt-cache show texlive-science | grep siunitx
  siunitx -- A comprehensive (SI) units package.

You should be able to install it from your package manager of choice, or via the command line using

$ sudo apt-get install texlive-science
steeldriver
  • 142,475