¿Cómo etiquetar una lista enumerada?

¿Cómo etiquetar una lista enumerada?

Quiero etiquetar el valor de la marca de la pregunta directamente de la siguiente manera

ingrese la descripción de la imagen aquí Aqui esta mi MWE

\documentclass{article} 
\usepackage{amsthm,multicol,enumerate}

\begin{document} 
\begin{enumerate}
  \item \parbox{350pt}{A palindrome is a string whose reversal is identical to the string. How many bit strings of length $n$ are palindromes?}[1 pt]
  \item \parbox{350pt}{How many elements are in $A_1\cup A_2$ if there are $12$ elements in $A_1$, $18$ elements in $A_2$, and}[1pt each]
  \begin{multicols}{2}
  \begin{enumerate}
    \item $A_1\cap A_2=\emptyset$
    \item $|A_1\cap A_2|=2$
    \item $|A_1\cap A_2|=7$
    \item $A_1\subseteq A_2$
  \end{enumerate}
  \end{multicols}
  \item \parbox{300pt}{Find the value of $r$ if $\displaystyle \frac{P(10,r-1)}{P(11,r-2)}=\frac{30}{11}$.}[2 pts]
  \item \parbox{350pt}{Prove that the number of bit strings of length $n$ is the same as the number of subsets of the set of integers $\{1,2,\ldots n\}$.}[3 pts]
\end{enumerate} 
\end{document}

Respuesta1

Hay clases y paquetes dedicados para diseñar hojas de problemas y exámenes (verhttps://ctan.org/topic/exam), pero como truco rápido puedes colocar los puntos en el margen:

\documentclass{article} 
\usepackage{amsthm,multicol,enumerate,marginnote}

\begin{document} 
\begin{enumerate}
  \item A palindrome is a string whose reversal is identical to the string. How many bit strings of length $n$ are palindromes?\marginnote{[1 pt]}
  \item How many elements are in $A_1\cup A_2$ if there are $12$ elements in $A_1$, $18$ elements in $A_2$, and\marginnote{[1pt each]}[2.7\baselineskip]%
  \begin{multicols}{2}
  \begin{enumerate}
    \item $A_1\cap A_2=\emptyset$
    \item $|A_1\cap A_2|=2$
    \item $|A_1\cap A_2|=7$
    \item $A_1\subseteq A_2$
  \end{enumerate}    
  \end{multicols}
  \item Find the value of $r$ if $\displaystyle \frac{P(10,r-1)}{P(11,r-2)}=\frac{30}{11}$.\marginnote{[2 pts]}
  \item Prove that the number of bit strings of length $n$ is the same as the number of subsets of the set of integers $\{1,2,\ldots n\}$.\marginnote{[3 pts]}
\end{enumerate} 
\end{document}

ingrese la descripción de la imagen aquí

información relacionada