I'm using Texstudio with MiKTeX. I've got a simpel Question. Do anybody know how I put the numbering at the end of the titel instead of the front? --> (Word 1) instead of (1 Word)
Cheers,
Frithjof


NEW: TikZ book now 40% off at Amazon.com for a short time.
\sectionlinesformat
, e.g.,
\documentclass{scrartcl} \usepackage{blindtext} \makeatletter \renewcommand*{\sectionlinesformat}[4]{% \ifstr{#1}{section}{% \hskip #2#4#3 }{% \@hangfrom{\hskip #2#3}{#4}% }% } \makeatother \renewcommand*{\sectionformat}{\nobreakspace\thesection\autodot} \begin{document} \blinddocument \end{document}
\sectionformat
is to remove the space after the number and put it in front of the number.NEW: TikZ book now 40% off at Amazon.com for a short time.