セクション実行前の余白に箇条書き

セクション実行前の余白に箇条書き

KOMA-Script クラスを使用しています。

セクションのタイトルには、次のオプションを使用します。

\RedeclareSectionCommand[runin=on]{セクション}

完璧に動作します。しかし、セクション タイトルの前に箇条書き ( を入れることはできますか? 理想的には余白に置きます。

答え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}

ここに画像の説明を入力してください

関連情報