问题右侧的分数标签

问题右侧的分数标签

我想在问题的右侧标注分数,但我不知道该使用什么命令。下图是我想要的结果。我希望 [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}

输出: 标签

相关内容