如何調整剪貼簿中章前圖形、章節標題和節標題的垂直位置?

如何調整剪貼簿中章前圖形、章節標題和節標題的垂直位置?

我試圖在位於頁面頂部的章節標題、章節標題和節標題之前的圖形中創建相等的垂直間距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}

相關內容