Skip to content

Commit

Permalink
Added preprints
Browse files Browse the repository at this point in the history
  • Loading branch information
tayalmanan28 authored Sep 16, 2024
1 parent 4b8489a commit bd2e51b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions _data/pubs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
- title: "Safe Legged Locomotion using Collision Cone Control Barrier Functions (C3BFs)"
authors: [Manan Tayal, Shishir Kolathaya]
date: 2023-09-01
pub-type: conference
pub-type: preprint
publisher: "Arxiv"
pdf: https://arxiv.org/pdf/2309.01898
projects: [CollisionConeCBF]
Expand Down Expand Up @@ -250,7 +250,7 @@
- title: "Vision Based C3BF in UGV Unicycle Model"
authors: [Sahil Bobade, Anand Sortur, Sudharsan Vishwanathan, Rushikesh Jadhav, Shishir Kolathaya]
date: 2024-05-01
pub-type: conference
pub-type: preprint
publisher: "Pre-print"
pdf: Vision_Based_C3BF_in_UGV_Unicycle_Model.pdf
projects: [CBF]
Expand Down
6 changes: 3 additions & 3 deletions publications.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,22 @@ <h2> Conference Papers</h2>
<table class="table">
<tbody>
{% for pub in pubs %}
{% if pub.pub-type != "journal"%}
{% if pub.pub-type == "conference"%}
{% include pub_entry.html pub=pub prev_year=prev_year%}
{% assign prev_year = pub.date | date: "%Y" | to_integer %}
{% endif %}
{% endfor %}
</tbody>
</table>

<h2> Workshop/Symposium Papers</h2>
<h2> Pre-Prints</h2>
<p> &ast; - The authors have contributed equally </p>
{% assign prev_year = 1000 %}
{% assign pubs = site.data.pubs | sort: "date" | reverse %}
<table class="table">
<tbody>
{% for pub in pubs %}
{% if pub.pub-type == "workshop"%}
{% if pub.pub-type == "preprint"%}
{% include pub_entry.html pub=pub prev_year=prev_year%}
{% assign prev_year = pub.date | date: "%Y" | to_integer %}
{% endif %}
Expand Down

0 comments on commit bd2e51b

Please sign in to comment.