-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sabine Schönau
authored and
Sabine Schönau
committed
Dec 30, 2024
1 parent
402f757
commit 0e15f51
Showing
6 changed files
with
666 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,101 @@ lang: de | |
key: rdmo-pub | ||
--- | ||
|
||
# Publikationen über RDMO | ||
|
||
RDMO wurde bereits in zahlreichen Publikationen erwähnt. Im Folgenden sind diese nach bestimmten Inhalten gegliedert aufgelistet. | ||
Falls die Liste nicht vollständig sein sollte, schreiben Sie bitte eine <a href="mailto:[email protected]">Mail</a> an die interne Mailingliste.<br/> | ||
|
||
<p style="color:grey;">Wird aktuell bearbeitet. Bitte zu einem späteren Zeitpunkt noch einmal schauen.</p> | ||
|
||
<u>RDMO Development</u> | ||
<ul class="publication"> | ||
{% for publication in site.data.publications.RDMO_development %} | ||
<li> | ||
<i>{{ publication.type }}</i> | ||
<br /> | ||
<strong>{{ publication.title }}</strong> | ||
<br /> | ||
<i>{{ publication.authors }}</i> | ||
<br /> | ||
<i>{{ publication.date }}</i> | ||
<br /> | ||
{% if publication.uri %} | ||
<a href="{{ publication.uri }}">Details</a> | ||
{% endif %} | ||
<br /> | ||
{% if publication.doi %} | ||
<i>{{ publication.doi }}</i> | ||
{% endif %} | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
|
||
<u>RDMO Implementation and Applications</u> | ||
<ul class="publication"> | ||
{% for publication in site.data.publications.RDMO_implementation %} | ||
<li> | ||
<i>{{ publication.type }}</i> | ||
<br /> | ||
<strong>{{ publication.title }}</strong> | ||
<br /> | ||
<i>{{ publication.authors }}</i> | ||
<br /> | ||
<i>{{ publication.date }}</i> | ||
<br /> | ||
{% if publication.uri %} | ||
<a href="{{ publication.uri }}">Details</a> | ||
{% endif %} | ||
<br /> | ||
{% if publication.doi %} | ||
<i>{{ publication.doi }}</i> | ||
{% endif %} | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
|
||
<u>DMP Tools</u> | ||
<ul class="publication"> | ||
{% for publication in site.data.publications.DMP_Tools %} | ||
<li> | ||
<i>{{ publication.type }}</i> | ||
<br /> | ||
<strong>{{ publication.title }}</strong> | ||
<br /> | ||
<i>{{ publication.authors }}</i> | ||
<br /> | ||
<i>{{ publication.date }}</i> | ||
<br /> | ||
{% if publication.uri %} | ||
<a href="{{ publication.uri }}">Details</a> | ||
{% endif %} | ||
<br /> | ||
{% if publication.doi %} | ||
<i>{{ publication.doi }}</i> | ||
{% endif %} | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
|
||
<u>DMP and SMP Templates</u> | ||
<ul class="publication"> | ||
{% for publication in site.data.publications.DMP_SMP %} | ||
<li> | ||
<i>{{ publication.type }}</i> | ||
<br /> | ||
<strong>{{ publication.title }}</strong> | ||
<br /> | ||
<i>{{ publication.authors }}</i> | ||
<br /> | ||
<i>{{ publication.date }}</i> | ||
<br /> | ||
{% if publication.uri %} | ||
<a href="{{ publication.uri }}">Details</a> | ||
{% endif %} | ||
<br /> | ||
{% if publication.doi %} | ||
<i>{{ publication.doi }}</i> | ||
{% endif %} | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
|
Oops, something went wrong.