为什么附录看起来像附录 A?

为什么附录看起来像附录 A?

我想创建这样的文档

Dedication  
Introduction  
Chapter 1  
      Section 1.1  
      Section 1.2 
            SubSection 1.2.1  
                  SubSubsection 1.2.1.1
Chapter 2  
      Section 2.2  
      Section 2.2 
Chapter 3  
      Section SecThreeDotOne
Outro
Special Thanks
Chapter Extra (Appendix)
Bibliography

请参阅此目录:

Introduction  
1. Cap 1  
      Sec 1.1  
      Sec 1.2 
            SubSec 1.2.1  
                  SubSubSec 1.2.1.1
2. Cap 2  
      Sec 2.2  
      Sec 2.2 
3. Cap 3  
      Sec SecThreeDotOne
Outro
Extra
Bibliography

我尝试过这个:

\begin{document}
    \tableofcontents
    \chapter*{Intro}  
        bla bla bla
    \chapter{Cap 1}
        \section{Sec 1.1}
            bla bla bla
        \section{Sec 1.2}
            bla bla bla
            \subsection{SubSec 1.2.1}
                 bla bla bla
                 \subsubsection{SubSubSec 1.2.1.1}
                 bla bla bla
    \chapter{Cap 2}
        \section{Sec 2.1}
            bla bla bla
        \section{Sec 2.2}
            \ref{sec:extra}
    \chapter{Cap 3}
        \section{SecThreeDotOne}
            bla bla bla
    \chapter*{Outro}
    \addcontentsline{toc}{chapter}{Outro}
        bla bla bla
    \appendix
    \chapter*{Extra}
    \addcontentsline{toc}{chapter}{Extra}
    \label{sec:extra}
        bla bla bla
    \bibliography
\end{document}

为什么附录看起来像附录 A:额外(我只想要额外这个词)?

答案1

查看用于写书的软件包或类(而不是最新文章)。我偏爱回忆录类,它有自己的详细文档(在 CTAN 上查看)。还有其他的。

设置封面(和其他前言)主要取决于个人喜好。与 LaTeX 不同,这里不必担心文本的确切位置、可能的图像、标题的大小/字体等细节,... 以我的经验来看,这里没有太多帮助。一定要学会如何使用(相对)定位 ($\vspace$、$\fill$ 及其同类)。

例如,要设置页面样式、章节标题等,回忆录有很多旋钮可以使用(并且您甚至可以在包 MemoirChapterStyles 中找到一本仅包含示例的书)。

答案2

使用该memoir课程可以解决您的许多问题,但您一次只能问一个问题。

% doclayoutprob.tex  SE 567590
\documentclass{memoir} % provides headers and footers, but you can define your own
\usepackage{lipsum}  % to provide some text

\setsecnumdepth{subsubsection} % number everything down to subsubsections

\begin{document}
\frontmatter
%% A title page
\title{MEANDERINGS}
\author{T. H. E. River \and
        A. Wanderer\thanks{Supported by a grant from the R. Ambler's Fund}\\
        Dun Roamin Institute, NY}
\date{1 April 1993\thanks{Fist drafted 29 February 1992}}
\maketitle
\cleardoublepage

    \tableofcontents
\clearpage
    % possible Dedication
    \begin{center} \textbf{Dedication} \end{center}
    To whom it may concern ............
    \lipsum[1]
    .............

    \chapter{Intro}  
        bla bla bla
\mainmatter
    \chapter{Cap 1}
        \section{Sec 1.1}
            bla bla bla
  
           \lipsum[1-10]
        \section{Sec 1.2}
            bla bla bla
            \subsection{SubSec 1.2.1}
                 bla bla bla
                 \subsubsection{SubSubSec 1.2.1.1}
                 bla bla bla
    \chapter{Cap 2}
        \section{Sec 2.1}
            bla bla bla
        \section{Sec 2.2}
            \ref{sec:extra}
    \chapter{Cap 3}
        \section{SecThreeDotOne}
            bla bla bla
    \chapter*{Outro}
    \addcontentsline{toc}{chapter}{Outro}
        bla bla bla
    \appendix
    \chapter*{Extra}
    \addcontentsline{toc}{chapter}{Extra}
    \label{sec:extra}
        bla bla bla
\backmatter
%% read how to do a bibliography
%%    \bibliography

\end{document}

看来你对 LaTeXing 文档了解不多。你读过LaTeX2e 的简短介绍> texdoc lshort)?如果没有,那么我认为它可能对你非常有帮助。

阅读memoir手册(> texdoc memoir)看看它能为您做哪些奇妙的事情(警告:我是原创者memoir)。

相关内容