
パッケージを使用して大きなロジック パズルを作成しようとしています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]