tex实用小笔记


1. 如何增加一个网址链接,并且可以点击跳转

\href{www.baidu.com}{www.baidu.com}
  1. 如何去掉href超链接的蓝色的丑陋的边框

https://tex.stackexchange.com/questions/823/remove-ugly-borders-around-clickable-cross-references-and-hyperlinks

\usepackage{xcolor}
\hypersetup{
    colorlinks,
    linkcolor={red!50!black},
    citecolor={blue!50!black},
    urlcolor={blue!80!black}
}

3. 增加带颜色的字体

\textcolor{blue}{测试}

4. 简单设置页眉页脚

\fancyhead[C]{测试}
\fancyfoot[C]{---\thepage---}
\renewcommand{\headrulewidth}{3pt}
\renewcommand{\footrulewidth}{1pt}
TeX