Add thesis.
This commit is contained in:
parent
73a0cb0909
commit
bfa91221b4
|
@ -27,6 +27,20 @@
|
|||
url = {http://justinh.su/files/papers/ellora.pdf},
|
||||
}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% THESIS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
@phdthesis{JHThesis,
|
||||
title = {Probabilistic Couplings for Probabilistic Reasoning},
|
||||
author = {Justin Hsu},
|
||||
school = {University of Pennsylvania},
|
||||
year = {2017},
|
||||
url = {https://arxiv.org/abs/1710.09951},
|
||||
jh = yes,
|
||||
eprint = {1710.09951},
|
||||
archivePrefix = {arXiv},
|
||||
primaryClass = {cs.LO}
|
||||
}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% JOURNALS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
@article{GGHRW14,
|
||||
author = {Gaboardi, Marco and
|
||||
|
|
|
@ -2,6 +2,10 @@
|
|||
|
||||
\$draft\$
|
||||
|
||||
## Thesis ##
|
||||
|
||||
\$thesis\$
|
||||
|
||||
## Journals and Surveys ##
|
||||
|
||||
\$journal\$
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
+ **10/2017** My dissertation **Probabilistic Couplings for Probabilistic
|
||||
Reasoning** is now available.
|
||||
+ **10/2017** Our preprints **Reasoning about Divergences for Relaxations of
|
||||
Differential Privacy** and **A Program Logic for Probabilistic Programs** are
|
||||
now available.
|
||||
|
|
|
@ -196,7 +196,7 @@ body {
|
|||
};
|
||||
}
|
||||
|
||||
#drafts, #conferences, #journals-and-surveys {
|
||||
#drafts, #conferences, #journals-and-surveys, #thesis {
|
||||
padding: $text-pad;
|
||||
}
|
||||
|
||||
|
|
4
site.hs
4
site.hs
|
@ -15,8 +15,8 @@ config = defaultConfiguration
|
|||
bibHeaders :: [(String, [String])]
|
||||
bibHeaders = [ ("draft" , [ "-c", "$type='UNPUBLISHED'" ] ) ,
|
||||
("confs" , [ "-c", "$type='INPROCEEDINGS'" ] ) ,
|
||||
("journal", [ "-c", "$type='ARTICLE'" ] )
|
||||
]
|
||||
("journal", [ "-c", "$type='ARTICLE'" ] ) ,
|
||||
("thesis", [ "-c", "$type='PHDTHESIS'" ] ) ]
|
||||
|
||||
bibSources :: [String]
|
||||
bibSources = [ "bibs/header.bib"
|
||||
|
|
|
@ -14,6 +14,9 @@
|
|||
$endif$
|
||||
$month$ $year$.</br>
|
||||
$endif$
|
||||
$if(school)$
|
||||
$school$.</br>
|
||||
$endif$
|
||||
$if(url)$
|
||||
[<a href="$url$" onclick="trackLink('@$identifier$:link','$url$'); return false;">Paper</a>]
|
||||
$endif$
|
||||
|
|
Loading…
Reference in New Issue