General ⇒ Text fontsize in document of class article
Text fontsize in document of class article
I am facing a problem in the fontsize of the text-body of my article document. I am using the following command:
\documentclass [12pt]{article}
Yet, the output text size is always 10pt. Does anyone have suggestions?
FYI, I am using TeXnicCenter on top of MikTek in Windows XP operating system.
Regards,
Essam
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
Text fontsize in document of class article
You must have something (probably a package or a LaTeX command like \small) that resets the font size.
You could write the following in the preamble of your .tex file, and send us the list of packages being read by your compiler.
%****************************************************************
% Places a list of all files used in the log file.
% ****************************************************************
\listfiles
Cheers,
N.
Re: Text fontsize in document of class article
\documentclass[14pt,opts]{extarticle}
opts is the other options you've specified in the beginning of your doc e.g. a4paper, 12pt, ... in the example you give above you don't specify opts so remove that bit then 8O
extarticle is an extension of the article class allowing you to use bigger fonts. You'll probably have to install the extra package (I know you have to in miktex 2.6/5).
Re: Text fontsize in document of class article
Thanks for the replies. Actually, I am using a new template that is working fine now.
Thanks for your help guys.
essam