縮放 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]

相關內容