Skip to content

Commit

Permalink
feat: bib -> acceptance, acceptance_rate, location, cve_score (alshed…
Browse files Browse the repository at this point in the history
…ivat#2325)

I added further filds to `bib.liquid`.

A common field is `location`, which is now printed.

I added fields for `acceptance` and `acceptance_rate`. These fields
might be usefull for external people to better determine a vanue's
quality.
`acceptance` is used for the accepted vs submitted papers.
`acceptance_rate` is a percent-value.

<img width="785" alt="Bildschirmfoto 2024-04-07 um 18 11 49"
src="https://github.com/alshedivat/al-folio/assets/1998723/d5eaeb08-7f67-4fb7-b9b9-fd5f4a3c331c">

The existence of two distinct variables stems from the fact that the
'acceptance_rate' is represented using the venue color. On my website, I
employ venue colors correlated with computer science conference
rankings, which naturally leads to associating the acceptance rate with
the same color scheme for coherence and better understanding.

<img width="785" alt="Bildschirmfoto 2024-04-07 um 18 14 54"
src="https://github.com/alshedivat/al-folio/assets/1998723/33ef0419-00ee-4fea-93d9-18c0269188de">

You can find more examples on my
[website](https://christianmainka.de/publications/peerreviewed).

Also, I added a CVE Score, which is mainly usefull for IT-Security
researchers, see this [example](https://christianmainka.de/cve/).

***

Let me know what you think about this proposal.
  • Loading branch information
CheariX authored and mattleblanc committed Dec 29, 2024
1 parent 5c588c8 commit 55f1a94
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
25 changes: 25 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -326,9 +326,34 @@ enable_publication_badges:
google_scholar: true # Google Scholar badge (https://scholar.google.com/intl/en/scholar/citations.html)

# Filter out certain bibtex entry keywords used internally from the bib output
<<<<<<< HEAD
#filtered_bibtex_keywords: [abbr, abstract, arxiv, bibtex_show, html, pdf, selected, supp, blog, code, poster, slides, website, preview, altmetric]
#filtered_bibtex_keywords:
# [abbr, abstract, altmetric, arxiv, award, award_name, bibtex_show, blog, code, html, pdf, poster, preview, selected, slides, supp, video, website]
=======
filtered_bibtex_keywords:
[
abbr,
abstract,
additional_info,
altmetric,
arxiv,
award,
award_name,
bibtex_show,
blog,
code,
html,
pdf,
poster,
preview,
selected,
slides,
supp,
video,
website,
]
>>>>>>> 0f46f80 (feat: bib -> acceptance, acceptance_rate, location, cve_score (#2325))

# Maximum number of authors to be shown for each publication (more authors are visible on click)
max_author_limit: 5 # leave blank to always show all authors
Expand Down
10 changes: 10 additions & 0 deletions _layouts/bib.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,16 @@
{% if entry.year %}
{% capture entryyear %}{{ " " }}{{entry.year}}{% endcapture %}
{% endif %}
{% if entry.location %}
{% capture entrytype %}{{entrytype}}{{ ", " }}{{entry.location}}{% endcapture %}
{% endif -%}
{% if entry.additional_info %}
{% capture entrytype %}{{entrytype}}{{entry.additional_info | markdownify | remove: '<p>' | remove: '</p>' }}{% endcapture %}
{% endif %}
{% capture hook_exists %}{% file_exists _includes/hook/bib.liquid %}{% endcapture %}
{% if hook_exists == 'true' %}
{% include hook/bib.liquid %}
{% endif %}
{% assign entrytype_text = entrytype | strip_html | strip %}
{% capture periodical %}{{ entrytype }}{% if entrytype_text != "" and entryyear != "" %}, {% endif %}{{ entrymonth }}{{ entryyear }}{% endcapture %}
<div class="periodical">
Expand Down

0 comments on commit 55f1a94

Please sign in to comment.