How can I add a package, e.g., program into Texmaker in Ubuntu?
I tried to include it as follows but it didn't work:
\usepackage{program}
How can I add a package, e.g., program into Texmaker in Ubuntu?
I tried to include it as follows but it didn't work:
\usepackage{program}
Assuming you haven't done it, the command sudo apt-get install texlive-full in terminal gives you all the packages in the Ubuntu repositories, which should give you the package you seek.
It is a pretty large chunk of files, so be sure to have enough space. The drawback with this method is of course that you get a lot of packages you might never use, and documentation. To prevent this a search for texlive in Synaptic gives you the possibility to install the bundles you want. The description of the package states which tex-packages that comes with it.
Another possibility is to install "vanilla" TeX. It is described here. This gives you better package managing.
\usepackage{program}? Note: TeXmaker is just an IDE/LaTeX editor to type the source and then send topdflatexengine. – texenthusiast Jul 29 '13 at 17:18sudo apt-get install texlive-fullfor all packages in Ubuntus repositories (asuming you have not done this). – Robin Möller Jul 29 '13 at 20:28\usepackage{}should work...make sure you have installed the required packages correctly...if you want you can check out these solutions on how to install new packages on Texmaker on Ubuntu...hope it helps...:) – Mahesh Mohandasan Jul 29 '13 at 17:47