Merge publication lists.
This commit is contained in:
parent
691ba57a04
commit
9516dd3db1
|
@ -6,10 +6,6 @@
|
||||||
|
|
||||||
\$thesis\$
|
\$thesis\$
|
||||||
|
|
||||||
## Journals and Surveys ##
|
## Refereed Publications ##
|
||||||
|
|
||||||
\$journal\$
|
\$pubs\$
|
||||||
|
|
||||||
## Conferences ##
|
|
||||||
|
|
||||||
\$confs\$
|
|
||||||
|
|
|
@ -196,7 +196,7 @@ body {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#drafts, #conferences, #journals-and-surveys, #thesis {
|
#drafts, #thesis, #refereed-publications {
|
||||||
padding: $text-pad;
|
padding: $text-pad;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
5
site.hs
5
site.hs
|
@ -14,9 +14,8 @@ config = defaultConfiguration
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
bibHeaders :: [(String, [String])]
|
bibHeaders :: [(String, [String])]
|
||||||
bibHeaders = [ ("draft" , [ "-c", "$type='UNPUBLISHED'" ] ) ,
|
bibHeaders = [ ("draft" , [ "-c", "$type='UNPUBLISHED'" ] ) ,
|
||||||
("confs" , [ "-c", "$type='INPROCEEDINGS'" ] ) ,
|
("thesis" , [ "-c", "$type='PHDTHESIS'" ] ) ,
|
||||||
("journal", [ "-c", "$type='ARTICLE'" ] ) ,
|
("pubs" , [ "-c", "$type='INPROCEEDINGS' or $type='ARTICLE'" ] ) ]
|
||||||
("thesis", [ "-c", "$type='PHDTHESIS'" ] ) ]
|
|
||||||
|
|
||||||
bibSources :: [String]
|
bibSources :: [String]
|
||||||
bibSources = [ "bibs/header.bib"
|
bibSources = [ "bibs/header.bib"
|
||||||
|
|
Loading…
Reference in New Issue