[Tex/LaTex] Thesis body font size 12 bp

fontsize

Similar questions have been asked but with no conclusive answers. How do I set my body font size to be equivalent to MS Word 12, which is required by my college. 12 pt in LaTeX is equal to size 10 in Word. The font type is Times New Roman.

Best Answer

The difference is negligible.

1 bp = 1.00374 pt (from a conversion table) so 12 pt would convert to 11.9553 bp, not 10 bp.

\RequirePackage{fix-cm}
\documentclass{standalone}
\begin{document}
\fontsize{12bp}{18bp}\selectfont H\fontsize{12pt}{18pt}\selectfont H
\end{document}

enter image description here

\RequirePackage{fix-cm} is needed per egreg’s comment, to prevent TeX from choosing the nearest standard size font file (12 pt in this case).