如何精确设置标题行距

如何精确设置标题行距

背景:我想设计一个自己的论文类文件,像Word的样式和Word的标题一样,那么它有以下要求:

  • 标题chapter,fontsize= 16bp,weight= \bfseries,linespacing=singlespace

  • 对于section标题,fontsize= 14bp,alignment= raggedright,linespacing=singlespace

  • 对于subsection标题,fontsize= 12bp,alignment= raggedright,linespacing=singlespace

其余部分有 linespace=22bp和 fontsize=12bp

这是我的MWE,ctexbook是中文文件,就照着做吧\documentclass[12pt,a4paper]{book},我知道title包可以做到,请问该如何设置?

但是我使用这个ctex

 \ctexset{chapter/name={第,章},
chapter/format={\bfseries \heiti \centering \zihao{3}},
  chapter/beforeskip={32bp},  
  chapter/afterskip={16bp},
  chapter/fixskip = true,
  }
  \ctexset{section={
    format={\raggedright \bfseries \heiti \zihao{4}},
    beforeskip=28bp,
    afterskip=14bp,
    fixskip = true,
    }
}
\ctexset{subsection={
   format={\bfseries \heiti \raggedright \zihao{-4}},
   beforeskip=24bp,
   afterskip=12bp,
   fixskip = true,
    }
\ctexset{subsubsection={
      format={\raggedright\zihao{-4}},
    beforeskip=24bp,
     afterskip=12bp,
    fixskip = true,
    }
}

相关内容