目录和章节格式

目录和章节格式

我设法在文档中间更改了部分格式。但是,在目录中,格式会重置。我是 Latex 的新手,所以我不完全理解这个\titleformat选项。我希望它显示“Anexo A”,但在目录中它显示“A Anexo”。提前致谢。

\documentclass[12pt]{article}  
\usepackage[explicit]{titlesec}
\usepackage{blindtext}
\begin{document}
    \tableofcontents
    \section{Introdução}
    \blindtext

    \setcounter{section}{0}
    \renewcommand{\thesection}{\Alph{section}} 
    \titleformat{\section}{\normalfont\Large\bfseries}{}{0em}{#1\ \thesection}
    \section{Anexo}
    \blindtext
\end{document}

在此处输入图片描述

答案1

您只需切换#1和即可\thesection#1是参数(即章节标题),而是计数器\thesection的值section

\documentclass[12pt]{article}  
\usepackage[explicit]{titlesec}
\usepackage{blindtext}
\begin{document}
    \tableofcontents
    \section{Introdução}
    \blindtext

    \setcounter{section}{0}
    \renewcommand{\thesection}{\Alph{section}} 
    \titleformat{\section}{\normalfont\Large\bfseries}{}{0em}{\thesection\ #1}

    \section{Anexo}
    \blindtext
\end{document}

相关内容