General ⇒ Using bp instead of pt in latex font size.
Using bp instead of pt in latex font size.
I have a thesis template written in MS word using times new roman 12bp font size with certain margins when I write it in LaTeX the full page takes 35 lines instead of 34 lines in word. I now I using font size 12pt and the word using font size 12bp< the question is; how can I wite with font size 12bp instead of 12pt in latex?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Ijon Tichy
- Posts: 640
- Joined: Mon Dec 24, 2018 10:12 am
Using bp instead of pt in latex font size.
I would simply increase the line spread, e.g., using
\linespread{1.028}
or something like this. The needed value should be between 1.02 and 1.03.If you really want to try 12bp, you can try
Code: Select all
\usepackage[fontsize=12pb]{scrextend}
