ToC, LoF, LoT com o mesmo estilo do estilo do capítulo

ToC, LoF, LoT com o mesmo estilo do estilo do capítulo

Adicionei ToC, LoF e LoT em um .texarquivo cujo estilo de capítulo é Glenn. O problema é que ToC, LoF e LoT não adaptam o estilo desejado, enquanto a bibliografia sim. eu tentei

%\addtocontents{toc}{\protect\thispagestyle{fancy}}

mas não funcionou. O código que estou usando é

\documentclass[12pt,a4paper]{book}
\usepackage[english,greek]{babel}
\usepackage[iso-8859-7]{inputenc}
\usepackage{kerkis}
\usepackage[pdftex]{graphicx}
%Options: Sonny, Lenny, Glenn, Conny, Rejne, Bjarne, Bjornstrup
\usepackage[Glenn]{fncychap}
\usepackage{fancybox}
\usepackage{fancyhdr}
\usepackage{subfiles}

%\usepackage[nottoc,numbib]{tocbibind}
\usepackage{fancyhdr}
\usepackage{tocloft}
\renewcommand{\cftsecleader}{\cftdotfill{\cftdotsep}}

\usepackage{color}
%\usepackage[usenames,dvipsnames]{color}
\definecolor{Darkgreen}{rgb}{0,0.4,0}
\definecolor{Darkblue}{rgb}{0,0,0.4}

\pagestyle{fancy}
\fancyhead{}
\fancyhf{} % delete current setting for header and footer
\fancyhead[LE,RO]{\bfseries\thepage}
\fancyhead[LO]{\rightmark}
\fancyhead[RE]{\leftmark}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt}
\fancypagestyle{plain}{%
\fancyhead{} % get rid of headers on plain pages
\renewcommand{\headrulewidth}{0pt} % and the line}

\parskip 3mm
\footskip = 15mm
%```````````````````````````````````````````````````````````

%```````````````````````````````````````````````````````````
\begin{document}

%~~~~~~~~~~~~~~~~~~~~~~~Front-Page~~~~~~~~~~~~~~~~~~~~~~~~~~
\begin{titlepage}
TitlePage
\end{titlepage}

\pagenumbering{roman}
\textcolor{Darkblue}{\tableofcontents}
%\addtocontents{toc}{\protect\thispagestyle{fancy}}
\newpage
\addcontentsline{toc}{chapter}{Κατάλογος Σχημάτων}
\listoffigures
%\addtocontents{lof}{\protect\thispagestyle{fancy}}
\newpage
\addcontentsline{toc}{chapter}{Κατάλογος Πινάκων}
\listoftables
%\addtocontents{lot}{\protect\thispagestyle{fancy}}
\newpage

\subfile{abstractGR.tex}

\end{document}

Alguma ideia? Agradeço antecipadamente!

O subarquivo é apenas um arquivo de teste ...

\documentclass[main.tex]{subfiles}
\begin{document}
\textcolor{Darkblue}{\chapter{Intro}}
    This is just a test subfile
\end{document}

Responder1

Carregar tocloftcom a titlesopção (ver página 7 do manual para detalhes) é um bom começo. Como também parece haver uma incompatibilidade entre a \tableofcontentsdefinição das classes padrão e fncychap, utilizo um \contentsnamecapítulo não numerado mais um ToC "vazio".

\documentclass{book}

\usepackage[Glenn]{fncychap}

\usepackage[titles]{tocloft}

\makeatletter
\newcommand*{\tocwithouttitle}{\@starttoc{toc}}
\makeatother

\begin{document}

\chapter*{\contentsname}
\markboth{\MakeUppercase{\contentsname}}{\MakeUppercase{\contentsname}}
\tocwithouttitle

\chapter{foo}

Some text.

\begin{thebibliography}{9}
\bibitem{A01} A fake bibitem.
\end{thebibliography}

\end{document}

insira a descrição da imagem aqui

informação relacionada