I have been looking at the logicpuzzle package with my MikTex installation.
I have tried to use some of the examples from the documentation
puzzle.tex
\documentclass[fontsize=12pt]{article}
\usepackage{logicpuzzle}
\begin{document}
\begin{center}
\begin{ddsudoku}
\framepuzzle
\filldiagonals[orange!50]
\ddsudokucell{1}{5}{1}
\ddsudokucell{1}{4}{3}
\ddsudokucell{2}{3}{4}
\ddsudokucell{4}{1}{3}
\ddsudokucell{4}{3}{2}
\ddsudokucell{5}{4}{4}
\end{ddsudoku}
\hspace{1.5cm}
\begin{ddsudoku}
\framepuzzle
\filldiagonals[orange!50]
\setrow{5}{1,3,4,5,2}
\setrow{4}{3,2,5,1,4}
\setrow{3}{5,4,3,2,1}
\setrow{2}{2,5,1,4,3}
\setrow{1}{4,1,2,3,5}
\end{ddsudoku}
\end{center}
\end{document}
However, when I try to build a PDF from this source, I get the following error:
puzzle.tex:7: LaTeX Error: Environment ddsudoku undefined.
When I compiled my source, I was asked to install the missing packages and confirmed those, so they should be available.
Am I missing anything else in my preamble that is required for this package to work? I have tried using other puzzle examples than ddsudoku but they cause the same error (undefined environment).
nonstopmode(which skips over errors)? – Marijn Jun 04 '19 at 15:08puzzle.tex:7: LaTeX Error: Environment ddsudoku undefined.After that, there are a number of
– Urs Beeli Jun 04 '19 at 15:30Undefined control sequenceentries, but I suspect these are a consequence of the commands inside the ddsudoku environment...