
Agregué ToC, LoF y LoT en un .tex
archivo en el que el estilo del capítulo es Glenn. El problema es que ToC, LoF y LoT no adaptan el estilo deseado, mientras que la bibliografía sí lo hace. He intentado
%\addtocontents{toc}{\protect\thispagestyle{fancy}}
pero no funcionó. El código que estoy usando es
\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}
¿Algunas ideas? ¡Gracias de antemano!
El subarchivo es sólo un archivo de prueba...
\documentclass[main.tex]{subfiles}
\begin{document}
\textcolor{Darkblue}{\chapter{Intro}}
This is just a test subfile
\end{document}
Respuesta1
Cargar tocloft
con la titles
opción (consulte la página 7 del manual para obtener más detalles) es un buen comienzo. Como también parece haber una incompatibilidad entre la \tableofcontents
definición de las clases estándar y fncychap
, utilizo un \contentsname
capítulo sin numerar más una ToC "simple".
\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}