-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.php
142 lines (120 loc) · 5.89 KB
/
index.php
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
<!--/*
*
* SmartBIB: The SmartBIB Project allows you to present a BIB database (
* .bibtex files) containing your publications on the web.
* It is ideal for personal and project websites.
*
* Copyright (C) 2012 Georgios Larkou - DMSL - University of Cyprus
*
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Υou should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>[Zeinalipour's Publications]</title>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.isotope.min.js"></script>
<script type="text/javascript" src="js/jquery.tipsy.js"></script>
<script type="text/javascript" src="js/jquery.fancybox-1.3.4.pack.js"></script>
<script type="text/javascript" src="js/custom.js"></script>
<link rel="stylesheet" type="text/css" href="css/custom.css"/>
<link rel="stylesheet" type="text/css" href="css/tipsy.css"/>
<link rel="stylesheet" type="text/css" href="css/fancybox.css"/>
</head>
<body>
<h1><a href="http://www.cs.ucy.ac.cy/~dzeina/" target="_blank">Demetris Zeinalipour's</a> Publications</h1>
<?php
error_reporting(E_ALL);
ini_set('display_errors', '1');
/*
Available Fields:
The field TYPE will be used for data-filtering. If it is not available then the item will be
marked as uncategorised.
'note'
'abstract'
'year'
'group'
'publisher'
'location'
'articleno'
'numpages'
'page-start'
'page-end'
'pages'
'address'
'url'
'doi'
'volume'
'chapter'
'journal'
'author'
'raw'
'title'
'booktitle'
'folder'
'type'
'series'
'linebegin'
'lineend'
'durl',
'powerpoint',
'infosite',
'website'
*/
/*
Define the format that will be used for printing each bibtex item.
If a you desire to print a string infront of a field please use the following format:
article = array("title", "author", "string", "bibtex field");
eg.
article = array("title", "author", "Num. Of pages", "pages");
Please modify the example below as desired is presented bellow.
*/
$article = array("title", "author", "journal", "series", "location", "publisher", "volume", "pages", "address", "isbn", "year");
$book = array("title", "author", "booktitle", "series", "location", "publisher", "volume", "pages", "address", "isbn", "year");
$booklet = array("title", "author", "booktitle", "series", "location", "publisher", "volume", "pages", "address", "isbn", "year");
$conference = array("title", "author", "booktitle", "series", "location", "publisher", "volume", "pages", "address", "isbn", "year");
$inbook = array("title", "author", "booktitle", "series", "location", "publisher", "volume", "pages", "address", "isbn", "year");
$incollection = array("title", "author", "booktitle", "series", "location", "publisher", "volume", "chapter", "pages", "address", "isbn", "year");
$inproceedings = array("title", "author", "booktitle", "series", "location", "publisher", "volume", "chapter", "pages", "address", "isbn", "year");
$manual = array("title", "author", "booktitle", "series", "location", "publisher", "volume", "pages", "address", "isbn", "year");
$mastersthesis = array("title", "author", "booktitle", "series", "location", "publisher", "volume", "pages", "address", "isbn", "year");
$misc = array("title", "author", "booktitle", "series", "location", "publisher", "volume", "pages", "address", "isbn", "year");
$phdthesis = array("title", "author", "journal", "series", "location", "publisher", "volume", "pages", "address", "isbn", "year");
$proceedings = array("booktitle", "series", "author", "location", "publisher", "volume", "pages", "address", "isbn", "year");
$techreport = array("title", "author", "booktitle", "series", "location", "publisher", "volume", "pages", "address", "isbn", "year");
$unpublished = array("title", "author", "booktitle", "series", "location", "publisher", "volume", "pages", "address", "isbn", "year");
$other = array("title", "author", "booktitle", "series", "location", "publisher", "volume", "pages", "address", "isbn", "year");
/*
Delimiter for Seperating each bibtex field
*/
$delimiter = '.';
/*
Enter fields equivalent to type field in the BibTex file to sort the bibtex entries in categories. Bellow each type enter the title which will be presented as the category title.
*/
$sortby = array('journal', 'conference', 'book', 'editorial', 'theses', 'gconferences');
$sortbyTitle = array('Journal and Magazine Papers', 'Conference and Workshop Papers', 'Book Chapters', 'Editorials','Theses', 'Greek Conferences');
$projects = array('all');
include 'bibtex.php';
/*
Enter the location of your BibTex file
*/
$bibTexFile = 'http://www.cs.ucy.ac.cy/~dzeina/publications/demo.bib';
$bibTex = new BibTeX_Parser();
$bibTex->parser($file = $bibTexFile);
?>
</body>
</html>