增加 \chapter{Title} 水平边距

增加 \chapter{Title} 水平边距

我正在写论文,论文要求我将章节标题写成倒金字塔形。由于我使用的格式有特定的边距,而且标题中有特定的单词,所以我无法做到这一点。我怎样才能强制将一个章节标题的边距仅稍微加宽一点?

这是我的标题:

\chapter{Effects of Irradiance and Ambient Temperature on a Decision-Making\\Tool for Rooftop PV Array Sizing\\ for Commercial Buildings}

答案1

使用以下方式将标题设置在居中框内\makebox[\linewidth]并使用以下方式堆叠它tabular

在此处输入图片描述

\documentclass{report}

\usepackage{geometry} % Just for this example
\geometry{
  paper = a3paper,
  landscape,
  showframe
}

\begin{document}

\chapter[ToC title]
  {\makebox[\linewidth]{\begin{tabular}{ c }
    Effects of Irradiance and Ambient Temperature on a Decision-Making \\
              Tool for Rooftop PV Array Sizing                         \\
                 for Commercial Buildings
    \end{tabular}}
  }

\end{document}

相关内容