【LaTeX】Lyx/LaTeX笔记05
Table of Contents
1 设置当前页页码为空
\thispagestyle{empty}
2 设置页码类型
\pagenumbering{arabic} %默认是arabic还可以设置为roman, Roman, alpha, Alpha
此命令对以后所有的页有效。
3 设置页码开始编号
\setcounter{page}{编号}
4 修改默认Figure
\renewcommand{\figurename}{图}
5 首页取消日期
默认情况下会自动生成日期,形式如June 14 2012
可以在前方中加入\data{}来取消
6 修改图标编号
默认情况下是按顺序编号的:figure 1, figure 2,可以修改:
\renewcommand{\thefigure}{\thesection-\Roman{figure}}
按节-编号:figure 1-1
7 修改图标与标题之间的文字
默认情况下是冒号,例如Figure 1:标题
可以修改:
\usepackage{caption}
\captionsetup[figure]{labelsep=space} %将:改为空格
8 利用fancyhdr宏包修改页眉页脚
\usepackage{fancyhdr}
\pagestyle{fancy}
参考http://wiki.ctex.org/index.php/Fancyhdr
9 表格中绘制斜线分隔表格
diagbox宏包
最基本的用法:
\begin{tabular}{|c|} \hline \diagbox[height=45pt]{line\\heads}{column\\heads} \\ \hline \end{tabular}
\diagbox[dir=可以在此设置方向,width=宽度,height=高度等]{}{}
NW/SE表左上右下斜,同理可得NE/SW表左下右上斜
10 添加水印
\usepackage[firstpage]{draftwatermark} %此处可选项为firstpage表只有第一页有,若为空则表示所有页面都有水印 \SetWatermarkText{此处为水印内容}%若要多行显示可以用\SetWatermarkText{\shortstack{水印第一行\\水印第二行}} %此WatermarkText作用范围为所在页到下一个\SetWatermarkText设置的页 \SetWatermarkScale{0.3} %设定大小 \SetWatermarkLightness{0.88}%defaultis0.8
Date: 2012-06-15 12:44:24 CST
HTML generated by org-mode 6.33x in emacs 23
作者:visayafan
出处:http://www.cnblogs.com/visayafan/
本博客文章欢迎转载,转载时请注意标明出处。