General ⇒ TeXnicCenter | PDF document cannot be opened
TeXnicCenter | PDF document cannot be opened
I am using TexnicCenter to write my document. Things were going just fine when suddenly it wouldn't open the pdf anymore. There were errors before however, it perfectly compiled and opened the pdf but somehow it started not to open even though I have decreased the number of errors. I need help urgently!!
Reason: title changed
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Re: TeXnicCenter | PDF document cannot be opened
welcome to the board!
I changed the topic title. "Urgent help needed!" doesn't belong to a title. Just try to choose a title which shortly describes the problem or question in the best possible way.
Also, provide some further information, besides that it doesn't work any more - error messages for example. You also post the .log file as attachment to a post. Once we got some information, we could very probably help.
Stefan
Re: TeXnicCenter | PDF document cannot be opened
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Re: TeXnicCenter | PDF document cannot be opened
Stefan
Re: TeXnicCenter | PDF document cannot be opened
- Attachments
-
- thesis.log
- log file
- (21.4 KiB) Downloaded 400 times
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
TeXnicCenter | PDF document cannot be opened
For example line 18:
Code: Select all
E[\epsilon_{t}\left|{x_{t2},...,x_{tk}}] &=& 0
\left
, you need to use \right
in the same context. Here, you need it before ending the column by &
. Either write \right.
before the &
for an invisible delimiter, or use \big
, \Big
etc. instead of \left
.Line 49, 50:
There's something wrong with yourExtra alignment tab has been changed to \cr
...
Too many columns in eqnarray environment
...
Misplaced alignment tab character &.
eqnarray
environment. eqnarray
is obsolete, I recommend using align
of 
Line 72:
Seems also to be an anMisplaced alignment tab character &
eqnarray
problem. I can tell you details, if you would post this code.There are more errors need to be fixed. Read the log, locate the problem, try to fix it. If it's too difficult, post a question here with details: error message and problematic code. For different problem, post a different topic.
This is the final error, which probably prevents producing the PDF finally:
You probably forgot to write! LaTeX Error: \begin{table} on input line 153 ended by \end{document}.
...
\end{document}
Your command was ignored.
Code: Select all
\end{table}
\end{document}
has been ignored, the document is not finished.Stefan
Re: TeXnicCenter | PDF document cannot be opened
Re: TeXnicCenter | PDF document cannot be opened
Re: TeXnicCenter | PDF document cannot be opened
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
TeXnicCenter | PDF document cannot be opened
If you would like to see the bad boxes in the output, use
draft
as class option, i.e. as optional argument to \documentclass
. This way bad boxes would be marked by black rules at the margin. Just don't forget to remove the draft
option later, or replace it by final
.Stefan