
私は章のスタイルがGlennであるファイルにToC、LoF、LoTを追加しました.tex
。問題は、ToC、LoF、LoTが希望のスタイルに適応しないのに対し、参考文献は適応することです。私は試しました
%\addtocontents{toc}{\protect\thispagestyle{fancy}}
しかし、うまくいきませんでした。私が使用しているコードは
\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}
何かアイデアはありますか?よろしくお願いします!
サブファイルは単なるテストファイルです...
\documentclass[main.tex]{subfiles}
\begin{document}
\textcolor{Darkblue}{\chapter{Intro}}
This is just a test subfile
\end{document}
答え1
tocloft
オプションを使用してロードする(詳細はマニュアルの 7 ページを参照) ことは良いスタートです。標準クラスの定義titles
と の間にも互換性がないようなので、番号なしの章と「裸の」目次を使用します。\tableofcontents
fncychap
\contentsname
\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}