My objective is to create Multiple Choice Answer Sheet. I have managed to create the circled letter environment using tikz but my question is that if one can create a macro that will repeat the itemization input \item abcdtest as it is the same by looking like \mcquestion{n} where n will be the number of MC items that you want.
In short I want to replace:
\begin{enumerate}
\item \abcdtest
\item \abcdtest
\item \abcdtest
\item \abcdtest
\item \abcdtest
\item \abcdtest
\item \abcdtest
\item \abcdtest
\end{enumerate}
with \mcquestion{8} for example.
Here is the sample code I have so far. Any insight into the matter will help.
\documentclass{article}
\usepackage{amsmath,amssymb}
\usepackage{tikz}
\newcommand\abcdtest{%
\noindent\lower1.5ex\hbox{%
\begin{tikzpicture}
\foreach \i in {1,...,4}
{
\path (\i cm,0cm) coordinate (C\i);
\draw (C\i) circle (0.35cm);
}
\foreach \j/\k in {1/A,2/B,3/C,4/D}
{
\draw (\j cm,0cm) node {\k};
}
\end{tikzpicture}}}
\begin{document}
%-----------------------------------------------------------------
\begin{enumerate}
\item \abcdtest
\item \abcdtest
\end{enumerate}
\end{document}
