これはこのサイトでの最初の質問です。「Chapter」という単語をすべて大文字にして、章のタイトルの前に「:」を付けたいです。レポート ドキュメント クラスを使用しましたが、TOC のパッケージは \usepackage[toc,page]、\usepackage[nottoc,notlof,notlot]{tocbibind} のみです。これらが変更用かどうかはわかりません...私は単なる LaTeX ユーザーであり、論文を書くのはこれが初めてです。
\documentclass[12pt,a4paper]{report}
\usepackage{amsmath,amssymb,amsthm,amsfonts,mathrsfs}
\usepackage{graphicx,epsfig,subfig}
\usepackage{geometry}
\usepackage{setspace}
\usepackage{array}
\usepackage[toc,page]{appendix}
\usepackage[labelfont=bf]{caption}
\usepackage{xpatch}
\usepackage{fmtcount}
\renewcommand{\thechapter}{\NUMBERstring{chapter}}
\renewcommand{\thesection}{\arabic{chapter}.\arabic{section}}
\renewcommand{\thefigure}{\arabic{chapter}.\arabic{figure}}
\makeatletter
\input{fc-british.def}
\xpatchcmd{\@chapter}% <cmd>
{\numberline{\thechapter}}% <search>
{\@chapapp~\thechapter\quad}% <replace>
{}{}% <success><failure>
\makeatother
\newcolumntype{L}[1]{>
{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{C}[1]{>
{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{R}[1]{>
{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\usepackage{caption}
\usepackage[pagestyles]{titlesec}
\titleformat{\chapter}[display]
{\normalfont\LARGE\bfseries\centering}
{\centering\MakeUppercase{\chaptertitlename}\ \thechapter}{20pt}{\Large}
\titlespacing*{\chapter}
{0pt}{50pt}{40pt}
\geometry{verbose,a4paper,tmargin=30mm,bmargin=25mm,
lmargin=30mm,rmargin=25mm}
\renewcommand{\baselinestretch}{1.65}
\usepackage{fancyhdr}
\usepackage{psfrag}
\usepackage{array}
\usepackage{booktabs}
\usepackage{float}
\usepackage{caption}
\usepackage{multirow}
\usepackage[shortlabels]{enumitem}
\usepackage[monochrome]{xcolor}
\usepackage{pdflscape}
\usepackage[toc,page]{appendix}
\usepackage{titlesec}
\usepackage{amsmath}
\usepackage[nottoc,notlof,notlot]{tocbibind}
\renewcommand\bibname{References}
\makeatletter
\newcommand*{\rom}[1]{\expandafter\@slowromancap\romannumeral #1@}
\makeatother
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}
\newtheorem{theorem}{Theorem}
\newtheorem{acknowledgement}{Acknowledgement}
\newtheorem{algorithm}{Algorithm}
\newtheorem{axiom}{Axiom}
\newtheorem{case}{Case}
\newtheorem{claim}{Claim}
\newtheorem{conclusion}{Conclusion}
\newtheorem{condition}{Condition}
\newtheorem{conjecture}{Conjecture}
\newtheorem{corollary}{Corollary}
\newtheorem{criterion}{Criterion}
\newtheorem{definition}{Definition}
\newtheorem{example}{Example}
\newtheorem{exercise}{Exercise}
\newtheorem{lemma}{Lemma}
\newtheorem{notation}{Notation}
\newtheorem{problem}{Problem}
\newtheorem{proposition}{Proposition}
\newtheorem{remark}{Remark}
\newtheorem{solution}{Solution}
\newtheorem{summary}{Summary}
\numberwithin{equation}{chapter}
\numberwithin{theorem}{chapter}
\fancypagestyle{plain}{%
\fancyhf{} % clear all header and footer fields
\fancyfoot[C]{\bfseries\large\thepage} % except the center
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}}
\begin{document}
\addcontentsline{toc}{chapter}{Contents}
\tableofcontents
\chapter{General Introduction}\label{chapter:Intro}
\section{Introduction}
Composite steel-concrete construction
\end{document}
答え1
私はあなたのコードをより最小限の動作例に縮小することから始めました。もちろん実際の文書ではそんなことはしたくないでしょうが、すべきプリアンブルを整理して整理します。パッケージを複数回ロードし、場合によっては異なるオプションを使用して、競合するパッケージまたは他のパッケージに渡されたオプションと競合するパッケージをロードしています。たとえば、pagestyles
渡されたパッケージは、titlesec
そのパッケージのフッター/ヘッダーの類似パッケージをロードします。その類似パッケージは、ドキュメント レイアウトのその側面の制御をめぐって と競合しますfancyhdr
。どちらか一方、またはどちらも選択しないでください。ただし、両方ではありません。titlesec
このオプションなしでロードすると、エラーが発生しない順序に遭遇しない限り、潜在的な競合も発生します。
次に、\xpatch
コマンドを調整して、「Chapter」を「CHAPTER」に設定し、数字の後に終止符を打つようにしました。コロンを要求されたことは承知していますが、正直言って奇妙に見えます。ただし、この形式が本当に必要な場合 (または使用する必要がある場合) は、 を.
a に簡単に置き換えることができます:
。
\documentclass{report}
\usepackage[toc,page]{appendix}
\usepackage{xpatch}
\usepackage[british]{fmtcount}% set dialect in a standard way the package recommends
% \usepackage[pagestyles]{titlesec}% use of pagestyles conflicts with use of fancyhdr
\usepackage{titlesec}% use of pagestyles conflicts with use of fancyhdr
\usepackage{fancyhdr}
\usepackage[nottoc,notlof,notlot]{tocbibind}
\renewcommand{\thechapter}{\NUMBERstring{chapter}}
\renewcommand{\thesection}{\arabic{chapter}.\arabic{section}}
\makeatletter
\xpatchcmd{\@chapter}% <cmd>
{\numberline{\thechapter}}% <search>
{\MakeUppercase{\@chapapp}~\thechapter.\quad}% <replace>% <= \MakeUppercase for the capitalisation; added . for dot
{}{}% <success><failure>
\makeatother
\titleformat{\chapter}[display]
{\normalfont\LARGE\bfseries\centering}
{\centering\MakeUppercase{\chaptertitlename}\ \thechapter}{20pt}{\Large}
\titlespacing*{\chapter}
{0pt}{50pt}{40pt}
\setcounter{tocdepth}{5}
\fancypagestyle{plain}{%
\fancyhf{}% clear all header and footer fields
\fancyfoot[C]{\bfseries\large\thepage}% except the center
\renewcommand{\headrulewidth}{0pt}%
\renewcommand{\footrulewidth}{0pt}}
\begin{document}
\addcontentsline{toc}{chapter}{Contents}
\tableofcontents
\chapter{General Introduction}\label{chapter:Intro}
\section{Introduction}
Composite steel-concrete construction
\end{document}