Scientific Word/Workplace ⇒ problem of setting body text point size
-
- Posts: 1
- Joined: Fri Feb 25, 2011 4:19 pm
problem of setting body text point size
I am wondering how to change the body text point size if Thesis(Harvard thesis)template is used. As there is no option for this. Any help would be appreciated. Thanks.
Jing
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
problem of setting body text point size
What documentclass does this template use? Mostly, you can just add an option to your documentclass to set the font size of the body text. Something like:
Code: Select all
\documentcall[11pt]{article}
Follow howtoTeX on twitter
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
problem of setting body text point size
I doubt that this will work.Frits wrote:[…] Something like:Code: Select all
\documentcall[11pt]{article}
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
problem of setting body text point size
Code: Select all
\documentclass[11pt]{article}
Follow howtoTeX on twitter
Re: problem of setting body text point size
Tom Price