Text FormattingTimes New Roman

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
lbx
Posts: 1
Joined: Sun Oct 06, 2024 5:20 am

Times New Roman

Post by lbx »

Dear Forum,

I heard that Latex merely imitates a kind of Times New Roman font(?)
Here is my preamble, but can I make sure to use perfectly and undenieable proper times new roman 12pt formatting with the common 1 1/2 spacing in those projects which comply to the results compared to word software etc.?

The home work assignment ist pretty strict in my case for finishing a scientific project.
How would you defend it to a the leading lecturer, Prof. etc., if the result does not comply 100% to the tasked and very precise font requirement? Not everybody here uses Latex...

In case: What setting in the preamble is closest to the formal assignment if need be?

Code: Select all

\documentclass[
    paper = a4,
    fontsize = 12pt,
    headinclude = true,
    % start chapters on the right side
    %open = right,
    % Use twosided layout. Every chapter starts on the right side, therefore sometimes blank pages are added between chapters.
    %twoside = false,  
    BCOR = 1 cm,
    %DIV=9,
    % add lists and bibliography to table of contents
    toc = listofnumbered,
    toc = bibnumbered,
    % enumerate chapters as x.y instead of x.y.
    numbers = noendperiod
]{scrreprt}
Thank you!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Times New Roman

Post by Stefan Kottwitz »

Hi,

welcome to the forum!

For basic LaTeX, there are Times Roman fonts which are very similar to Times New Roman. For example, you can use

Code: Select all

\usepackage{newtxtext,newtxmath}
or

Code: Select all

\usepackage{mathptmx}
Insisting on a particular (Microsoft) font is like forcing you to buy it. The intention behind it may probably just be "use a Times-like serif font."
However, if you have the font, you can use it with XeLaTeX or LuaLaTeX like

Code: Select all

\usepackage{fontspec}
\setmainfont{Times New Roman}
Regarding the spacing, you can probably imitate that Word spacing using the following:

Code: Select all

\linespread{1.25}
It can be a good idea to write your supervisor an email telling what you are using and attaching a sample PDF page (or screenshot) that shows the design and asking if that fulfills the requirements.

Stefan
LaTeX.org admin
Post Reply