Fonts & Character Setsfont size with Times New Roman

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
mikkelstuff
Posts: 17
Joined: Fri Sep 24, 2010 8:50 pm

font size with Times New Roman

Post by mikkelstuff »

I have been (ugh) forced to use the Times New Roman font and, to do so, have added the \usepackage(pslatex). The result looks like Times New Roman when compared to a WORD document, but the \fontsize command does not seem to set the font size.

It appears that the section headings are 12 point and the text is 10 point.

What else am I to do?

Thanks.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

font size with Times New Roman

Post by frabjous »

pslatex is a pretty old package. The days, most people get Times fonts in LaTeX by using either the mathptmx or txfonts package.

Code: Select all

\usepackage[T1]{fontenc}
\usepackage{txfonts}
In either case, it should be possible to set the font size the normal way, e.g., by putting "12pt" or whatever in the options for the document class:

Code: Select all

\documentclass[12pt]{article}
The other font selection commands, e.g., \Large, \small, \footnotesize, etc., should work properly.

If you have more stringent requirements, please be specific about them, and perhaps provide a minimal working example.

And by the way, none of these provide "Times New Roman". They provide Nimbus Roman L, which is a Times clone (not a Times New Roman clone: compare the italic z for example). Most people cannot tell the difference, however.
mikkelstuff
Posts: 17
Joined: Fri Sep 24, 2010 8:50 pm

Re: font size with Times New Roman

Post by mikkelstuff »

Thanks again frabjous. This looks close enough to Times New Roman for me.
Post Reply