独立和投影仪,预览和裁剪

独立和投影仪,预览和裁剪

跟进使用 tikz 中的 beamer 工具,无需创建幻灯片

standalone如果和beamervia选项的组合preview确实有效的话,效果会很好,但即使是这个简单的例子(来自独立手册)也只生成一页 PDF,而不是我期望的两页。

\documentclass[beamer,preview]{standalone}

\begin{document}

\begin{standaloneframe}[] 
\only<1>{ One }
\only<2>{ Two }
\end{standaloneframe}

\end{document}

如果没有预览,它会提供预期的两页,但当然不会被裁剪。

crop不是像其他问题所报告的那样preview产生结果。! Improper \prevdepth. \newpage ...everypar {}\fi \par \ifdim \prevdepth

如果能够可靠地工作的话,那就太好了。

答案1

您可以使用pdfcrop裁剪页面。手动运行

pdfcrop filename.pdf

编译后或者欺骗独立程序为您运行它(需要启用 shell-escape):

% !TeX program = txs:///arara
% arara: pdflatex: {synctex: on, interaction: nonstopmode, shell: yes}

\documentclass[beamer,convert={command=\unexpanded{{/usr/local/texlive/2023/bin/universal-darwin/pdfcrop\space \infile}}}]{standalone}

\begin{document}

\begin{standaloneframe}[] 
\only<1>{ One one }
\only<2>{ Two }
\end{standaloneframe}

\end{document}

相关内容