-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy paththesis.tex
64 lines (48 loc) · 1.96 KB
/
thesis.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
% ##############################################################################
% ###### PACKAGE
% ##############################################################################
\documentclass{book}
\usepackage{xcolor} % for color in the links
\usepackage{hyperref} % for making hyperlinks
\usepackage{lipsum} % for generating dummy text
% ##############################################################################
% ###### CONSTANT
% ##############################################################################
\providecommand{\filelogo}{{\small [FILE]}} % text for file links
\providecommand{\doilogo}{{\small DOI:}} % text for DOI links
\providecommand{\urllogo}{{\small URL:}} % text for URL links
\definecolor{FILEcolor}{rgb}{0.7,0.2,0.2} % color for the file links
\definecolor{URLcolor}{rgb}{0.2,0.2,0.7} % color for url links
% ##############################################################################
% ###### LINK FOR BIBTEX
% ##############################################################################
\def\linkfile#1{\href{#1}{\filelogo{}}} % command for the file links
\def\linkdoi#1{\doilogo{} \href{https://doi.org/#1}{#1}} % command for the DOI links
\def\linkurl#1{\urllogo{} \href{#1}{#1}} % command for the URL links
% ##############################################################################
% ###### HYPERSETUP
% ##############################################################################
\hypersetup {
filecolor=FILEcolor,
urlcolor=URLcolor,
linkcolor=black,
citecolor=black,
colorlinks=true,
linktocpage=true,
unicode=true,
psdextra=true,
pdfnewwindow=true
}
% ##############################################################################
% ###### DOCUMENT
% ##############################################################################
\begin{document}
% dummy test
\lipsum
% cite all references silently
\nocite{*}
% include bibtex style
\bibliographystyle{IEEEtran_link}
% include bibtex data
\bibliography{bib}
\end{document}