
我正在使用 KOMA-Script 類別。
對於章節標題,我使用以下選項:
\RedeclareSectionCommand[runin=on]{section}
它工作完美。但是我可以在章節標題之前加上項目符號 ( 嗎?理想情況下,它應該位於頁邊空白處。
答案1
基於如何在左邊距列印標題編號:
\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}