diff --git a/_bibliography/papers.bib b/_bibliography/papers.bib index 03ecd9bec0ef..2097520cfb18 100644 --- a/_bibliography/papers.bib +++ b/_bibliography/papers.bib @@ -13,9 +13,11 @@ @inproceedings{ selected={true}, preview={2024RSS-RoboPack.gif}, html={https://robo-pack.github.io/}, -note={Abridged in ICRA 2024 workshops: [ViTac](https://shanluo.github.io/ViTacWorkshops/), -[3DVRM](https://3d-manipulation-workshop.github.io/), -and [Future Roadmap for Manipulation Skills](https://icra-manipulation-skill.github.io/).} + note={Abridged in ICRA 2024 workshops + [ViTac](https://shanluo.github.io/ViTacWorkshops/), + [3DVRM](https://3d-manipulation-workshop.github.io/), + [Future Roadmap for Sensorimotor Skills](https://icra-manipulation-skill.github.io/), and RSS 2024 workshop + [Priors4Robots](https://sites.google.com/alora.tech/priors4robots24).} } @article{ai2023invariance, diff --git a/_layouts/bib.liquid b/_layouts/bib.liquid index 6fe232355fbc..d27fb89e616b 100644 --- a/_layouts/bib.liquid +++ b/_layouts/bib.liquid @@ -175,7 +175,7 @@
{{ periodical | strip }}
-
+
{{ entry.note | markdownify | remove: '

' | remove: '

' | strip }}
@@ -192,7 +192,7 @@ {% if entry.arxiv %} arXiv {% endif %} - {% if entry.bibtex_show %} + {% if entry.bibtex_show == 'true' %} Bib {% endif %} {% if entry.html %} diff --git a/assets/css/main.scss b/assets/css/main.scss index 8fa1d3cbfd1b..0aa162033332 100644 --- a/assets/css/main.scss +++ b/assets/css/main.scss @@ -23,3 +23,15 @@ $max-content-width: {{ site.max_width }}; "tabler-icons/tabler-icons-filled.scss", "tabler-icons/tabler-icons-outline.scss" ; + + +// Custom styles +.small-note { + font-size: 0.8em; /* Adjust font size as needed */ + line-height: 1.3em; /* Adjust line height as needed */ + margin: 0; /* Ensure there's no margin affecting spacing */ + padding-top: 0.2em; /* Top padding */ + padding-bottom: 0.2em; /* Bottom padding */ + padding-left: 0; /* Left padding (unchanged or set as needed) */ + padding-right: 0; /* Right padding (unchanged or set as needed) */ +}