1. 加载宏包:\usepackage{hyperref},这句话放在引言区加载宏包语句的最后一行,因为这个该宏包重新定义了很多Latex命令。
2. 该宏包提供了很多options,有如下三种方式设置这些options:
- 文档类说明的选项对hyperref也起作用,如:\documentclass[dvipdfmx]{article}
- 加载该宏包时设置options,如:\usepackage[colorlinks=true,...]{hyperref}
- 用hypersetup语句设置,在加载该宏包后,\hypersetup{colorlinks=true, bookmarks=true,...}
3. 常用的一些options
colorlinks 用颜色来表示超链接,默认是用box来表示,colorlinks=true
linkcolor 内部链接的颜色(默认为红色)
anchorcolor anchor text的颜色(默认为黑色)
citecolor 参考文献引用的颜色(默认为green)
filecolor url for local files的颜色
urlcolor urls链接的颜色
frenchlinks 用small caps来表示链接
bookmarks pdf文档创建书签(默认为true)
bookmarksopen 默认为false
bookmarksnumbered 书签包含章节号(默认为false)
CJKbookmarks 书签支持中文,默认时false
citebordercolor, filebordercolor, linkbordercolor, ..., pdfborder设置链接box的颜色和类型,具体参见hyperref manual
pdfpagemode 设置pdf文件打开时的状态,默认时empty,另一个常用设置为FullScreen
pdftitle 设置pdf文档的title属性
pdfauthor 设置pdf文档的author属性
pdfsubject, pdfcreator, pdfproducer, ...等可以设置pdf文档的其他一些信息
pdfview, pdfstartview, 设置文档查看时的状态,常有Fit(fits the page to the window), FitH(fits the width of the page to the window), FitV(fits the height of the page to the window), FitR, FitB, FitBH, FitBV等值可以选择。
此外,还有一些driver,页面大小的选项,具体可参见hyperref manual。
没有评论:
发表评论