Gostaria de rotular as pontuações à direita da pergunta, mas não sei qual comando usar. A imagem a seguir é o resultado que desejo. Quero que o [5] apareça alinhado com a pergunta e à direita. Alguém pode me ajudar?
Responder1
Aqui está um exemplo de código usando exam
class.
\documentclass[10pt,addpoints,answers]{exam}
\begin{document}
\uplevel{\centering\bfseries\underline{PART -- A} \\Answer all questions}
\begin{questions}
\pointsinrightmargin
\pointsdroppedatright
\marksnotpoints
%\marginpointname{mark}
\pointpoints{mark}{marks}
\pointformat{\themarginpoints}
\bracketedpoints
\question[4]
Some question here you would like to ask your students.
\droppoints
\question[4]
Some question here you would like to ask your students.
\droppoints
\uplevel{\centering OR}
\question
What are
\begin{parts}
\part[5]
marks
\droppoints
\part[5]
good answers
\droppoints
\end{parts}
\end{questions}
\end{document}
Responder2
Sim. O código usando \text será o seguinte:
\documentclass{article} \usepackage{amsmath} \begin{document} \begin{equation*} \text{$3. Using ~{} the~{} substitution$ $x$ $$=$$ $2sec~\sl{t},$}\\ \text{~{}show that} \\ \text{~{}$\int_{2}^{4} \frac{\sqrt{x^2-4}}{x^4}dx$ $=$ $\frac{\sqrt{3}}{32}$ $\qquad \qquad$ $(5) $} \end{equation*} \end{document
Responder3
Você pode chegar à solução conforme mostrado abaixo
código:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}
3.~{}By~{} using~{} the~{} substitution~{} x &= 2sec~\sl{t},\\
show that \\
\int_{2}^{4} \frac{\sqrt{x^2-4}}{x^4}dx &= \frac{\sqrt{3}}{32} \qquad \qquad (5)
\end{align*}
\end{document}
saída: