I'm using KOMA-Script class.
For section titles I use the option:
\RedeclareSectionCommand[runin=on]{section}
It works perfect. But Can I put a bullet ( before a section title? Ideally, it would be on the margin.
I'm using KOMA-Script class.
For section titles I use the option:
\RedeclareSectionCommand[runin=on]{section}
It works perfect. But Can I put a bullet ( before a section title? Ideally, it would be on the margin.
Based on How to print the heading numbers in the left margin:
\documentclass{scrartcl}
\usepackage{lipsum}
\RedeclareSectionCommand[runin=on]{section}
\renewcommand*{\sectionformat}{\makebox[0pt][r]{\textbullet\hskip\marginparsep}\thesection\autodot\enskip}
\begin{document}
\section{Test}
\lipsum
\end{document}