我想將頁面右側的點以粗體顯示在與問題相同的行上,如下所示。
這就是我到目前為止所擁有的一切。不知道如何做\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}