Skip to content

Commit

Permalink
added patent pdf
Browse files Browse the repository at this point in the history
  • Loading branch information
tayalmanan28 authored Oct 19, 2024
1 parent 1ba91b8 commit 36b30c7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion _data/pubs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,7 @@
date: 2024-08-29
pub-type: patent
publisher: "Indian Patent"
pdf: patent_sandwich_leg.pdf
projects: [Quadruped]

- title: "Revisit Anything: Visual Place Recognition via Image Segment Retrieval"
Expand All @@ -326,7 +327,7 @@
pdf: https://arxiv.org/pdf/2410.06790
projects: [Biped]

- title: "Adaptive Control of Quadruped Robot"
- title: "Adaptive Control of Quadrupeds under varying load conditions"
authors: [Vamshi Kumar Kurva, Shishir Kolathaya]
date: 2024-12-10
pub-type: conference
Expand Down
Binary file added papers/patent_sandwich_leg.pdf
Binary file not shown.
8 changes: 4 additions & 4 deletions publications.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,27 @@
<a href="{{ site.base }}/bib/pubs.bib">Download BibTeX.</a>
</p>-->

<h2> Journal Papers</h2>
<h2> Patents </h2>
{% assign prev_year = 1000 %}
{% assign pubs = site.data.pubs | sort: "date" | reverse %}
<table class="table">
<tbody>
{% for pub in pubs %}
{% if pub.pub-type == "journal"%}
{% if pub.pub-type == "patent"%}
{% include pub_entry.html pub=pub prev_year=prev_year%}
{% assign prev_year = pub.date | date: "%Y" | to_integer %}
{% endif %}
{% endfor %}
</tbody>
</table>

<h2> Patents </h2>
<h2> Journal Papers</h2>
{% assign prev_year = 1000 %}
{% assign pubs = site.data.pubs | sort: "date" | reverse %}
<table class="table">
<tbody>
{% for pub in pubs %}
{% if pub.pub-type == "patent"%}
{% if pub.pub-type == "journal"%}
{% 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 36b30c7

Please sign in to comment.