[Tex/LaTex] Download and installation of LaTex for Linux Ubuntu
installingUbuntu
I'm using Ubuntu and I want to download and install LaTeX, what should I choose and where can I find it?
Thanks.
Best Answer
The easiest way in ubuntu is to use the ubuntu package manager (from the desktop) and install the texlive package. As an editor you can choose whatever you want (texmaker, texstudio or any editor like gedit, vim and so on).
Alternatively, you can use the terminal to install the packages, using
sudo apt-get install texlive texstudio
Dependencies usually are matched automatically
edit: look for the ubuntu software-center to open the package manager GUI and search for the texlive and other packages.
If you want the latest texlive version, follow these instructions:
texlive quick install
If you wish to install TeXLive in /usr/local/texlive/2011 (which is the default location), then you need to do so as root. Either use sudo in front of your ./install-tl command, or switch to root account (sudo -i) and install it:
sudo ./install-tl
If you want to install TeXLive as a simple user (and not as root), you can do so by specifying another location for the installation:
A lot of frequently used *TeX packages have been combined into Ubuntu packages. In this case a quick search in the Ubuntu Package Manager shows that xlop is part of the texlive-generic-extra package, which you can install using apt-get install or the GUI as preferred.
Having said that, it's not particularly difficult to install *TeX packages manually once you've identified the right tree to put them in (CTAN has pre-zipped versions of a lot of packages, which makes it even easier - you just have to unzip them at the right place and run texhash), and you then have the advantage of being sure you're up-to-date. At the moment I believe the Ubuntu versions are lagging quite a way behind TeX Live releases (let alone any subsequent package updates).
Best Answer
The easiest way in ubuntu is to use the ubuntu package manager (from the desktop) and install the texlive package. As an editor you can choose whatever you want (texmaker, texstudio or any editor like gedit, vim and so on). Alternatively, you can use the terminal to install the packages, using
Dependencies usually are matched automatically
edit: look for the ubuntu software-center to open the package manager GUI and search for the texlive and other packages.
If you want the latest texlive version, follow these instructions: texlive quick install