我希望将页面右侧的要点以粗体形式显示在与下面问题相同的行上。
这是我目前所拥有的全部。不知道如何\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}