无法构建 .tex 文件

无法构建 .tex 文件

我正在运行MikTex 2.9,但遇到了一个问题。当我尝试编辑 tex 文件时,它一直在构建。我注意到任务管理器中有一个正在运行的进程miktex-maketfm.exe

此外,Texmaker 中的对话框显示

Process started

pdflatex

: Unknown archive file size. pdflatex: Data: cbfonts-fd

我的代码如下

\documentclass[a4paper,11pt]{book}

\usepackage[english,greek]{babel}
\usepackage[iso-8859-7]{inputenc}
\usepackage{kerkis}

\newcommand{\sw}{\selectlanguage{english}}
\newcommand{\sq}{\selectlanguage{greek}}
\newcommand{\eng}[1]{\latintext#1\greektext}
\newcommand{\gre}[1]{\greektext\latintext#1}
\begin{document}
        \eng{This is the $1^{st}$ \LaTeX{} document!}\\
        Το πρώτο κείμενο \LaTeX!
        Φαίνεται πως δουλεύει!
        υπομονή
\end{document}

我还安装了以下软件包:greek-inputencgreek-fontenc

我该如何修复它?

答案1

尝试使用包管理器安装 cbfonts-fd。如果出现错误:更改存储库并重试。

答案2

您可以尝试以下几件事:

  • 尝试重新启动系统
  • 检查构建选项:> Tex -> Configure Texmaker
  • 尝试以其他格式构建,例如 DVI 或 PS

相关内容