發新話題
打印

Latex中文排版,有關「目錄」與「附錄」

Latex中文排版,有關「目錄」與「附錄」

\usepackage{titlesec}
\usepackage{titletoc}
\usepackage{CJKnumb}
\renewcommand{\contentsname}{目錄}
\renewcommand{\appendixname}{附錄}

\titlecontents{chapter}[0pt]{\vspace{.5\baselineskip}}
    {第\CJKnumber{\thecontentslabel}章\quad}{}
    {\hspace{.5em}\titlerule*[10pt]{$\cdot$}\contentspage}

\titleformat{\chapter}{\Huge}{第\,\CJKnumber{\thechapter}\,章}{1em}{}
\titleformat{\section}{\LARGE}{\thesection}{1em}{}
\titleformat{\subsection}{\Large}{\thesubsection}{1em}{}

\usepackage{etoolbox}
\apptocmd{\appendix} {

    \titleformat{\chapter}{\Huge}{\appendixname\thechapter}{1em}{} % 改章首

    \titlecontents{chapter}[0pt]{\vspace{.5\baselineskip}}
      {\appendixname\thecontentslabel}{}
      {\hspace{.5em}\titlerule*[10pt]{$\cdot$}\contentspage}

}{}{}

\tableofcontents

==============================================================================

我用上面這樣,在「目錄中附錄」的地方出現「第A零章」,它的上面還有一行類似亂碼的東西。希望出現「附錄 A」。

不知哪弄錯~~~

TOP

我解決了~

TOP

發新話題