Skip to content

Commit 36b30c7

Browse files
authored
added patent pdf
1 parent 1ba91b8 commit 36b30c7

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

_data/pubs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,7 @@
300300
date: 2024-08-29
301301
pub-type: patent
302302
publisher: "Indian Patent"
303+
pdf: patent_sandwich_leg.pdf
303304
projects: [Quadruped]
304305

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

329-
- title: "Adaptive Control of Quadruped Robot"
330+
- title: "Adaptive Control of Quadrupeds under varying load conditions"
330331
authors: [Vamshi Kumar Kurva, Shishir Kolathaya]
331332
date: 2024-12-10
332333
pub-type: conference

papers/patent_sandwich_leg.pdf

1.76 MB
Binary file not shown.

publications.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,27 @@
77
<a href="{{ site.base }}/bib/pubs.bib">Download BibTeX.</a>
88
</p>-->
99

10-
<h2> Journal Papers</h2>
10+
<h2> Patents </h2>
1111
{% assign prev_year = 1000 %}
1212
{% assign pubs = site.data.pubs | sort: "date" | reverse %}
1313
<table class="table">
1414
<tbody>
1515
{% for pub in pubs %}
16-
{% if pub.pub-type == "journal"%}
16+
{% if pub.pub-type == "patent"%}
1717
{% include pub_entry.html pub=pub prev_year=prev_year%}
1818
{% assign prev_year = pub.date | date: "%Y" | to_integer %}
1919
{% endif %}
2020
{% endfor %}
2121
</tbody>
2222
</table>
2323

24-
<h2> Patents </h2>
24+
<h2> Journal Papers</h2>
2525
{% assign prev_year = 1000 %}
2626
{% assign pubs = site.data.pubs | sort: "date" | reverse %}
2727
<table class="table">
2828
<tbody>
2929
{% for pub in pubs %}
30-
{% if pub.pub-type == "patent"%}
30+
{% if pub.pub-type == "journal"%}
3131
{% include pub_entry.html pub=pub prev_year=prev_year%}
3232
{% assign prev_year = pub.date | date: "%Y" | to_integer %}
3333
{% endif %}

0 commit comments

Comments
 (0)