Below is the LaTeX code for which I am getting the LaTeX error "missing \begin {document}. How can I resolve this error?
\documentclass[a4paper]{MY CV}
\begin{document}
Hello!
\end{document}
And this is the error:
Below is the LaTeX code for which I am getting the LaTeX error "missing \begin {document}. How can I resolve this error?
\documentclass[a4paper]{MY CV}
\begin{document}
Hello!
\end{document}
And this is the error:
Do not create your own class file with spaces in them. That is, instead of MY CV.cls, create MYCV.cls and use
\documentclass[..]{MYCV}
\documentclass[a4paper]{MY CV}
This is not ment to specify your file "MY CV". Instead it should contain something like:
\documentclass[a4paper]{article}
to specify, what type of document you are writing.
Have closer look at some tutorials/instructions :)
Edit: You can actually specify a class like "MY CV" (or "MYCV"), but this does not seem to be the issue...
Edit2: As mentioned by Werner, the "MY CV"-part IS the issue. Changing it to "MYCV" will solve this, if a "MYCV.cls" exists.
\documentclass{article article} \begin{document} test \end{document} yield when you compile it?
– Werner
Aug 31 '16 at 20:38
Maybe I should not read that much between the lines, but I still have to learn many things on forums, as I am very new too.
– dudakl Aug 31 '16 at 21:13
article,bookandreport, for example) and some people have written classes for specific purposes. If you're interested in creating a CV, consider using something likemoderncv. Perhaps you can start with an online template first. Also of interest would be reading Classes and packages – what's the difference? – Werner Sep 01 '16 at 15:23