\usepackage[T1]{fontenc} 产生大量错误并破坏 PDF

\usepackage[T1]{fontenc} 产生大量错误并破坏 PDF

我所希望的只是能够使用 \guillemotleft 和 \guillemotright。

我在使用 Ubuntu 14.04,64 位。

这些是我在声明 documentclass 之后加载的包article

\usepackage{mathtools}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\usepackage[margin = 0.75in]{geometry}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

但是,当我添加最后一行时,fontenc绝对pdflatex无法处理。我得到了上亿个错误。我不会发布所有错误,因为这可能会使这篇文章和乔治·RR·马丁的小说一样长,但这是第一个。

kpathsea: Running mktextfm ecrm1000
mktextfm: Running mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; input ecrm1000
This is METAFONT, Version 2.718281 (TeX Live 2013/Debian)


kpathsea: Running mktexmf ecrm1000
! I can't find file `ecrm1000'.
<*> ...ljfour; mag:=1; nonstopmode; input ecrm1000

Please type another input file name
! Emergency stop.
<*> ...ljfour; mag:=1; nonstopmode; input ecrm1000

Transcript written on mfput.log.
grep: ecrm1000.log: No such file or directory
mktextfm: `mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; input ecrm1000' failed to make ecrm1000.tfm.
kpathsea: Appending font creation commands to missfont.log.

! Font T1/cmr/m/n/10=ecrm1000 at 10.0pt not loadable: Metric (TFM) file not fou
nd.
<to be read again> 
                   relax 
l.100 \fontencoding\encodingdefault\selectfont

?

在它输出上述错误后,它生成的 PDF 中除了我的数学公式什么都没有。没有段落文本、章节标题,甚至页码,或者任何事物

我尝试使用我的原始 Google-fu,并搜索“Latex Font T1 not loadable Metric file not found”,结果返回这个结果,但是当我尝试提出的解决方案时,它不起作用。

终端输入—

sudo tlmgr install ec

终端输出—

(running on Debian, switching to user mode!)
cannot setup TLPDB in /home/jps/texmf at /usr/bin/tlmgr line 5336.

终端输入—

sudo tlmgr install cm-super

终端输出—

(running on Debian, switching to user mode!)
cannot setup TLPDB in /home/jps/texmf at /usr/bin/tlmgr line 5336.

我再次尝试使用 Google,并搜索了“Sudo tlmgr install Cannot setup TLPDB”。这让我找到了这个问题,其中一位响应者说解决方案是安装该软件包xzdec

于是我跑了——

sudo apt-get install xzdec

这显然是成功的。因此,我尝试再次安装eccm-super结果却收到与之前完全相同的错误消息。

我现在不知道该怎么办。

相关内容