发布时间:2010-01-08 14:11:41
文章类别:小技巧
原文地址:http://blog.sina.com.cn/s/blog_5e16f1770100grx0.html

QQ群:91940767/145316219/141877998/80300084/194770436
淘宝店:http://latexstudio.taobao.com
技巧续篇:http://latexstudio.net/
常见数学公式问题集下载

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

LaTeX技巧212:LaTeX附录标题的制作和使用技巧

LaTeX技巧212: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}


点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部