未找到文件“sdaps.cls”错误

未找到文件“sdaps.cls”错误

我是新手南达科他州。所以在我关注教程我尝试使用我自己的简单.tex文件:

\documentclass[12pt]{article}

\begin{document}

\title{Operating System MCQ Paper}
\date{\today}
\author{Menuka Ishan}

\begin{enumerate}

    \item \textbf{What is the reusable resource?}
        \begin{enumerate}
            \item that can be used by one process at a time and is not depleted by that use
            \item that can be used by more than one process at a time
            \item that can be shared between various threads
            \item none of the mentioned

        \end{enumerate}
    \item \textbf{Which of the following condition is required for deadlock to be possible?}
        \begin{enumerate}
            \item mutual exclusion
            \item a  process  may  hold  allocated  resources  while  awaiting  assignment  of  other
    resources
            \item no resource can be forcibly removed from a process holding it
            \item all of the mentioned
        \end{enumerate}

\end{enumerate}

\end{document}

编译没有问题,但 SDAPS 无法使用此代码构建项目。我不知道为什么?在我分析了example.texSDAPS 中的 之后,我发现sdaps而不是article,但是当我使用 进行编译时

\documentclass{sdaps}

它显示错误“sdaps.cls未找到”。有人能告诉我为 SDAPS 创建 LaTeX 文件的正确方法吗?

答案1

  1. 下载最新版本的sdaps;此 tar 包应包含一个tex存放 TeX 相关内容(类文件)的文件夹:

    在此处输入图片描述

    还有一个Git 存储库

  2. 地方sdaps.cls在 TeX 可以看到的地方。参见我应该将自己的文件放在哪里.sty.cls才能使它们可供我的所有.tex文件使用?

  3. 使用以下方式编译

    \documentclass{sdaps}
    

欲了解更多信息,请阅读SDAPS LaTeX 支持

相关内容