<html><body><div style="font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000"><div>Thanks for all the info on my question.<br><br>I've now spent some time perusing the WEB sources for pdftex to see what units it traffics in and I noticed something that may or may not be a bug.  I'm guessing not after all these years (or perhaps it's now a feature), but I'm not sure why, and can't really think through the consequences.<br><br>The source file is pdftex.web, as found in the git repository that Tom R. mentioned:<br><br>  <https://github.com/TeX-Live/texlive-source/blob/trunk/texk/web2c/pdftexdir/pdftex.web><br><br>A line in the initialization code reads:<br><br>  one_bp := 65782; {65781.76}<br><br>This is the closest [16:16] fixed-point value for 72.27 / 72.0 = 1.00375.<br></div><div><br data-mce-bogus="1"></div><div>But TeX thinks that 1bp is actually the fixed-point integer 65781, as demonstrated by executing this TeX code:<br><br>  \newdimen\onebigpoint \onebigpoint=1bp<br>  \newcount\testbpvalue \testbpvalue=\onebigpoint<br>  \the\testbpvalue<br><br>So pdftex is using a rounded up value (which is closer to the true value), but TeX is rounding down (and always will).<br></div><div><br data-mce-bogus="1"></div><div>This strikes me as a potential problem when comparing bigpoint dimension values.<br><br>Perhaps there are no consequences to any of this, but I just thought I'd mention it for the cogniscenti listening to see if there's an explanation.  There's no comments in the code on the motivation for rounding it up even though TeX rounds down.<br><br></div><div><br data-mce-bogus="1"></div><div>- Doug McKenna<br data-mce-bogus="1"></div><div><br data-mce-bogus="1"></div></div></body></html>