tgt
- 519
- 2
Do you do it? I tend to not do it as long as it looks fine.
The discussion revolves around handling errors in LaTeX documents, particularly focusing on the importance of correcting errors and warnings, as well as the implications of ignoring them. Participants share their experiences and strategies for achieving a polished document while managing LaTeX errors.
Participants express differing views on the importance of correcting LaTeX errors, with some advocating for addressing all issues while others feel that if the output is satisfactory, corrections may not be necessary. The discussion remains unresolved regarding the best approach to handling errors.
Some participants mention specific line numbers and commands, indicating a reliance on particular LaTeX structures, but there is no consensus on the best practices for error correction.
cristo said:What sort of errors do you mean? Errors in latex tend to make it not compile!
tgt said:I've got 12 errors currently and I'm still able to edit and view it in PDF.
First thing to note here is that LaTeX has two types of "bad messages": Errors and Warnings (you may know this).tgt said:I've got 12 errors currently and I'm still able to edit and view it in PDF.
At line 84 of your file, you must be starting a new subsection with a "\begin{subsection}{Subsection heading goes here}" command before (or probably without) ending the previous subsection with an "\end{subsection}" command. Even better, you could replace all of your "\begin{subsection}{Subsection heading goes here}" commands with "\subsection{Subsection heading goes here}" commands.tgt said:It's got i.e '1.84 \end{subsection}' What does 1.84 mean? I do have trouble locating the error. How do I end a subsection?
las3rjock said:At line 84 of your file, you must be starting a new subsection with a "\begin{subsection}{Subsection heading goes here}" command before (or probably without) ending the previous subsection with an "\end{subsection}" command. Even better, you could replace all of your "\begin{subsection}{Subsection heading goes here}" commands with "\subsection{Subsection heading goes here}" commands.
tgt said:How would I end a subsection?
'\end{name of subsection}'?
You want to correct your minor bad habits now so that it will be easier to debug more serious errors in the future.tgt said:The thing is if it compiles and viewing with PDF is possible with the desired output, why correct the errors?