TW-Refnotes icon indicating copy to clipboard operation
TW-Refnotes copied to clipboard

[Feature] Add number of type of reference to bibliography sidebar tab

Open kookma opened this issue 3 years ago • 1 comments

Show info button

show number of refs show number of refs per type (e.g.book: 10, article:15, thesis:4, ...)

kookma avatar Jun 07 '22 03:06 kookma

For example use this code

* total:      <$count filter="[has[bibtex-entry-type]]"/>
* article:    <$count filter="[bibtex-entry-type[article]]"/>
* book:       <$count filter="[bibtex-entry-type[book]]"/>
* conference paper: <$count filter="[bibtex-entry-type[inproceedings]]"/>
* in collection:         <$count filter="[bibtex-entry-type[incollection]]"/>
* phd thesis:            <$count filter="[bibtex-entry-type[phdthesis]]"/>
* masters thesis:      <$count filter="[bibtex-entry-type[mastersthesis]]"/>
* unpublished:        <$count filter="[bibtex-entry-type[unpublished]]"/>
* misc:                     <$count filter="[bibtex-entry-type[misc]]"/>


<$list filter="[each[bibtex-entry-type]get[bibtex-entry-type]]">

</$list>

kookma avatar Jun 07 '22 05:06 kookma