Ich möchte, dass die Punkte auf der rechten Seite der Seite in Fettschrift in derselben Zeile wie die Frage stehen (siehe unten).
Das ist alles, was ich bisher habe. Ich bin mir nicht sicher, wie ich\renew
\begin{parts}
\part[2]
Expand $5x(3x^4-x^2)$
\fillwithdottedlines{2cm}
\end{parts}
Antwort1
Ich vermute, Sie verwendenexam
\documentclass{exam}
\begin{document}
\pointsinrightmargin
\pointformat{\textbf{\themarginpoints}}
\begin{parts}
\part[2]
Expand $5x(3x^4-x^2)$
\fillwithdottedlines{2cm}
\end{parts}
\end{document}
Antwort2
Ist es das, was Sie benötigen?
\documentclass{article}
\usepackage{enumerate}
\begin{document}
\begin{enumerate}[(a)]
\item Expand $5x(3x^4-x^2)$ \textbf{\dotfill} 1
\end{enumerate}
\end{document}
Antwort3
\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}