论文类问题

论文类问题

当我尝试将thesis类文件用于我的论文时出现此错误:

File `thesis.cls' not found. \usepackage

我的代码

\documentclass[12pt]{thesis}
\usepackage{blkarray}
\usepackage{amsmath}
\begin{document}
\chapter{How long you want the title }

\end{document}

如何纠正这个错误?

答案1

如果您有权访问thesis.cls

大多数情况下,错误File foo.cls not found会导致两个可能的问题:

首先,该cls文件是 TeXlive 或其他 TeX 发行版的“经典”文件。在这种情况下,您应该更新它。更新方法取决于您使用的是 TeXlive、MikTeX、macTeX 还是其他系统。

如果您的文件来自互联网或来自大学等其他来源,则您应该在您的文件夹中保存该文件的副本。

如果问题仍然存在,您应该验证拼写错误(thesisThesisTHESIS)。名称取决于文件名。

如果您没有任何thesis.cls文件:

在这种情况下,您应该使用另一个文档类作为bookreport

\documentclass[12pt]{report} %you can modifies report with book
\usepackage{blkarray}
\usepackage{amsmath}
\begin{document}
\chapter{How long you want the title }

\end{document}

相关内容