Follow-up to query re: adjusting textheight in memoir
Apparently, memoir's \setlxvchars[\normalfont]\setxlvchars[\normalfont] commands standardize the result to 10pt, regardless of the point size specified in \documentclass. How can one adjust for this? Minimal example follows:
\documentclass[10pt]{memoir}
\usepackage{fontspec}
\setmainfont[Ligatures=TeX]{Linux Libertine}
\usepackage{calc}
\makeatletter
\newcommand{\psize}{\f@size}
\makeatother
\setlxvchars[\normalfont]
\setxlvchars[\normalfont]
\begin{document}
Point size = \psize\par
L45 = \the\xlvchars\par
L65 = \the\lxvchars
\end{document}
L45 and L65 only seem to change as the font is changed. I've tried unsuccessfully to adjust for the ratio \psize : 10. Shouldn't be that hard?


fontspecworks, slightly different from the "traditional" way. If you try\showthe\fontin the preamble (withfontspec), you'll get 10pt size no matter what size option you set. – egreg Oct 08 '12 at 13:14