Hi, everyone!
I´ve recently started using Latex and I wrote an article on it. Everything worked (well, it successfully created a pdf-file), but I was curious about the log-file. Some things are pretty clear, but I´m having trouble understand what the rest means and I haven´t had any luck searching online.
First of all, there is a section that says
\c@part=\count79
\c@section=\count80
\c@subsection=\count81
\c@subsubsection=\count82
\c@paragraph=\count83
\c@subparagraph=\count84
\c@figure=\count85
\c@table=\count86
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
)
What´s that all about?
Secondly, a little later it says:
Missing character: There is no  in font cmr12!
Missing character: There is no ´ in font cmr12!
Missing character: There is no  in font cmr12!
Missing character: There is no ´ in font cmr12!
Missing character: There is no â in font cmr12!
Missing character: There is no € in font cmr12!
even though I don´t think I used any of these characters apart from an apostrophe. Did something go wrong there?
Thank you for any replies!
General ⇒ Understanding the log-file
NEW: TikZ book now 40% off at Amazon.com for a short time.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Re: Understanding the log-file
Hi and welcome, the first part are just some statements, in which register a value is stored. Those are TeX interna and you shouldn't care about them. If you really do, you can have a look at the TeXbook by Knuth. It is the TeX user manual. Placed on top of that, there is Lamports LaTeX.
Concerning the second part, can you try to boil down the document so that just that warning occurs? It is quite hard for me to suggest anything else.
Concerning the second part, can you try to boil down the document so that just that warning occurs? It is quite hard for me to suggest anything else.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Re: Understanding the log-file
Thank you!!
About the second part: Yeah, it´s just a warning, and the document works anyways.
Thanks!
About the second part: Yeah, it´s just a warning, and the document works anyways.
Thanks!
- Stefan Kottwitz
- Site Admin
- Posts: 10321
- Joined: Mon Mar 10, 2008 9:44 pm
Understanding the log-file
Hi TierraT,
welcome to the forum!
Those are accented characters which are not available in the classic encoding (OT1). Switch to T1 encoding and use a T1 supporting font, such as Latin Modern, which is very similar to the default font and of high quality.
Also, use the correct input encoding, depending on the file encoding or the operating system.
I would use:
Stefan
welcome to the forum!
Those are accented characters which are not available in the classic encoding (OT1). Switch to T1 encoding and use a T1 supporting font, such as Latin Modern, which is very similar to the default font and of high quality.
Also, use the correct input encoding, depending on the file encoding or the operating system.
I would use:
Code: Select all
\usepackage[utf8]{inputenc}% or latin1 with Windows editors
\usepackage[T1]{fontenc}
\usepackage{lmodern}
LaTeX.org admin