如下分享的这一样式非常简单,就是在章名和章内容之间加入一条竖线,并且随着内容的多寡进行变化,如下图所示:

chapter-demo1.png

实际用titlesec定制实现如下:

\documentclass[11pt,a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
%\usepackage{MinionPro}
\usepackage{newtxtext} %老版本TeX发行版可以注释掉该字体包。
\usepackage[nomarginpar]{geometry}

\usepackage{microtype}

\usepackage[svgnames, x11names]{xcolor}
\newcommand*\ftsize[1]{\fontsize{#1pt}{\numexpr 1.2*#1\relax pt}\selectfont}
\newcommand*\chapsubtitle[1]{{\LARGE #1}}
\newcommand\maketabular[1]{\begin{tabular}[b]{l}
  #1
\end{tabular}}
\usepackage{colortbl}
\usepackage[explicit,newlinetospace]{titlesec}%

\titleformat{\chapter}[block]{\usefont{T1}{phv}{m}{n}}{%
\begin{tabular}[b]{c}{ \large\color{lightgray} \textls*{CHAPTER}}\\[4ex] \fontsize{48}{48}\selectfont\thechapter\end{tabular}}{1em}{\bfseries\fontsize{24}{30}\selectfont
\begin{tabular}[b]{ !{\color{lightgray}\vline width1.2pt\ }l}
  #1
\end{tabular}}
\titlespacing{\chapter}{0pt}{2\baselineskip}{6\baselineskip}
\begin{document}%

\chapter[The History of the Seven Families of the Lake Pipple-Popple]
{The History of the\\Seven Families of the\\Lake Pipple-Popple\\
\chapsubtitle{A nonsense story}}%

  In former days -- that is to say, once upon a time, there lived in the Land of Gramblamble, Seven Families. They lived by the side of the great Lake Pipple-popple (one of the Seven Families, indeed, lived in the Lake), and on the outskirts of the City of Tosh, which, excepting when it was quite dark, they could see plainly. The names of all these places you have probably heard of, and you have only not to look in your Geography books to find out all about them.

  Now the Seven Families who lived on the borders of the great Lake Pipple-popple, were as follows in the next Chapter.

\tableofcontents

\end{document}

选自:https://tex.stackexchange.com/questions/163052/customizing-chapters-title  

点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部