0

when i try to run a template from overelaf

\documentclass[12pt,a4paper,violet]{bbe}
\usepackage{blindtext}
\begin{document}
    \chapter{Title}
    \section{Title}
    \begin{definition}
    Hello world
    \end{definition}
    \begin{remark}
    This is remark
    \end{remark}
    \blinddocument
\end{document}

it is not working on my PC, since i get the error "! LaTeX Error: File `bbe.cls' not found. Type X to quit or to proceed, or enter new name. (Default extension: cls) Enter file name: ! Emergency stop."

But its working fine, when i run it on overleaf.

Thank you in advance

1 Answers1

0

The overleaf template will have made a project that contained the bbe.cls file, so to use a local tex installation you should just need to download the project and extract the files from teh zip archive, which will all be in teh correct relative locations to use with tex. Do not just download your main document file.

David Carlisle
  • 757,742