答案1
使用包lettrine
。使用\section*
抑制部分编号。
\documentclass[oneside]{book}
\usepackage{lettrine}% <<<<<<<<<<<<<<<<<<<<<<
\usepackage{kantlipsum}% ONLY dummy text
\begin{document}
\chapter{The One}
\section*{First}
\lettrine[lines=3, lraise=0.1]{\thechapter}{} \kant[1]
\section*{Second} \kant[2]
\chapter{The Two}
\section*{First}
\lettrine[lines=3, lraise=0.1]{\thechapter}{} \kant[3]
\end{document}