18

What is the most resembling font in terms of size and style to the default used in LaTeX? I write in MS Word first, then copy it to LaTeX – this seems to be faster for me if not dealing with graphics, however discussion 'why' is not part of the question.

So I need to know how many pages of word document will be in LaTeX. I am using Calibri 8pt, but I would be happy to use more precise number. And of course I do realise all left and right margins being different. 80% of page count precision would satisfy me.

I have seen similar questions, but I really don't want to annoy myself by downloading the LaTeX fonts and then fetching them into Word, what I want is the font and the size that definitely exists in Word and looks similar. As I will still go to mighty LaTeX realm afterwards.

8
  • I'd expect switching from Calibri to Times or Times New Roman would be a pretty close match, especially if you use the same point size in both documents. Commented Feb 26, 2012 at 3:58
  • 4
    @MikeRenfro The default LaTeX font is Computer Modern, which I think is less compact than Times. Aubergine: One solution, if you don't necessarily need the default LaTeX font, is to just use Times or Palatino or something in your final document. Both of those are very easy to use in both LaTeX and Word. Commented Feb 26, 2012 at 4:04
  • Sure, but I'd guess it's a ton closer to Times than 8pt Calibri is. Commented Feb 26, 2012 at 4:06
  • 2
    If 80% accuracy is enough, why don't you create a dummy 10page word document and then paste into a latex document with "default" latex style? Then you would probably obtain, for example, 15 pages, with which you can say 1 word page = 1.5 "default" latex page.
    – Chang
    Commented Feb 26, 2012 at 4:39
  • 4
    Calibri is a sans serif font and Times and Times New Roman are serif fonts. Why would you go for a sans serif font in word and a serif font in LaTeX? I'd imagine your document will get a completely different look and feel in LaTeX; you may not recognise it.
    – user10274
    Commented Feb 26, 2012 at 6:27

5 Answers 5

21

There are at least two font families that are based on Computer Modern (thus match its metrics) and are available in the OTF format that can be used with Word:

  1. Latin Modern
  2. Computer Modern Unicode (also supports Greek and Cyrillic scripts)

Click on the font name you've chosen, then proceed to the download page and get the OTF files. Install them in Windows and Word will see the fonts. As you're looking for just a 80% accuracy, choosing the upright 10/12pt Roman font for the text will be enough.

I can't see, though, how typing text in Word is faster than in any text editor (maybe save spell checking).

3
  • Last sentence just in point, maybe modern latex guis support the spell checking, but mine TeXnicCenter does not.
    – Aubergine
    Commented Feb 26, 2012 at 6:19
  • 5
    Vim has spellchecking, as do many other editors en.wikipedia.org/wiki/Comparison_of_text_editors#Basic_features
    – Psirus
    Commented Feb 26, 2012 at 8:45
  • 1
    TxC 2.0alpha definitely has spell-checking, and I'm pretty sure earlier versions did, too. Check for a Tools / Spelling menu and a Spelling tab under Tools / Options. Commented Feb 26, 2012 at 12:58
1

"bookman old style" and "Century" works good for me. However, I prefer "Century" more. With slight adjustment in the spacing and margin, you could get close resemblance to the one of LaTex.

0
0

I find "Bookman Old Style" kind of resembles the one in latex

0
0

This might also be helpful to know. I know I found it useful when I was trying to figure out font sizes.

You could also change the font because of fontspec (compiling with XeLaTeX) like this: \setmainfont{Calibri} to see how LaTeX would process another font.

\documentclass[12pt]{article}
\usepackage{fontspec}
\usepackage[margin=2cm]{geometry}
\usepackage{xparse} % For \NewDocumentCommand (LaTeX3)
\makeatletter
\NewDocumentCommand\thefontsize{m}{{#1 The current font size is: \f@size pt\hfill{\string#1}}\par}
\makeatother
\NewDocumentCommand{\fontsizes}{m}{%
    \begingroup
    #1
    \offinterlineskip
    \setlength{\lineskip}{4pt}
    \thefontsize\tiny
    \thefontsize\scriptsize
    \thefontsize\footnotesize
    \thefontsize\small
    \thefontsize\normalsize
    \thefontsize\large
    \thefontsize\Large
    \thefontsize\LARGE
    \thefontsize\huge
    \thefontsize\Huge
    \endgroup
    %\thefontstyle\sffamily
}%

\begin{document}
\fontsizes{}
\end{document}

Output

enter image description here

Also see:

Does LaTeX automatically change fonts when switching between Title, Author, Date, and Body Text or sizes modifiers?

2
  • It's important to note that Word measures fonts in what TeX calls 'big points'. I bet you can convert between the two in TeX (and certainly in expl3). Commented Oct 23, 2015 at 18:11
  • @SeanAllred Excellent addition. I will look into that! Commented Oct 23, 2015 at 18:12
0

Please find the font at this link.

Extract the files and then follow the following steps:

  1. Open Control Panel.
  2. Go to Fonts option.
  3. Open it.
  4. Drag all the files from the folder that you just extracted to the **Fonts ** folder.

Open Word and you will see the newly installed fonts on the font choice drop-down menu.

I am on a Windows 8 64-bit environment, using MS Office 2010.

Hope it helps.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .