我需要这个标题以两行居中显示……使用回忆录

我需要这个标题以两行居中显示……使用回忆录

我需要将章节标题放在两行中间....有什么办法吗?

这是我的自定义 MWE:

在此处输入图片描述

\documentclass[14pt,twoside,a5paper,extrafontsizes]{memoir} %Classe estilo memoir
    \usepackage[brazilian]{babel} %Traduz doc para português do Brasil
    \usepackage[utf8]{inputenc} %Reconhece acentuação
    \usepackage{indentfirst} %Define identação em todo primeiro parágrafo
    \usepackage{garamondx} %Define a nova fonte garamond
    \usepackage{lipsum}
    \usepackage{tabularx}

    \chapterstyle{thatcher}

    \begin{document} %====================================================================
        \renewcommand{\printchaptername}{\centering{\chapnumfont\HUGE\thechapter}}
        \renewcommand{\afterchapternum}{\par\bigbreak}

    \chapter{APRESENTAÇÃO A 18 EDIÇÃO}

    \end{document}

答案1

使用\\,但你需要\protect它。

\documentclass[14pt,twoside,a5paper,extrafontsizes]{memoir} %Classe estilo memoir
\usepackage[brazilian]{babel} %Traduz doc para português do Brasil
\usepackage[utf8]{inputenc} %Reconhece acentuação
\usepackage{indentfirst} %Define identação em todo primeiro parágrafo
\usepackage{garamondx} %Define a nova fonte garamond
\usepackage{lipsum}
\usepackage{tabularx}

\chapterstyle{thatcher}

\begin{document}
\renewcommand{\printchaptername}{\centering\chapnumfont\HUGE\thechapter}
\renewcommand{\afterchapternum}{\par\bigbreak}

\tableofcontents*

\chapter
[Apresentação a 18 edição] % toc entry
[APRESENTAÇÃO]             % header
{APRESENTAÇÃO \protect\\ A 18 EDIÇÃO}

\lipsum

\end{document}

在此处输入图片描述

添加

如果你希望这个章节标题不大写,请这样做

\protected\def\apresentacao{Apresentação \protect\\ a 18 edição}
\chapter
[Apresentação a 18 edição]
[APRESENTAÇÃO]
{\apresentacao}

相关内容