
Tengo el siguiente documento latex y quiero incluirle una sección "Lista de Abreviaturas" sin numeración. Esto también debería aparecer en la tabla de contenido (debe verse similar a las secciones Lista de figuras y Lista de tablas). Hasta aquí todo bien, logré hacerlo con el \addcontentsline{toc}{section}{List of Abbreviations}
comando.
Sin embargo, todavía tengo un problema con \fancyhdr
la \leftmark
opción. Todavía aparece CONTENTS
en el encabezado de la List of Abbreviations
sección. ¿Cómo puedo arreglar esto?
\documentclass[11pt, bibliography=totoc, twoside]{article}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{natbib}
\usepackage[onehalfspacing]{setspace}
\usepackage{float}
\usepackage{acronym}
\usepackage{geometry}
\usepackage{hyperref}
\hypersetup{colorlinks,linkcolor=black,urlcolor=blue,citecolor=blue}
\usepackage{fancyhdr}
\fancyhf{}
\fancyhead[LE]{\rightmark}
\fancyhead[RO]{\leftmark}
\fancyfoot[C]{\thepage}
\setlength{\headheight}{14pt}
\usepackage{blindtext}
\title{dummy}
\author{my name}
\date{December 2019}
\begin{document}
\maketitle
\pagestyle{fancy}
\tableofcontents
\newpage
\pagenumbering{Roman}
\section*{List of Abbreviations}
\addcontentsline{toc}{section}{List of Abbreviations}
\begin{acronym}\itemsep0pt
\acro{ABC}{Alphabet}
\end{acronym}
\newpage
\listoffigures
\addcontentsline{toc}{section}{\listfigurename}
\newpage
\listoftables
\addcontentsline{toc}{section}{\listtablename}
\newpage
\pagenumbering{arabic}
\section{Introduction}
\blindtext
\newpage
\section{Section 2}
\blindtext[4]
\subsection{subsection 2.1}
\blindtext[4]
\subsection{subsection 2.2}
\blindtext[4]
\newpage
\section{Section 3}
\blindtext
\newpage
\end{document}
Respuesta1
\section*
no escribe en los encabezados, debes hacerlo a mano. Agregar
\markboth{List of Abbreviations}{List of Abbreviations}