forked from rrogers386/differentialprivacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bibtex.html
27 lines (27 loc) · 1.33 KB
/
bibtex.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
---
layout: none
---
<!DOCTYPE html>
<html>
<head>
<title>{{ site.name }} - BibTeX entries</title>
</head>
<body>
<p><a href="{{ site.url }}">DifferentialPrivacy.org</a> BibTeX entries</p>
</body>
{% for post in site.posts %}
<p><tt>
@misc{<a href="{{ post.url }}" id="{{ post.url | remove:"/" }}">DPorg-{{ post.url | remove:"/" }}</a>,<br/>
title={{{ post.title | xml_escape }}},<br/>
{% if post.bibtexauthors %}
author={{{ post.bibtexauthors }}},<br/>
{% elsif post.authors %}
author={{% for author in post.authors %}{% if site.data.contributors[author].bibtexname %}{{ site.data.contributors[author].bibtexname }}{% else %}{{ site.data.contributors[author].name }}{% endif %}{% if forloop.last == false %} and {% endif %}{% endfor %}},<br/>
{% endif %}
howpublished={DifferentialPrivacy.org},<br/>
note={\url{{{ site.url }}{{ post.url }}}},<br/>
year={{{ post.date | date: "%Y" }}},<br/>
month={{{ post.date | date: "%m" }}},<br/>
}</tt></p>
{% endfor %}
</html>