blob: d21365459b1b64008fe7d847705422a2d0df539c (
plain)
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
|
This is a syntax plugin for Dokuwiki (http://www.dokuwiki.org/).
It introduces two syntax extensions for Dokuwiki:
1. Entire list of publications.
<bibtex>
Raw BiBTeX data
</bibtex>
2. Publications selected from <bibtex> by some attributes.
Examples:
a) All papers by 'pashev'
grouped by paper type (article, book, etc.)
sorted by year descend:
<papers>
author = pashev
</papers>
b) Five recent papers by 'pashev'
sorted by year descend and paper type:
<papers>
author = pashev
recent=5
</papers>
c) Papers of 2009 year, grouped by paper type (article, book, etc.):
<papers>
year=2009
</papers>
d) Papers of 2009 year, grouped by paper type (article, book, etc.)
taken from wiki page 'all_our_papers':
<papers>
year=2009
source=all_our_papers
</papers>
|