我正在尝试在页面顶部章节标题、章节标题和节标题之前的图形中创建相等的垂直间距。scrbook
我尝试使用内置的 koma 命令,但没有得到预期的结果(或者我没有正确使用它们)。我该如何对章节和节标题进行垂直调整,使它们看起来更平衡?
平均能量损失
\documentclass[10pt]{scrbook}
\usepackage{geometry}
\geometry{paperheight=150mm,paperwidth=150mm, textwidth=75mm, textheight=100mm, top=20mm, bottom=20mm, marginparwidth=38mm, headsep=8mm, left=10mm, right=55mm, marginparsep=7mm, footskip=10mm}
\usepackage{tikz}
\RedeclareSectionCommand[beforeskip=2.75cm]{chapter}
\RedeclareSectionCommand[afterskip=1cm]{chapter}
\RedeclareSectionCommand[beforeskip=0.1\baselineskip,afterskip=0.25\baselineskip]{section}
\begin{document}
\chapter{first lesson}
\label{ch-01}
\begin{tikzpicture}[remember picture,overlay,shift=(current page.north west)]
\begin{scope}[x={(current page.north east)},y={(current page.south west)}]
\node [overlay,remember picture] at (0.5,0.2) {\includegraphics[width=1.2\textwidth]{fig-ch-01-head.pdf}};
\end{scope}
\end{tikzpicture}
\section{first section}
\end{document}