答案1
對於該級別以下的所有其他部分命令,一個快速而骯髒的方法\section
是重新定義\@seccntformat
以忽略通常的命令\csname the#1\endcsname
並在其中插入另一個命令,但這應該是健壯的。
這基本上可以是任何東西,在範例中我展示了一個快速tikz
著色的球,但可以包含圖像並相應地縮放。
\documentclass{article}
\usepackage{graphicx}
\usepackage{tikz}
\DeclareRobustCommand{\picturetodisplay}{\includegraphics[scale=0.05]{ente}}
% Redefine it
\DeclareRobustCommand{\picturetodisplay}{\begin{tikzpicture}\shade[ball color=blue] circle (1ex);\end{tikzpicture}}
\makeatletter
\def\@seccntformat#1{\picturetodisplay\quad}
\makeatother
\begin{document}
\section{A nice section}
\section{Another nice section}
\section{Yet another nice section}
\end{document}
將「節號」移到頁邊距:
\documentclass{article}
\usepackage{showframe}
\usepackage{graphicx}
\usepackage{tikz}
\newcommand{\unquad}{\hskip-1em\relax}
\DeclareRobustCommand{\picturetodisplay}{\begin{tikzpicture}\shade[ball color=blue] circle (1ex);\end{tikzpicture}}
\makeatletter
\def\@seccntformat#1{\unquad\unquad\picturetodisplay\quad}
\makeatother
\begin{document}
\section{A nice section}
\section{Another nice section}
\DeclareRobustCommand{\picturetodisplay}{\includegraphics[scale=0.03]{ente}}
\section{Yet another nice section}
\end{document}