Advertisement
para_bellum

install latex package

May 3rd, 2015
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. If there is an .ins file, run latex on it:
  2. $ latex file.ins
  3.  
  4. If there is a .dtx file, run latex (or pdflatex) on it to generate the documentation. It may need more than one run.
  5. $ latex file.dtx
  6.  
  7. If there is a .idx, this is an index:
  8. $ makeindex filename
  9.  
  10. There may also be a .glo file produced, that is the glossary, run this instead:
  11. $ makeindex -s gglo.ist -o name.gls name.glo
  12.  
  13. Finally install the files locally
  14. If not already existing, create the directory ~/texmf, then copy the files following the guide http://en.wikibooks.org/wiki/LaTeX/Installing_Extra_Packages
  15.  
  16. Update the tex index:
  17. $ texhash ~/texmf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement