I wish to adding bubble answer sheet in the following MWE:
\documentclass[twoside,a4paper,cleardoublepage=empty,14pt]{book}
\usepackage{exsheets}
\SetupExSheets[question]{type=exam}
\SetupExSheets{counter-format=ch.qu[1]}
\RenewQuSolPair{question}[headings-format=\large\bfseries,name=Problem]{solution}
\usepackage{enumerate,tikz}
\newcommand\squared[1]{\tikz[baseline=(char.base)]{
\node[shape=rectangle,draw,inner sep=3pt] (char) {#1};}}
\usepackage{enumitem}
\usepackage{multicol}
\setlist[enumerate]{label=\protect\squared{\arabic}}
\begin{document}
\chapter{Analysis of Algorithms}
\begin{question}
Which of the following answers is correct for the given recurrence relation $T(n)=T(n-1)+n$?
\begin{enumerate}
\item $O(n^2)$
\item $O(n^3)$
\item $O(n^4)$
\item $O(n\log n)$
\end{enumerate}
\end{question}
\begin{solution}
this is a solution
\end{solution}
\chapter{answer Sheet}
\end{document}
In more detail, I am writing a multiple choice book. I wish to add a bubble answer sheet to chapter Answer Sheet so that for each question mark correct choice like below image:


exsheetspackage is outdated. Are you ure you want to use it? Maybe give its successorxsima try. Also, you should probably not load theenumeratepackage which is an outdated predecessor ofenumitem. – Jasper Habicht Nov 07 '23 at 12:06