-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbibliography.html
137 lines (134 loc) · 5.97 KB
/
bibliography.html
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html>
<head>
<title>NOVAthesis Template Configuration</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="NOVAthesis, LaTeX">
<link rel="stylesheet" href="myStyles.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
crossorigin="anonymous">
<script src="myScripts.js"></script>
</head>
<body>
<header>
<a href="index.html">
<img id="cover_img" alt="NOVAthesis cover image" src="images/novathesis_cover_image.jpg" width="800" height="219" />
</a>
<h1 id="main_title">NOVAthesis template configuration</h1>
</header>
<nav class="topnav" id="myNav">
<ul>
<li>
<a href="index.html"><span style="color: black"><span class="fas fa-home"></span></span> Home</a>
</li>
<li>
<a href="basic_settings.html">Basic settings</a>
</li>
<li>
<a href="advanced_settings.html">Advanced settings</a>
</li>
<li>
<a class="active" href="bibliography.html">Bibliography</a>
</li>
<li>
<a href="#preview">Preview</a>
</li>
<li class="right dropdown">
<a class="dropbtn" href="javascript:void(0)">Links
<span class="fa fa-caret-down"></span>
</a>
<div class="dropdown-content">
<a href="https://groups.google.com/forum/#!forum/novathesis" target="_blank">
<span class="fab fa-google"> Google group</span>
</a>
<a href="https://www.facebook.com/groups/novathesis" target="_blank">
<span class="fab fa-facebook"> Facebook group</span>
</a>
<a href="https://novathesis.blogspot.pt/" target="_blank">
<span class="fab fa-blogger"> Blog</span>
</a>
<a href="https://github.com/joaomlourenco/novathesis" target="_blank">
<span class="fab fa-github"> Code repository</span>
</a>
</div>
</li>
<li class="icon">
<a href="javascript:void(0);" onclick="myFunction()">☰</a>
</li>
</ul>
</nav>
<section class="content">
<h2>Bibliography</h2>
<!--##########################
###### BIBLATEX OPTIONS ######
###########################-->
<form action="" target="_self" method="GET">
<!--action sends the form data to a form handler page (server side)-->
<p>Back-end
<select name="backend">
<option value="bibtex" selected>bibtex</option>
<option value="biber">biber</option>
</select>
<span class="note">Use bibtex if possible.</span>
</p>
<p>Style
<select name="style">
<option value="numeric-comp" selected>Numeric</option>
<option value="alphabetic">Alphabetic</option>
<option value="authoryear">Author and year</option>
<option value="bwl-FU">bwl-FU</option>
</select>
</p>
<label for="sortcites">Sort cites</label>
<input type="checkbox" name="sortcites" id="sortcites" checked/>
<span class="note">If <em>style=numeric</em>, sorts cites by crescent order.</span>
<br/>
<p>Sorting
<select name="sorting">
<option value="none">none</option>
<option value="nyt" selected>name-year-title</option>
<option value="ynt">year-name-title</option>
</select>
</p>
<!--maxbibnames=99, % Never use 'et al' in the bibliography
giveninits=true, % render all first and middle names as initials
hyperref=true % Hyperlinks in citations: true(*) false
-->
<input type="submit" value="Submit" />
</form>
<br/>
<a href="advanced_settings.html">
<button>Back</button>
</a>
<a href="#preview">
<button>Next page</button>
</a>
</section>
<section class="content">
<h2>Preview</h2>
<p>Bibliography page preview here.</p>
</section>
<footer class="content">
<h2>Footer</h2>
<p>You can get aditional support at the
<a href="https://groups.google.com/forum/#!forum/novathesis" target="_blank">Google</a> and
<a href="https://www.facebook.com/groups/novathesis" target="_blank">Facebook</a>
group pages and find some tricks and tips on the template at the
<a href="https://novathesis.blogspot.pt/" target="_blank">NOVAthesis blog</a>.
</p>
<p>If you have any problem or suggestion regarding this page, feel free to fill an issue on this page's repository at
<a href="https://github.com/antoniomnds/novathesis-webconfig/issues/new/choose" target="_blank">github</a>.
</p>
<p>
<strong>License/copyright of some sort.</strong>
</p>
<br/>
<a href="#cover_img">Back to top</a>
<p style="font-size: 80%; text-align: center">This project is hosted on
<a href="https://github.com/antoniomnds/novathesis-webconfig/" target="_blank">
<span class="fab fa-github"></span>
</a>
</footer>
</body>
</html>