I need to typeset Sudoku tables in LaTeX, and so far I have been able to do most of what I need to do using the logicpuzzle package. One of the few missing things is the ability to write hints inside cells, listing all the possible numbers which could go inside that cell.
Looking at the package documentation, I don't see an option to do this using the package alone, so I wonder if I should use a different package altogether, or if there is a way to extend logicpuzzle to make it display this instead.
So far, this is what I have:
\documentclass{scrreprt}
\usepackage[utf8]{inputenc}
\usepackage{logicpuzzle}
\begin{document}
\tableofcontents
\newpage
\chapter{Sudoku 1}
\begin{logicpuzzle}[rows=9,columns=9,color=orange!50,scale=1.5]
\framepuzzle
\framearea{black}{(1,7)--(4,7)--(4,10)--(1,10)}
\framearea{black}{(4,7)--(7,7)--(7,10)--(4,10)}
\framearea{black}{(7,7)--(10,7)--(10,10)--(7,10)}
\framearea{black}{(1,4)--(4,4)--(4,7)--(1,7)}
\framearea{black}{(4,4)--(7,4)--(7,7)--(7,4)}
\framearea{black}{(7,4)--(10,4)--(10,7)--(10,7)}
\framearea{black}{(1,1)--(1,4)--(4,4)--(4,1)}
\framearea{black}{(4,1)--(7,1)--(7,4)--(4,4)}
\setrow{9}{{},{},{3},{4},{},{5},{6},{},{}}
\setrow{8}{{7},{},{},{},{},{},{},{},{}}
\setrow{7}{{8},{},{},{},{},{},{},{},{}}
\setrow{6}{{9},{},{},{},{},{},{},{},{7}}
\setrow{5}{{},{},{},{},{},{},{},{},{8}}
\setrow{4}{{},{},{},{},{},{},{},{},{9}}
\setrow{3}{{},{},{},{},{},{},{},{},{}}
\setrow{2}{{},{},{},{},{},{},{},{},{}}
\setrow{1}{{},{},{},{},{},{},{},{},{}}
\fillcell{1}{9}
\fillcell{9}{9}
\end{logicpuzzle}
\end{document}
This is the resulting Sudoku:
Is there any way to typeset number hints inside a Sudoku cell using the logicpuzzle package?
Ideally, they would look similar to the answer to this question:



