General ⇒ Understanding the log-file
Understanding the log-file
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!
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
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Re: Understanding the log-file
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.
Re: Understanding the log-file
About the second part: Yeah, it´s just a warning, and the document works anyways.
Thanks!
- Stefan Kottwitz
- Site Admin
- Posts: 10330
- Joined: Mon Mar 10, 2008 9:44 pm
Understanding the log-file
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}