2

I would like to force a linebreak, but at the same time I would like to force LaTeX to print at the and of the line, so I would like no space at the and of the line!

1 Answers1

2

You can use \hfill

\documentclass{scrartcl}
\usepackage{showframe}% to s the page layout
\usepackage{blindtext}% dummy text
\begin{document}
\section{Test}
some text\hfill other text\hfill text\\
\blindtext
\end{document}

enter image description here

esdd
  • 85,675