[Tex/LaTex] Using Kile@Ubuntu and getting “*.cls file not found. \begin”

errorskile

I've just started using LaTeX for an assignment and got this error:

File 'assignment_1.cls' not found. ^^M

What can I do about this?

Best Answer

Using \documentclass{myclass} requires a file myclass.cls to exist on your system. Since assignment_1 is a non-standard document class, \documentclass{assignment_1} causes an

File 'assignment_1.cls' not found.

error. Rather use one of the standard document classes (like article - preferred in your case, book or report).

Related Question