我如何修改 LOT 以使其看起来像我的 TOC [页面样式和标题位置](参见示例)

我如何修改 LOT 以使其看起来像我的 TOC [页面样式和标题位置](参见示例)

所以我有这个问题,我的 LOT 不想像我的 TOC。有人能帮我吗?这是我的 LOT 和 TOC 的图片:在此处输入图片描述

这是我的代码:

\documentclass[11pt,a4paper,table]{report}
\usepackage[spanish,es-tabla,english]{babel}
\addto\shorthandsspanish{\spanishdeactivate{~<>}}
\usepackage[utf8]{inputenc}
\usepackage{microtype}
\usepackage[T1]{fontenc}
\usepackage{lmodern}

\newcommand{\theAssignment}{ FedeCopters. }

\usepackage{booktabs} 
\usepackage[labelfont=bf]{caption}
\usepackage{subfigure}
\usepackage[margin=25mm,inner=30mm]{geometry}


\usepackage{fancyhdr}         
    \pagestyle{fancy}            
\renewcommand{\headrulewidth}{0.5pt}        
\renewcommand{\footrulewidth}{0.5pt}
\lhead{Universidad Técnica Federico Santa María}\cfoot{}
\rfoot{\textbf{\thepage}}
\lfoot{Seguridad Operacional - \theAssignment}\chead{}
\rhead{Academia de Ciencias Aeronáuticas}

\usepackage[
        colorlinks=true,
        linkcolor=blue,
        urlcolor=blue]{hyperref}

%TOC APPEARANCE
\usepackage[nottoc,notlof,notlot]{tocbibind}
\makeatletter
\def\tableofcontents{%
 \newpage
 \centerline{\huge\scshape Índice} 
 \vspace*{0.3in}
 \@mkboth{CONTENTS}{CONTENTS}
 \@starttoc{toc}
}
\setcounter{tocdepth}{3}        
\setcounter{secnumdepth}{3} 

\usepackage{titlesec}
\usepackage[dotinlabels]{titletoc}      
\usepackage{secdot}

\usepackage{tabularx}

%--
\begin{document}
\selectlanguage{spanish}
%--
\tableofcontents
\clearpage

\listoftables
\clearpage

\section*{Sobre FedeCopters}
\addcontentsline{toc}{chapter}{Sobre FedeCopters}
blah.. blah..
\subsection*{Definición de la empresa}
\addcontentsline{toc}{subsection}{Definición de la empresa}
blah....
.
.
.
\section*{Organigrama}
\addcontentsline{toc}{chapter}{Organigrama}
...
\section*{Mapa de Procesos}
\addcontentsline{toc}{chapter}{Mapa de procesos}
    \begin{table}[!h]
        \begin{tabular}{cc}
            \toprule
             a&b\\
            \bottomrule
        \end{tabular}
        \caption{Procesos más relevantes de FedeCopters}
    \end{table}

\chapter{Procesos de FedeCopters.}
...
\chapter{Peligros y evaluación del riesgo asociado a las actividades...}

%Table example..
\begin{table}[!h]
     \begin{tabularx}{\columnwidth}{XX}
       \toprule
       a&b\\
       \midrule
       c&d\\
       \bottomrule
     \end{tabularx}
\caption[Peligros y riesgos del proceso: Evaluación de los requisitos del cliente]{blaaaah...}
\end{table}

.
\end{document}

我希望 LOT 页面有页眉和页脚...(我尝试使用 \thispagestyle{fancy},但没有成功)。我还希望 LOT(目录索引)的标题与 TOC(目录)的标题一样。就这些!

我在 Windows 7 上使用 TexMaker。

如果你们能帮助我,我将不胜感激。提前致谢!

答案1

您已开始加载titlesec,因此最好使用它的功能来完成这项工作。但是,按照您的方式,这是一种可能性:

%TOC APPEARANCE
\usepackage[nottoc,notlof,notlot]{tocbibind}
\makeatletter
\def\tableofcontents{%
 \newpage
 {\centering\huge\scshape Índice\par}
 \vspace*{0.3in}
 \@mkboth{CONTENTS}{CONTENTS}
 \@starttoc{toc}
}
%% LOT appearence
\def\listoftables{%
 \newpage
 {\centering\huge\scshape Índice de tablas\par}
 \vspace*{0.3in}
 \@mkboth{TABLES}{TABLES}
 \@starttoc{lot}
}
\makeatother

在此处输入图片描述

相关内容