General ⇒ outputting .tex file as .pdf/.ps using TexnicCenter??
outputting .tex file as .pdf/.ps using TexnicCenter??
When I open TexNicCenter, open the file, and then try to output the file in .pdf, .ps, or .dvi format, it tells me there are hundreds of errors with the Latex code. It's impossible to believe the code is so bad, so I must be doing something wrong! Any advice would be appreciated! Many thanks, Carrie
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
outputting .tex file as .pdf/.ps using TexnicCenter??
welcome to this forum!
That tex-file is not a complete LaTeX document, commands like \documentclass are missing.
You could create a new tex file in the same directory:
Code: Select all
\documentclass[a4paper,10pt]{article}
\newcommand*\bye{}
\begin{document}
\include{imo-all}
\end{document}
Stefan