Fonts & Character Sets ⇒ Times New Roman
Times New Roman
Hi,
I want to make my font setting Times New Roman in Latex. Can you help me, please.
I want to make my font setting Times New Roman in Latex. Can you help me, please.
-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
Re: Times New Roman
Hi,
I tryed it but it didn't work.
I tryed it but it didn't work.
Times New Roman
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:
before the mathptmx line. There's also the txfonts package to try.
You might also need to add:
Code: Select all
\usepackage[T1]{fontenc}
Re: Times New Roman
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.
\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.
- Stefan Kottwitz
- Site Admin
- Posts: 10308
- Joined: Mon Mar 10, 2008 9:44 pm
Times New Roman
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
Stefan
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Times New Roman
Strictly speaking these packages provide access to the font Nimbus Roman No9 L, which is very similar to Times New Roman.
Thorsten
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Times New Roman
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:
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.
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}
- Stefan Kottwitz
- Site Admin
- Posts: 10308
- Joined: Mon Mar 10, 2008 9:44 pm
Times New Roman
Very good addition!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
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}
LaTeX.org admin