ページの右側のポイントを、下記の質問と同じ行に太字で表示したいと思います。
今のところはこれだけです。\renew
\begin{parts}
\part[2]
Expand $5x(3x^4-x^2)$
\fillwithdottedlines{2cm}
\end{parts}
答え1
使用していると思いますexam
\documentclass{exam}
\begin{document}
\pointsinrightmargin
\pointformat{\textbf{\themarginpoints}}
\begin{parts}
\part[2]
Expand $5x(3x^4-x^2)$
\fillwithdottedlines{2cm}
\end{parts}
\end{document}
答え2
これがあなたが必要としているものですか?
\documentclass{article}
\usepackage{enumerate}
\begin{document}
\begin{enumerate}[(a)]
\item Expand $5x(3x^4-x^2)$ \textbf{\dotfill} 1
\end{enumerate}
\end{document}
答え3
\documentclass{article}
\usepackage{amsmath}
\usepackage{dashrule}
\begin{document}
Expand $5x(3x^4-x^2)$ \\
\par
\hdashrule{15cm}{0.5pt}{0.5pt} \par \
\vspace{0.4cm}
\hdashrule{15cm}{0.5pt}{0.5pt} \par
\vspace{0.4cm}
\hdashrule{15cm}{0.5pt}{0.5pt} \par
\vspace{0.4cm}
\hdashrule{15cm}{0.5pt}{0.5pt} \par
\end{document}