How can I install citeref via tlmgr from TexLive 2012 in Ubuntu 12.10?
Why was citeref.sty dropped in Texlive 2012?
Asked
Active
Viewed 1,157 times
9
Andrew Uzzell
- 1,155
retroedge
- 93
2 Answers
10
citeref.sty is available on CTAN as <CTAN>/macros/latex/contrib/citeref/citeref.sty; it's not on TeX Live because the file shows no licensing notice whatsoever, so a non free license must be assumed in order to comply with the guidelines on free software.
You can't use tlmgr for installing it; however it's easy to install it manually with the following shell commands
wget http://mirrors.ctan.org/macros/latex/contrib/citeref/citeref.sty
sudo mkdir -p /usr/local/texlive/texmf-local/tex/latex/citeref
sudo cp citeref.sty /usr/local/texlive/texmf-local/tex/latex/citeref
sudo mktexlsr
The first command can also be
curl -O http://mirrors.ctan.org/macros/latex/contrib/citeref/citeref.sty
egreg
- 1,121,712
-
I installed TexLive 2012 on Ubuntu 12.04 via the backports PPA and followed all your commands but it still won't find
citeref.stywhen I compile the document. Any thoughts? – ThomasH Apr 09 '13 at 11:38 -
0
Current path for manually installed packages is /usr/local/share/texmf/, so based on egreg's post, proper commands are:
wget http://mirrors.ctan.org/macros/latex/contrib/citeref/citeref.sty
sudo mkdir -p /usr/local/share/texmf/tex/latex/citeref
sudo cp citeref.sty /usr/local/share/texmf/tex/latex/citeref
sudo mktexlsr
-
Welcome to TeX.SE. What's the basis for your claim that the "[c]urrent path for manually installed packages is
/usr/local/share/texmf/? Which TeX distribution do you have in mind? For sure, on a MacOS system with MacTeX installed, the directory/usr/local/share/texmf/is not defined by default. I'm curious why you don't mention either/usr/local/texlive/texmf-localor~/texmf. – Mico May 09 '17 at 11:24
citerefis now available under a BSD license. – 0 _ Apr 09 '18 at 02:54