Skip to content

Commit

Permalink
fixed publications not showing in person profile
Browse files Browse the repository at this point in the history
  • Loading branch information
romsto committed Sep 23, 2024
1 parent 50886a8 commit 79ec530
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions _layouts/person.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,19 @@ <h2 class="other-category">Contact</h2>
{{ content }}
</div>

{% assign pubname = last_name | append: " " | append: first_name %}
{% assign pubname = last_name | append: " " | append: first_name | downcase %}
{% assign ppublication = "" %}
{% for publications-year in site.data.publications %}
{% for publication in publications-year.papers %}
{% if publication.authors contains pubname %}
{% assign downcasedauthors = publication.authors | downcase %}
{% if downcasedauthors contains pubname %}
{% assign ppublication = ppublication | append: publication.title | append: "|" | append: publication.venue | append: ";;" %}
{% endif %}
{% endfor %}
{% endfor %}

{% assign ppublication = ppublication | split: ";;" %}
{% if ppublication.size > 1 %}
{% if ppublication.size > 0 %}
<div class="other-info">
<h2 class="other-category">Publications</h2>
<ul>
Expand Down
4 changes: 2 additions & 2 deletions _people/storair.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ korean_name: 로망
position: M.S. Student
department: Department of Computer Science and Engineering
interests:
- "LLM Optimization"
- "Adaptive Computations in Transformers"
- "Information Retrieval"
education:
- "M.S. in Computer Science and Engineering, Seoul National University 2023~"
- "M.Eng. in Computer Science (Dual Degree), IMT Mines Alès (France) 2023~"
- "M.Eng. in Computer Science (Dual Degree), IMT Mines Alès (France) 2021~"
mail: [email protected]
website: "https://rstr.fr/"
photo: storair.jpg
Expand Down

0 comments on commit 79ec530

Please sign in to comment.