Make separate section for invited chapters and surveys.
This commit is contained in:
parent
41a9c8dd5e
commit
3c7ee03623
|
@ -15,9 +15,11 @@ config = defaultConfiguration
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
bibHeaders :: [(String, [String])]
|
bibHeaders :: [(String, [String])]
|
||||||
bibHeaders = [ ("drafts" , [ "-c", "$type='UNPUBLISHED'" ] ) ,
|
bibHeaders = [ ("drafts" , [ "-c", "$type='UNPUBLISHED'" ] )
|
||||||
("thesis" , [ "-c", "$type='PHDTHESIS'" ] ) ,
|
, ("thesis" , [ "-c", "$type='PHDTHESIS'" ] )
|
||||||
("pubs" , [ "-c", "$type='INPROCEEDINGS' or $type='ARTICLE'" ] ) ]
|
, ("pubs" , [ "-c", "($type='INPROCEEDINGS' | $type='ARTICLE') & reviewed='yes'" ] )
|
||||||
|
, ("invite" , [ "-c", "($type='ARTICLE' | $type='INBOOK') & reviewed='no'" ] )
|
||||||
|
]
|
||||||
|
|
||||||
bibSources :: [String]
|
bibSources :: [String]
|
||||||
bibSources = [ "bibs/header.bib"
|
bibSources = [ "bibs/header.bib"
|
||||||
|
|
|
@ -15,9 +15,11 @@ config = defaultConfiguration
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
bibHeaders :: [(String, [String])]
|
bibHeaders :: [(String, [String])]
|
||||||
bibHeaders = [ ("drafts" , [ "-c", "$type='UNPUBLISHED'" ] ) ,
|
bibHeaders = [ ("drafts" , [ "-c", "$type='UNPUBLISHED'" ] )
|
||||||
("thesis" , [ "-c", "$type='PHDTHESIS'" ] ) ,
|
, ("thesis" , [ "-c", "$type='PHDTHESIS'" ] )
|
||||||
("pubs" , [ "-c", "$type='INPROCEEDINGS' or $type='ARTICLE'" ] ) ]
|
, ("pubs" , [ "-c", "($type='INPROCEEDINGS' | $type='ARTICLE') & $reviewed='yes'" ] )
|
||||||
|
, ("invite" , [ "-c", "($type='INPROCEEDINGS' | $type='ARTICLE' | $type='INBOOK') & $reviewed='no'" ] )
|
||||||
|
]
|
||||||
|
|
||||||
bibSources :: [String]
|
bibSources :: [String]
|
||||||
bibSources = [ "bibs/header.bib"
|
bibSources = [ "bibs/header.bib"
|
||||||
|
|
|
@ -192,7 +192,7 @@ body {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#drafts, #thesis, #pubs {
|
#drafts, #thesis, #pubs, #invite {
|
||||||
padding: $text-pad;
|
padding: $text-pad;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -81,6 +81,12 @@ type='text/css'>
|
||||||
$thesis$
|
$thesis$
|
||||||
</table>
|
</table>
|
||||||
</section>
|
</section>
|
||||||
|
<section id="invite">
|
||||||
|
<h2>Invited Chapters and Surveys</h2><p>
|
||||||
|
<table>
|
||||||
|
$invite$
|
||||||
|
</table>
|
||||||
|
</section>
|
||||||
<section id="pubs">
|
<section id="pubs">
|
||||||
<h2>Refereed Publications</h2><p>
|
<h2>Refereed Publications</h2><p>
|
||||||
<table>
|
<table>
|
||||||
|
|
Loading…
Reference in New Issue