문제 오른쪽에 점수 표시

문제 오른쪽에 점수 표시

질문 오른쪽에 점수를 표시하고 싶지만 어떤 명령을 사용해야 할지 모르겠습니다. 다음 이미지는 제가 원하는 결과입니다. [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}

산출: 상표

관련 정보