LaTeX Beginner's Guide ⇒ Points to cm
Points to cm
Anyway, what is the conversion factor between pt and cm? It's close to 28, but that doesn't seem to be exact.
Thanks!
-Dan
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Points to cm
KR
Rainer
Points to cm
Thank you!rais wrote:1 in = 2.54 cm = 72.27 pt
KR
Rainer
Do you know happen to know where the unit pt is used? Is it a typesetting unit of some kind?
-Dan
Points to cm
The ratio of 72.27 pt to 1 in is what (La)TeX uses to adhere to the American Point System, AFAIK.
Perhaps I should've asked you where your pt is coming from

A PostScript point would be 1/72 of an inch, which is 1 bp (big point) in (La)TeX terms.
To complete the confusion, outside (La)TeX a PostScript point also is given as 1 pt.
OTOH, you could have asked (La)TeX what 1 cm is in pt, because when you ask (La)TeX about a dimension, it will be given in pt, no matter which unit was used to set it:
Code: Select all
\documentclass{article}\newlength\foo\setlength\foo{1cm}\begin{document}1 cm = \the\foo\end{document}
Rainer