Difference between revisions of "Debian TeXlive install"

From Wiki
Jump to navigation Jump to search
m (context will not run without lmodern)
m ({{Installation navbox}})
 
(12 intermediate revisions by 8 users not shown)
Line 1: Line 1:
 
== Setup ==
 
== Setup ==
 +
TeXlive is contained in Debian. Just call
 +
aptitude update
 +
aptitude install texlive
 +
        aptitude install lmodern texlive-context
  
TeXlive is packaged for Debian/sid/i386.
+
Which will bring you: texlive-latex-recommended, texlive-fonts-recommended,
Users can enable them by adding the following line in your /etc/apt/sources.list file (as root):
+
texlive-context, texlive-latex-base, texlive-base. You can go on and install
<code>
+
additional packages (like texlive-latex-extra) and additional languages
  echo "deb http://www.tug.org/texlive/Debian/ pool/" >>/etc/apt/sources.list
+
(like texlive-lang-german) and additional documentation (like
  apt-get update
+
texlive-doc-en).
</code>
 
and follow the instructions here: [http://www.tug.org/texlive/debian.html].
 
  
 +
If you want to have a system closely mirroring a TeX Live DVD, you can
 +
install the texlive-full packages, which pulls in all packages.
  
== Install ==
+
aptitude install texlive-full
  
Basically, after having purged any other TeX distrib such as tetex:
+
The <tt>texlive-context</tt> package may be older then the <tt>context</tt> packages from Norbert Preining; see [[Debian_installation]].
<code>
 
  apt-get remove --purge tetex-* texinfo
 
</code>
 
you just have to apt-get the packages as root:
 
<code>
 
  apt-get install texlive-context
 
  apt-get install texlive-pdfetex
 
  apt-get install texlive-metapost
 
  apt-get install lmodern
 
</code>
 
  
 
== Fonts ==
 
== Fonts ==
Line 28: Line 22:
 
It may be of interest to get fonts as well:
 
It may be of interest to get fonts as well:
 
<code>
 
<code>
   apt-get install texlive-fontsrecommended
+
   aptitude install texlive-fonts-recommended cm-super
  apt-get install cm-super
 
 
</code>
 
</code>
 
  
 
== TeXinfo ==
 
== TeXinfo ==
Line 37: Line 29:
 
And to get back texinfo if needed:
 
And to get back texinfo if needed:
 
<code>
 
<code>
   apt-get install texinfo
+
   aptitude install texinfo
 
</code>
 
</code>
  
 
+
{{Installation navbox}}
  
 
[[Category:Installation]]
 
[[Category:Installation]]
--[[User:Olivier|Olivier]] 13:05, 7 November 2005 (CET)
 

Latest revision as of 16:00, 20 November 2012

Setup

TeXlive is contained in Debian. Just call aptitude update aptitude install texlive

       aptitude install lmodern texlive-context

Which will bring you: texlive-latex-recommended, texlive-fonts-recommended, texlive-context, texlive-latex-base, texlive-base. You can go on and install additional packages (like texlive-latex-extra) and additional languages (like texlive-lang-german) and additional documentation (like texlive-doc-en).

If you want to have a system closely mirroring a TeX Live DVD, you can install the texlive-full packages, which pulls in all packages.

aptitude install texlive-full

The texlive-context package may be older then the context packages from Norbert Preining; see Debian_installation.

Fonts

It may be of interest to get fonts as well:

  aptitude install texlive-fonts-recommended cm-super

TeXinfo

And to get back texinfo if needed:

  aptitude install texinfo