0

I want to make some kind of variant of the exam on A4 sheet. So I have a question, how to make custom numbering of assignments like on this photo? If it is possible, it would be desirable that this numbering could be called by a custom command. I need the easiest way possible

enter image description here

1 Answer 1

0

You can simply override the \questionlabel as follows:

\renewcommand{\questionlabel}{\fbox{\thequestion}}

Here is a complete example:

\documentclass{exam}

\renewcommand{\questionlabel}{\fbox{\thequestion}}

\begin{document}

\begin{questions}
\question When in doubt, should one provide a minimal working example?
\question When in doubt, should one provide some minimal working example?
\end{questions}

\end{document}

If you want, you can also control the width of the box with following override instead:

\renewcommand{\questionlabel}{\framebox[1cm]{\thequestion}}
4
  • Uh, hold on. I need the text to be left-aligned while moving the line, but not exceeding the task number. Here is an example. I'm sorry it's in Russian.
    – tidal wave
    Commented Jun 1 at 8:43
  • Try \question First line is in Russian\\ $\log_7 (1-x) = \log_7 5$. or \question First line is in Russian\\[0.5\baselineskip] $\log_7 (1-x) = \log_7 5$.
    – codeR
    Commented Jun 1 at 12:47
  • Unfortunately neither of these worked out the way I wanted, but I don't want to bother you anymore. Thanks for the numbering anyway.
    – tidal wave
    Commented Jun 1 at 13:30
  • You are welcome. Maybe you can post a separate question, possibly with an MWE.
    – codeR
    Commented Jun 1 at 13:38

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .