Skip to content

Latest commit

 

History

History
86 lines (60 loc) · 1.33 KB

students.md

File metadata and controls

86 lines (60 loc) · 1.33 KB
layout permalink title tags modified comments
publications
/students/
Students
students
14-7-2023
false

List of students I have worked with:

Bachelors

    {% assign number_printed = 0 %} {% for stud in site.data.student_list %} {% for sdeg in stud.degrees %} {% if sdeg.type == "bsc" %}

  • {{ stud.first_name }} {{ stud.last_name }}
    Thesis : {{ sdeg.thesis.title }}

  • {% endif %} {% endfor %} {% endfor %}

Masters

    {% assign number_printed = 0 %} {% for stud in site.data.student_list %} {% for sdeg in stud.degrees %} {% if sdeg.type == "msc" %}

  • {{ stud.first_name }} {{ stud.last_name}}
    Thesis: {{ sdeg.thesis.title }}

  • {% endif %} {% endfor %} {% endfor %}

Ph.D.

    {% assign number_printed = 0 %} {% for stud in site.data.student_list %} {% for sdeg in stud.degrees %} {% if sdeg.type == "phd" %}

  • {{ stud.first_name }} {{ stud.last_name}}
    Thesis: {{ sdeg.thesis.title }}

  • {% endif %} {% endfor %} {% endfor %}