add publications :D

This commit is contained in:
Gabriel Fontes
2026-01-27 09:06:40 -03:00
parent cae6225118
commit 10bc7496cb
7 changed files with 42 additions and 0 deletions
@@ -6,5 +6,7 @@
link: /
- text: blog
link: /blog/
- text: publications
link: /publications/
- text: cv
link: /cv/
@@ -0,0 +1,10 @@
- title: Is my Dependency Sustainable? A Systematic Mapping on Open Source Software Sustainability
doi: 10.1145/3786152.3788587
file: /assets/docs/fontes-design-2026.pdf
date: 2026-04-13
venue: 3rd International Workshop on Designing Software (Designing '26)
- title: "Open Source Software Ecosystem for Cloud Observability: An Overview and Trends"
doi: 10.1145/3786163.3788453
file: /assets/docs/fontes-sesos-2026.pdf
date: 2026-04-12
venue: 14th International Workshop on Software Engineering for Systems-of-Systems and Software Ecosystems (SESoS '26)
+7
View File
@@ -203,6 +203,13 @@ a {
}
}
&.doi {
color: var(--links-external);
@media not print {
@include add-icon("doi", $margin: 0.5rem);
}
}
&.file {
color: var(--links-files);
}
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="130" height="130" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m65 1a64 64 0 0 0-64 64 64 64 0 0 0 64 64 64 64 0 0 0 64-64 64 64 0 0 0-64-64zm-27.035 24.373h11.854v59.186h-11.854v-4.8242c-1.2036 1.5109-4.0364 3.0508-5.2656 3.7422-2.1511 1.2036-5.0705 1.9863-7.8105 1.9863-4.4302 0-8.3749-1.3999-11.832-4.4473-4.1229-3.6364-6.0605-9.1951-6.0605-15.188 0-6.0948 2.1125-10.961 6.3379-14.598 3.3547-2.8937 7.4571-5.209 11.811-5.209 2.5352 0 5.6627 0.22718 7.8906 1.3027 1.2804 0.6146 3.5724 2.0603 4.9297 3.4688v-25.42zm67.463 0.24414c1.9718 0 3.6484 0.69137 5.0312 2.0742 1.3828 1.3572 2.0742 3.0223 2.0742 4.9941 0 1.9974-0.69137 3.6875-2.0742 5.0703-1.3572 1.3572-3.0338 2.0371-5.0312 2.0371-1.9718 0-3.6484-0.69136-5.0312-2.0742-1.3572-1.3828-2.0371-3.0614-2.0371-5.0332 0-1.9719 0.67986-3.6369 2.0371-4.9941 1.3828-1.3829 3.0594-2.0742 5.0312-2.0742zm-31.209 19.891c6.735 0 12.114 2.2837 16.135 6.8496 3.2779 3.7284 4.916 8.1717 4.916 13.332 0 5.2143-1.6266 9.6857-4.8789 13.414-3.9437 4.5389-9.4612 6.8086-16.555 6.8086-7.1191 0-12.652-2.2697-16.596-6.8086-3.2523-3.7284-4.877-8.3078-4.877-13.738 0-4.8902 1.6381-9.2254 4.916-13.008 3.9693-4.5659 9.6155-6.8496 16.939-6.8496zm24.91 1.3867h12.598v37.635h-12.598v-37.635zm-70.363 9.4629c-2.5096 0-4.8339 1.8257-6.4473 3.7207-1.306 1.5365-1.959 3.9051-1.959 5.877 0 1.9718 0.74085 4.1647 2.0469 5.7012 1.5877 1.895 3.2968 3.1934 5.832 3.1934 2.2791 0 4.9906-0.95742 6.5527-2.5195 1.5877-1.5621 2.9082-4.1837 2.9082-6.4629 0-2.2535-0.61736-4.9516-2.2051-6.5137-1.5877-1.5877-4.475-2.9961-6.7285-2.9961zm45.07 0.61914c-2.6121 0-4.738 1.0268-6.377 3.0801-1.3316 1.6481-1.998 3.5254-1.998 5.6328 0 2.1344 0.66641 4.0258 1.998 5.6738 1.6389 2.0533 3.7649 3.0801 6.377 3.0801 2.3304 0 4.3007-0.83859 5.9141-2.5137 1.6133-1.7021 2.4199-3.7817 2.4199-6.2402 0-2.4316-0.8181-4.4831-2.457-6.1582-1.6133-1.7021-3.5722-2.5547-5.877-2.5547z" fill="currentColor"/>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

+19
View File
@@ -0,0 +1,19 @@
---
title: Publications
description: My research papers
permalink: /publications/
---
{% for pub in site.data.publications %}
<article>
<header>
<h2><a class="file" href="{{ pub.file }}">{{ pub.title }}</a></h2><a class="doi" href="https://doi.org/{{ pub.doi }}">{{ pub.doi }}</a>
</header>
{% if pub.venue %}<p>{{ pub.venue }}</p>{% endif %}
<p>
<time datetime="{{ pub.date | date_to_xmlschema }}">
{{ pub.date | date_to_long_string: "ordinal" }}
</time>
</p>
</article>
{% endfor %}