-
Notifications
You must be signed in to change notification settings - Fork 0
/
publications.html
93 lines (68 loc) · 2.57 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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link rel="shortcut icon" href="paper_dragon.ico">
<link rel="stylesheet" type="text/css" href="style.css" />
<!-- <link rel="shortcut icon" href="paper_dragon.ico"> -->
<title>Mingming Gong's Publications</title>
<!-- <base href="./index.html"> -->
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script type="text/javascript">
$(function() {
document.getElementById("load_years").onclick = function() {
$("#includedContent").load("years.html");
};
});
$(function() {
document.getElementById("load_topics").onclick = function() {
$("#includedContent").load("topics.html");
};
});
// $(function() {
// document.getElementById("load_venues").onclick = function() {
// $("#includedContent").load("venues.html");
// };
// });
// $(function() {
// document.getElementById("load_top").onclick = function() {
// $("#includedContent").load("top.html");
// };
// });
$("document").ready(function() {
$("#includedContent").load("years.html");
});
</script>
</head>
<body>
<table summary="Table for page layout." id="tlayout">
<tr valign="top">
<h1 style="padding-left: 0.5em">Mingming Gong</h1><hr>
<td id="layout-menu">
<div class="menu-item"><a href="index.html" class="current">Home</a></div>
<div class="menu-item"><a href="news.html">News</a></div>
<div class="menu-item"><a href="group.html">Group</a></div>
<div class="menu-item"><a href="research.html">Research</a></div>
<div class="menu-item"><a href="publications.html">Publications</a></div>
<div class="menu-item"><a href="teaching.html">Teaching</a></div>
<div class="menu-item"><a href="talks.html">Talks</a></div>
<div class="menu-item"><a href="service.html">Service</a></div>
<div class="menu-item"><a href="awards.html">Awards & Honors</a></div>
</td>
<td id="layout-content">
<h1 style="margin-top: 0em">Publications</h1><br>
<!-- <p>[ <a href="#news">News</a>,
<a href="#interest">Research Interests</a>,
<a href="#job">Job Experience</a>,
<a href="#edu">Education</a> ]</p>-->
<div>
<span style="font-size: 22;">
Sorted <a id="load_years">by years</a>, <a id="load_topics">by topics</a>.
</span>
<div id="includedContent">
</div>
</div>
</td>
</tr>
</table>
</body>
</html>