I am searching for a way to start typing on the other side of the page because I want to give a value to some options like:
Option A \somecommand 1 point
Option B \somecommand 2 point
Option C \somecommand 3 point
Were the points align at the right side of the page, but the options on the left. Is there a way to do this?
\hfillis the command you are looking for:\documentclass{article} \begin{document} Option A \hfill 1 point \end{document}. – leandriis Jul 04 '20 at 12:04