我设法在文档中间更改了部分格式。但是,在目录中,格式会重置。我是 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}