forked from tum-esi/publications-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (20 loc) · 1.14 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<head>
<link rel="stylesheet" href="https://https://mohammadhamad.github.io/publications-list/script/bib-publication-list-tum.css"/>
</head>
<div class="publications">
<table class="display" id="pubTable">
</table>
<script type="text/javascript" src="https://mohammadhamad.github.io/publications-list/script/jquery.min.js"></script>
<script type="text/javascript" src="https://mohammadhamad.github.io/publications-list/script/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="https://mohammadhamad.github.io/publications-list/script/BibTex-0.1.2.js"></script>
<script type="text/javascript" src="https://mohammadhamad.github.io/publications-list/script/bib-publication-list-tum-dl.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var linkElement = document.createElement("link");
linkElement.rel = "stylesheet";
linkElement.href = "https://mohammadhamad.github.io/publications-list/script/bib-publication-list-tum.css";
document.head.appendChild(linkElement);
bibtexify("https://mohammadhamad.github.io/publications-list/bib/mhh-publications.bib", "pubTable");
});
</script>
</div>