答案1
正如评论中所建议的,您可以使用该titlesec
包;例如,如下所示:
\documentclass[12pt]{book}
\usepackage{titlesec,lipsum}
\titleformat{\chapter}{\bfseries\huge}{}{0em}{}
\titlespacing*{\chapter}{0pt}{-10pt}{15pt}
% Spacing between section and text
% Syntax: \titlespacing*{<command>}{<left>}{<before-sep>}{<after-sep>}
\titlespacing*{\section}{0pt}{0pt}{.65cm}
\begin{document}
\chapter*{CHAPTER I}
\section*{The Section}
\lipsum[1]
\end{document}
生成结果:
当然,参数值是可以调整的。