маркировка баллов справа от вопроса

маркировка баллов справа от вопроса

Я хотел бы пометить баллы справа от вопроса, но не знаю, какую команду использовать. На следующем изображении показан результат, который мне нужен. Я хочу, чтобы [5] отображалось в соответствии с вопросом и справа. Может ли кто-нибудь мне помочь?

введите описание изображения здесь

решение1

Вот пример кода с использованием examкласса.

\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}

введите описание изображения здесь

решение2

Да. Код с использованием \text будет следующим:

\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

метка1

решение3

Вы можете прийти к решению, как показано ниже.

код:

\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}

выход: этикетка

Связанный контент