답변1
댓글에서 언급했듯이 titlesec
갈 길입니다. 하위 섹션 번호와 제목을 유지하려면 다음을 시도하십시오.
\documentclass{article}
\usepackage{graphicx}
\usepackage{titlesec}
\titleformat{\subsection}
{\normalfont\large\bfseries}{\includegraphics{app.png}\hspace{0.5em}\thesubsection}{0.5em}{}
\begin{document}
\section{First section}
\subsection{First Subsection}
\end{document}
app.png
앱 이미지는 어디에 있습니까(이 이미지가 너무 크면 의 width=
또는 scale=
옵션을 사용하십시오 \includegraphics
):
제목에서 하위 섹션 번호를 제거하려면 명령 \hspace{0.5em}\thesubsection
에서 제거 \titleformat
하고, 하위 섹션 제목도 제거하려면 다음 explicit
옵션을 사용하여 titlesec 패키지를 로드합니다.
\usepackage{titlesec}
\titleformat{\subsection}
{\normalfont\large\bfseries}{\includegraphics{app.png}}{0.5em}{}
및/또는
\usepackage[explicit]{titlesec} % No subsection title unless explicitly included in \titleformat command
\titleformat{\subsection}
{\normalfont\large\bfseries}{\includegraphics{app.png}\hspace{0.5em}\thesubsection}{0.5em}{}
비교:
및/또는
물론 \section
명령에 대해서도 비슷한 작업을 수행할 수 있습니다.
추가(설명 참조): 고유한 하위 섹션(또는 섹션) 명령을 추가하여 다양한 하위 섹션에 대해 다른 이미지를 사용할 수 있습니다. 사용
\newcommand\mysubsection[3]{% #1: Image file (e.g. app.png), #2: Image scale, #3: Subsection title
\titleformat{\subsection}
{\normalfont\large\bfseries}{\includegraphics[scale=#2]{#1}\hspace{0.5em}\thesubsection}{0.5em}{}
\subsection{#3}
}
호출
\mysubsection{example-image-a}{0.4}{Subsection title}
(이전 예에 이어)