将预览生成的图像宽度和高度导出到文本文件

将预览生成的图像宽度和高度导出到文本文件

我使用该preview包从环境中生成一些图片equation。我需要每张图片的宽度和高度。我猜这个preview包会施展一些魔法,而且在某些时候,这些值一定是已知的(?)。是否可以将它们按顺序保存在文本文件中?

\documentclass{article}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{equation}
\begin{document}
\begin{equation}
  x^2 = 2
\end{equation}
\begin{equation}
  \int_0^x \sin t\, dt = 0
\end{equation}
\end{document}

答案1

深入preview.sty研究文档代码后,我发现在\pr@ship@end钩子上添加一些材料是实现此目的的方法(我想要的与选项几乎相同auctex)。我正在寻找的尺寸是\pr@box

由于我需要以厘米为单位的尺寸,因此我使用了给定的转换宏在另一个答案中

\documentclass{article}
\usepackage{amsmath}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{equation*}
\makeatletter
% Conversion utility (https://tex.stackexchange.com/a/37317/8425)
\begingroup
  \catcode `P=12  % digits and punct. catcode
  \catcode `T=12  % digits and punct. catcode
  \lowercase{%
  \def\x{\def\rem@pt##1.##2PT{##1\ifnum##2>\z@.##2\fi}}}
     \expandafter\endgroup\x%
\def\strip@pt{\expandafter\rem@pt\the}
\def\convertto#1#2{\strip@pt\dimexpr #2*65536/\number\dimexpr 1#1\relax\relax}
% Answer to the question
\newwrite\file
\immediate\openout\file=snippet-list.txt
\g@addto@macro\pr@ship@end{%
  \immediate\write\file{%
    \convertto{cm}{\the\dimexpr\ht\pr@box+\dp\pr@box\relax}
    \convertto{cm}{\the\wd\pr@box}}}
\begin{document}
Test
\begin{equation*}
  x^2 = 2
\end{equation*}
Test
\begin{equation*}
  \int x^2\, dx = \frac{x^3}{2}
\end{equation*}
\closeout\file
\end{document}

我得到了snippet-list.txt一个

0.42175 12.12537
0.86165 12.12537

相关内容