你好,欢迎访问远方教程PC版!
广告位招租
网站首页 >> 统计之窗 >> LaTeX专区 >> 文章内容

LaTex技巧[57]:LaTeX附录Appendix标题的制作和使用技巧

[日期:2018-01-27]   来源:远方教程  作者:远方教程   阅读:26506次[字体: ] 访问[旧版]
 捐赠远方教程 

        附录是较为常用的内容之一,但是往往标题很多读者不会制作,本文提供一个制作方法。 解决方案效果图:

LaTeX附录标题的制作和使用技巧-远方教程

LaTeX附录标题的制作和使用技巧-远方教程

LaTeX附录标题的制作和使用技巧-远方教程

代码演示:

    \documentclass[a4paper,10pt]{report}
    \usepackage{titlesec}
       \titleformat{\chapter}[display]
             {\normalfont\Large\bfseries}{\thechapter}{11pt}{\Large}
       \titleformat{\section}
             {\normalfont\large\bfseries}{\thesection}{11pt}{\large}
       \titlespacing*{\chapter}{0pt}{0pt}{15pt} %left, beforesep, aftersep, right
       \titlespacing*{\section}{0pt}{3.5ex plus 1ex minus .2ex}{2.3ex plus .2ex}
    \usepackage[titletoc]{appendix}
    \begin{document}
    \tableofcontents
    \chapter{Introduction}
    A chapter intro.
    \section{Project}
    A section here.

    \bibliographystyle{unsrtnat}
    \bibliography{mybibfile}
    \addcontentsline{toc}{chapter}{\bibname}
    \titleformat{\chapter}[display]
           {\normalfont\Large\bfseries}{Appendix~\Alph{chapter}}{11pt}{\Large}

    \begin{appendices}
    \renewcommand{\thechapter}{\Alph{chapter}.}
      \chapter{First appendix}
    some text...
      \chapter{Second appendix}
    some more text
    \end{appendices}
    \end{document}

图片展示
 
相关评论
站长推荐