-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpublications.html
184 lines (136 loc) · 4.19 KB
/
publications.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<!-- $Id: header.html,v 1.1 2006/05/22 21:35:34 vaughan Exp $ -->
<HEAD>
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html;CHARSET=utf-8">
<meta name="keywords" content="autonomy, Vaughan, Richard, robot, control, AI">
<link rel="stylesheet" type="text/css" href="autolab.css">
<TITLE>SFU Autonomy Lab</TITLE>
<script type="text/javascript" src="jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="bibtex_js.js"></script>
<script type="text/javascript">
function bibtex_js_draw() {
$(".bibtex_template").hide();
(new BibtexDisplay()).displayBibtex($("#bibtex_input").val(), $("#bibtex_display"), '*' );
}
$(document).ready( function() {
$("#bibtex_input").load( "autolab.bib", bibtex_js_draw )
$("*[type='radio']").click(function(){
(new BibtexDisplay()).displayBibtex($("#bibtex_input").val(), $("#bibtex_display"), $(this).attr('value') );
});
;
} );
</script>
</HEAD>
<body >
<textarea id="bibtex_input" style="display:none;">
<!-- on document.ready the bibtex file is loaded into this invisible textarea. when complete, it is rendered into the element with id "bibtex_display"-->
</textarea>
<div class="title">
<table>
<tr>
<td>
<table>
<tr>
<td style="font-size:36pt;">
<a href="index.html">Autonomy Lab</a> / Publications
<td style="text-align:right;"><img src="img/sfu.png" alt="sfu logo" height=50>
</tr>
</table>
</table>
</div>
<table>
<tr>
<td>
<td>
<div>
<div class="main">
<!--
<div id="tabs">
<ul>
<li><a href="autolab.html">All</a></li>
<li><a href="inproceedings.html">Conference</a></li>
<li><a href="article.html">Journal</a></li>
<li><a href="phdthesis.html">Phd</a></li>
<li><a href="mastersthesis.html">MSc</a></li>
<li><a href="techreport.html">Tech reports</a></li>
<li><a href="misc.html">Other</a></li>
</ul>
</div>
-->
<div class="bibtex_template" style="display:none;">
<li style="padding: 0.5em;">
<span>
<span class="if title" style="font-weight: bold;">
<span class="title"></span>
<br>
</span>
<span class="author"></span>.<br>
<span class="if booktitle" style="font-style: italic;">
<span class="booktitle"></span>,
<span class="if address" style="font-style: normal;">
<span class="address"></span>
</span>
</span>
<span class="if journal" style="font-style: italic;">
<span class="journal"></span>
</span>
<span style="if publisher">
<span class="publisher"></span>
</span>
<span style="if howpublished">
<span class="howpublished"></span>,
</span>
<span style="if renderkind">
<span class="renderkind"></span>
</span>
<span style="if school">
<span class="school"></span>
</span>
<span class="if volume">
<span class="volume"></span>
<span class="if number">
(<span class="number"></span>)
</span>
<span class="if pages">
:<span class="pages"></span>
</span>
</span>
<span class="if edition">
<span class="edition"></span> ed.,
</span>
<span class="if month">
<span class="month"></span>
</span>
<span class="year"></span>
</span>
<span class="if url">
<a class="url" style="">URL</a>
</span>
<span class="if pdf">
<a class="pdf" style="">PDF</a>
</span>
<span class="if video">
<a class="video" style="">VIDEO</a>
</span>
</div>
<p>This page is generated dynamically from a <a href="autolab.bib">bibtex file</a>.
<p>If you can't find what you need, or you see errors, let us know at [email protected].
<form>
Show: <br>
<input type="radio" name="filter" value="*" checked> All <br>
<input type="radio" name="filter" value="@INPROCEEDINGS"> Conference papers<br>
<input type="radio" name="filter" value="@ARTICLE"> Journal articles<br>
<input type="radio" name="filter" value="@PHDTHESIS"> PhD theses<br>
<input type="radio" name="filter" value="@MASTERSTHESIS"> MSc theses<br>
<input type="radio" name="filter" value="@MISC"> Other (arXiv, abstracts, posters, etc.)
</form>
<ol reversed>
<div id="bibtex_display"></div>
</div>
</ol>
</table>
</table>
</div>
</BODY>
</HTML>