LaTeX Creating a Thesis Report with LaTeX: Problems & Solutions

AI Thread Summary
The discussion revolves around issues faced while writing a thesis report in LaTeX. The user encounters a font warning when attempting to use Verdana, indicating that the desired font shape is undefined, leading to a fallback to the default Computer Modern Roman font. Suggestions include checking the .log file for details on the substitution and considering the use of \chapter* to prevent certain chapters, like Nomenclature and Abbreviations, from appearing in the Table of Contents. The importance of focusing on content over font selection during the initial writing phase is emphasized, with advice to finalize formatting later. Guidance is provided on locating the log file and changing font styles within specific paragraphs, highlighting the distinct approach of LaTeX compared to WYSIWYG software.
bhaazee
Messages
79
Reaction score
0
Hello PF,
I am writing my Thesis Report with Latex. Facing a couple of problems.

1. I want to create my report in verdana font. However, the warning states

LaTeX Font Warning: Font Shape 'T1/verdana/m/n' undefined
(Font) using 'T1/cmr/m/n' instead

2. After trying various procedures on Nomenclature, finally had to create the Nomenclature in Tabular option. The heading of nomenclature has been written using \chapter command. This is same for Abbreviations. Now, I don't need these two chapters to be listed under Table of Contents

Please give me some suggestions

Regards
 
Physics news on Phys.org
bhaazee said:
LaTeX Font Warning: Font Shape 'T1/verdana/m/n' undefined
(Font) using 'T1/cmr/m/n' instead
You are trying to use some combination of font styles (like bold + italic) that doesn't exist in the Verdana font, so LaTeX substituted the default Computer Modern Roman (cmr) font instead.

If you look in the .log file, you will probably see numbers like like [1] [2] [3] which are printed at the end of producing each page of the document. So you can find out which page contains the substituted characters, and then decide what to do about it.

The heading of nomenclature has been written using \chapter command. This is same for Abbreviations. Now, I don't need these two chapters to be listed under Table of Contents

Try changing \chapter to \chapter* .
 
Thnx for the reply.

But could you please say me where can I find the log file (completely new to latex)

Also, how can I change the font of the text in a particular paragraph?

Regards
 
If I may give a tiny tip: don't worry about fonts and layoutsy stuff right now. Of course, you should divide the LaTeX file into chapters and sections, and make sure all of it works, but choosing a font you like is something you can do when you're finishing writing your thesis. It's just not important in the beginning (because the default layout tends to work just fine), and tends to distract you from actually being productive. Your experience may vary. :wink:
 
When you run a file like xyz.tex through LaTeX, it should create the log file xyz.log in the same directory.

For working with fonts in LaTex, see http://tug.org/pracjourn/2006-1/schmidt/schmidt.pdf.

Presumably you selected the Verdana font with a command similar to \usepackage(verdana). That package should define compatible-looking sans-serif and "typewriter" fonts, and set up the commands \rmfamily etc described in the PDF so they work.

This is a completely different "font culture" to the way WYSIWYG software works. Not necessarily better or worse - just completely different!
 

Similar threads

Replies
4
Views
3K
Replies
1
Views
6K
Replies
1
Views
14K
Replies
1
Views
3K
Replies
4
Views
4K
Replies
3
Views
2K
Replies
2
Views
2K
Back
Top