Fonts & Character SetsTimes New Roman

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
mathselpi
Posts: 30
Joined: Wed Dec 31, 2008 4:50 pm

Times New Roman

Post by mathselpi »

Hi,
I want to make my font setting Times New Roman in Latex. Can you help me, please.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX books
josephwright
Site Moderator
Posts: 814
Joined: Tue Jul 01, 2008 2:19 pm

Times New Roman

Post by josephwright »

Code: Select all

\usepackage{mathptmx}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Joseph Wright
mathselpi
Posts: 30
Joined: Wed Dec 31, 2008 4:50 pm

Re: Times New Roman

Post by mathselpi »

Hi,
I tryed it but it didn't work.
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Times New Roman

Post by frabjous »

Please provide a minimal working example of what didn't work, and post also the .log file generated by the result.

You might also need to add:

Code: Select all

\usepackage[T1]{fontenc}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
before the mathptmx line. There's also the txfonts package to try.
fazli
Posts: 3
Joined: Wed Feb 22, 2012 10:05 pm

Re: Times New Roman

Post by fazli »

Is \usepackage{mathptmx} consider as Times new Roman? I use the word
\usepackage{times}\renewcommand\rmdefault{stb} this is Times new roman, but no bold and italic. It also increases the pages. SO which one is appropriate for times new roman.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10308
Joined: Mon Mar 10, 2008 9:44 pm

Times New Roman

Post by Stefan Kottwitz »

Hi Fazli,

mathptmx is Times Roman. If you would like to read about the difference, see: Times Roman and Times New Roman

Another Times package is txfonts, an there's an extension txfontsb. All these font packages can be loaded by \usepackage.

Stefan
LaTeX.org admin
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Times New Roman

Post by localghost »

Strictly speaking these packages provide access to the font Nimbus Roman No9 L, which is very similar to Times New Roman.


Thorsten
User avatar
shadgrind
Posts: 140
Joined: Thu Jul 16, 2009 12:39 am

Times New Roman

Post by shadgrind »

If you want the real Times New Roman then you could use XeTeX, assuming you have the TrueType real Times New Roman font installed for use by your operating system. For example:

Code: Select all

Code, edit and compile here:
\documentclass{article}
\usepackage[MnSymbol]{mathspec}
\setallmainfonts{Times New Roman}
\begin{document}
This is \textbf{Times New Roman}.
Here is some nonsense \emph{math}:
\[
\int_a^b \sin \pi x~dx = \sum_{n=0}^{\infty} \theta^n
\]
\end{document}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Then run xelatex on that *.tex file. That will make the text and math fonts Times New Roman, with MnSymbol used only for the math symbols (e.g. the integral and summation symbols). Without passing the MnSymbol option to the mathspec package the symbols would be in Computer Modern, which doesn't look that good with Times New Roman.
System: TeX Live 2012, Fedora 18 x86_64, GNU Emacs 24.2
User avatar
Stefan Kottwitz
Site Admin
Posts: 10308
Joined: Mon Mar 10, 2008 9:44 pm

Times New Roman

Post by Stefan Kottwitz »

shadgrind wrote:If you want the real Times New Roman then you could use XeTeX, assuming you have the TrueType real Times New Roman font installed
Very good addition!

By the way, in that case you should also enable TeX ligatures such as `` and '' for quoting glyphs and -- and --- for dashes, as I wrote in MLA style recommendation and quotation marks with XeLaTeX. Otherwise they would not work.

Code: Select all

\setallmainfonts[Ligatures=TeX]{Times New Roman}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Stefan
LaTeX.org admin
Post Reply