缩放 PDF 页面以适应逻辑谜题

缩放 PDF 页面以适应逻辑谜题

我正在尝试使用该包创建一个大型逻辑拼图logicpuzzle。我希望​​生成的 PDF 页面适合整个逻辑拼图。我尝试使用standalone文档类,但拼图在 PDF 中被截断了。

以下是我迄今为止尝试过的一个例子:

\documentclass{standalone}
\usepackage[german]{babel}
\usepackage{logicpuzzle}

\begin{document}
  \begin{fourwinds}[rows=50,columns=50,scale=0.5]
    \framepuzzle
    \fourwindscell{1}{2}{2}{}
    \fourwindscell{40}{40}{2}{}
  \end{fourwinds}
\end{document}

varwidth我也尝试按照说明使用该包这里,但它不起作用。

答案1

拼图有一个width选项fourwinds需要正确设置:

\begin{fourwinds}[rows=50,columns=50,width=750px,scale=0.5]

相关内容