diff --git a/css/customstyles.css b/css/customstyles.css
index 70e85d68b..7c5181e5b 100644
--- a/css/customstyles.css
+++ b/css/customstyles.css
@@ -211,7 +211,6 @@ p.post-meta {font-size: 80%; color: #777;}
border-left: 1px solid #dedede;
}
-
ul#results-container a {
background-color: transparent;
}
@@ -1236,6 +1235,33 @@ abbr[title]:after { content: "\f129"; } /* info */
padding-right: 2em;
}
+/* foldable-toggle */
+[data-toggle="foldable-tooltip"] > span {
+ color: var(--highlight);
+ cursor: pointer;
+}
+
+[data-toggle="foldable-tooltip"] > div {
+ color: var(--text-grayed);
+ font-style: normal;
+}
+
+/* team profile cards */
+.panel-profile-card {
+ display: flex;
+ box-shadow: none;
+ -webkit-box-shadow: none;
+ padding: 0;
+}
+
+.panel-profile-card > .panel-heading {
+ width: 30%;
+}
+
+.panel-profile-card > .panel-body {
+ width: 100%;
+}
+
/* -------------------------- */
/* important / override rules */
/* -------------------------- */
@@ -1269,3 +1295,8 @@ a.no_icon:after {
content: "";
padding-left: 0;
}
+
+/* onyl for debugging */
+* {
+ /* outline: 1px solid red; */
+}
diff --git a/images/profiles/bjorn-eske-soerensen.png b/images/profiles/bjorn-eske-soerensen.png
new file mode 100644
index 000000000..f7d341145
Binary files /dev/null and b/images/profiles/bjorn-eske-soerensen.png differ
diff --git a/images/profiles/david-mainprice.png b/images/profiles/david-mainprice.png
new file mode 100644
index 000000000..ae0e98493
Binary files /dev/null and b/images/profiles/david-mainprice.png differ
diff --git a/images/profiles/fabian-bartl.png b/images/profiles/fabian-bartl.png
new file mode 100644
index 000000000..af93fef07
Binary files /dev/null and b/images/profiles/fabian-bartl.png differ
diff --git a/images/profiles/felix-bartel.png b/images/profiles/felix-bartel.png
new file mode 100644
index 000000000..53dc20c1a
Binary files /dev/null and b/images/profiles/felix-bartel.png differ
diff --git a/images/profiles/florian-bachmann.png b/images/profiles/florian-bachmann.png
new file mode 100644
index 000000000..96a0d2445
Binary files /dev/null and b/images/profiles/florian-bachmann.png differ
diff --git a/images/profiles/frank-niessen.png b/images/profiles/frank-niessen.png
new file mode 100644
index 000000000..77385d666
Binary files /dev/null and b/images/profiles/frank-niessen.png differ
diff --git a/images/profiles/oliver-kent-johnson.png b/images/profiles/oliver-kent-johnson.png
new file mode 100644
index 000000000..2b3abf207
Binary files /dev/null and b/images/profiles/oliver-kent-johnson.png differ
diff --git a/images/profiles/ralf-hielscher.png b/images/profiles/ralf-hielscher.png
new file mode 100644
index 000000000..8ba6c6136
Binary files /dev/null and b/images/profiles/ralf-hielscher.png differ
diff --git a/images/profiles/ruediger-kilian.png b/images/profiles/ruediger-kilian.png
new file mode 100644
index 000000000..8ea381280
Binary files /dev/null and b/images/profiles/ruediger-kilian.png differ
diff --git a/images/profiles/tuomo-nyyssoenen.png b/images/profiles/tuomo-nyyssoenen.png
new file mode 100644
index 000000000..8bbea12cb
Binary files /dev/null and b/images/profiles/tuomo-nyyssoenen.png differ
diff --git a/index.md b/index.md
index b7c831c19..1a4a6e5ef 100644
--- a/index.md
+++ b/index.md
@@ -7,14 +7,15 @@ permalink: index
toc: false
---
-MTEX is a free Matlab toolbox for analyzing and modeling crystallographic textures by means of EBSD or pole figure data. It is developed on a free and opensource basis by an interdisciplinary
+MTEX is a free Matlab toolbox for analyzing and modeling crystallographic textures by means of EBSD or pole figure data. It is developed on a free and opensource basis by an interdisciplinary
{% include reference.html link="people" content=' team' %}
of material scientists, geologists and mathematicians.
-[![](https://badgen.net/badge/icon/github?icon=github&label)](https://github.com/mtex-toolbox/mtex)
-[![ResearchGate Badge](https://img.shields.io/badge/Research-Gate-9cf)](https://www.researchgate.net/project/MTEX-free-crystallographic-texture-analysis-software)
+[![](https://badgen.net/badge/icon/github?icon=github&label)](https://github.com/mtex-toolbox/mtex)
+[![](https://img.shields.io/badge/Research-Gate-9cf)](https://www.researchgate.net/project/MTEX-free-crystallographic-texture-analysis-software)
+
![](https://img.shields.io/github/languages/top/mtex-toolbox/mtex)
![](https://img.shields.io/github/downloads/mtex-toolbox/mtex/total)
![](https://img.shields.io/github/contributors/mtex-toolbox/mtex)
diff --git a/js/customscripts.js b/js/customscripts.js
index 9613c5fcb..a01511920 100644
--- a/js/customscripts.js
+++ b/js/customscripts.js
@@ -1,7 +1,10 @@
-$('#mysidebar').height($(".nav").height());
+// some small functions
+const uniqId = (()=>{let i=0;return()=>{return i++;}})();
+
+$('#mysidebar').height($(".nav").height());
-$( document ).ready(function() {
+$(document).ready(function() {
//this script says, if the height of the viewport is greater than 800px, then insert affix class, which makes the nav bar float in a fixed
// position as your scroll. if you have a lot of nav items, this height may not work for you.
@@ -36,6 +39,36 @@ $( document ).ready(function() {
if (a_href.includes("://") && a_target === null) { a_tag.setAttribute("target", "_blank"); }
}
+
+ // add no_icon class to links with badges
+ $('a > img').each(function() {
+ $(this).parent().addClass("no_icon");
+ });
+
+ // foldable tooltip
+ $('[data-toggle="foldable-tooltip"]').each(function() {
+ if ($(this).attr("data-icon") === null) {
+ $(this).attr("data-icon", "fa fa-info-circle");
+ }
+
+ $(this).html(" " + $(this).attr("data-title") + "");
+ $(this).attr("unfolded", "false");
+ });
+
+ $('[data-toggle="foldable-tooltip"]').click(function() {
+ let folded = " " + $(this).attr("data-title") + "";
+ let unfolded = folded + "
- {% include image.html file="profiles/ralf-hielscher.jpg" alt="Picture of Ralf Hielscher" max-width='120'%} - | -
- - Ralf Hielscher - invented MTEX in 2007 by implementing the pole figure to ODF inversion - algorithm and leads since than the development. - -
- {% include reference.html link="mailto:Ralf.Hielscher@math.tu-freiberg.de" content="Ralf.Hielscher@math.tu-freiberg.de" %}
- |
-
+ Ralf Hielscher + invented MTEX in 2007 by implementing the pole figure to ODF inversion + algorithm and leads since than the development. +
+
+ {% include reference.html link="mailto:Ralf.Hielscher@math.tu-freiberg.de"
+ content="Ralf.Hielscher@math.tu-freiberg.de" %}
+
+ {% include reference.html link="https://tu-freiberg.de/fakult1/ana/hielscher" content="Institute of
+ Applied Analysis, TU Bergakademie Freiberg" %}
+
- {% include image.html file="profiles/ruediger-kilian.jpg" alt="Picture of Rüdiger Kilian" max-width='120'%} - | -
- - Rüdiger Kilian - joined the MTEX team in 2008 as a PhD student of - Rene Heilbronner, Basel. Since than he answered hundreds of questions in the - MTEX forum. Rüdiger spends much afford in continuously improving the EBSD - and grain analysis functionalities in MTEX. - -- {% include reference.html link="https://geodynamics.geo.uni-halle.de/ruediger-kilian" content="Martin-Luther-Universität Halle-Wittenberg" %} - - |
-
+ Rüdiger Kilian + joined the MTEX team in 2008 as a PhD student of + Rene Heilbronner, Basel. Since than he answered hundreds of questions in the + MTEX forum. Rüdiger spends much afford in continuously improving the EBSD + and grain analysis functionalities in MTEX. +
++ {% include reference.html link="https://geodynamics.geo.uni-halle.de/ruediger-kilian" + content="Martin-Luther-Universität Halle-Wittenberg" %} +
+- {% include image.html file="profiles/david-mainprice.jpg" alt="Picture of David Mainprice" max-width='120'%} - | -
- - David Mainprice - joined the MTEX team in 2009 by sharing his code - on tensorial properties and seismic velocities. Since than he is - continuously working on promoting MTEX to the world of geologists. - -- {% include reference.html link="http://www.gm.univ-montp2.fr/PERSO/mainprice/" content="Geosciences Montpellier, France" %} - - |
-
+ David Mainprice + joined the MTEX team in 2009 by sharing his code + on tensorial properties and seismic velocities. Since than he is + continuously working on promoting MTEX to the world of geologists. +
++ {% include reference.html link="http://www.gm.univ-montp2.fr/PERSO/mainprice/" content="Geosciences + Montpellier, France" %} +
+- {% include image.html file="profiles/florian-bachmann.jpg" alt="Picture of Florian Bachmann" max-width='120'%} - | -
- - Florian Bachmann - started with MTEX during his diploma thesis at TU - Freiberg in 2008, when he implemented the MTEX grain reconstruction - algorithm. Furthermore, he was responsible for the import wizard and the - documentation center. - -- {% include reference.html link="https://xnovotech.com/" content="Xnovo Technology ApS, Denmark" %} - - |
-
+ Florian Bachmann + started with MTEX during his diploma thesis at TU + Freiberg in 2008, when he implemented the MTEX grain reconstruction + algorithm. Furthermore, he was responsible for the import wizard and the + documentation center. +
++ {% include reference.html link="https://xnovotech.com/" content="Xnovo Technology ApS, Denmark" %} +
+- {% include image.html file="profiles/felix-bartel.jpg" alt="Picture of Felix Bartel" max-width='120'%} - | -
- - Felix Bartel - worked on MTEX during his master thesis at the TU Chemnitz in 2019. He - wrote the code for spherical function classes. - -- {% include reference.html link="https://www.tu-chemnitz.de/~febar" content="Institute of Mathematics, TU Chemnitz" %} - - |
-
+ Felix Bartel + worked on MTEX during his master thesis at the TU Chemnitz in 2019. He + wrote the code for spherical function classes. +
++ {% include reference.html link="https://www.tu-chemnitz.de/~febar" content="Institute of + Mathematics, TU Chemnitz" %} +
+- {% include image.html file="profiles/bjorn-eske-soerensen.jpg" alt="Picture of Bjoern Eske Soerensen" max-width='120'%} - | -
- - - {% include reference.html link="https://www.ntnu.edu/employees/bjorn.sorensen" content="Bjørn Eske Sørensen" %} - - contributes to spectral difraction and birefringence. - -
- Department of Geoscience and Petroleum,
- |
-
+ + {% include reference.html link="https://www.ntnu.edu/employees/bjorn.sorensen" + content="Bjørn Eske Sørensen" %} + + contributes to spectral difraction and birefringence. +
+
+ Department of Geoscience and Petroleum,
+
+ Norwegian University of Science and Technology
+
- {% include image.html file="profiles/tuomo-nyyssoenen.jpg" alt="Picture of Tuomo Nyyssoenen" - max-width='120'%} - | -
- - - {% include reference.html link="https://www.researchgate.net/profile/Tuomo-Nyyssoenen" content="Tuomo Nyyssoenen" %} - - worked on parent austenite reconstruction during his PhD at Tampere University of Technology. He wrote the initial MTEX code for the reconstruction of parent grain structures and the determination of the parent to child orientation relationship. - - |
-
+ + {% include reference.html link="https://www.researchgate.net/profile/Tuomo-Nyyssoenen" + content="Tuomo Nyyssoenen" %} + + worked on parent austenite reconstruction during his PhD at Tampere University of Technology. He + wrote the initial MTEX code for the reconstruction of parent grain structures and the determination + of the parent to child orientation relationship. +
+- {% include image.html file="profiles/frank-niessen.jpg" alt="Picture of Frank Niessen" max-width='120'%} - | -
- - - {% include reference.html link="https://www.researchgate.net/profile/Frank_Niessen4" content="Frank Niessen" %} - - generalized and optimized the orientation relationship analysis and parent grain reconstruction algorithm in towards arbitrary phase combinations. He is also the author of export functions for ctf and ang files. - -
- {% include reference.html link="https://www.dtu.dk/english/service/phonebook/person?id=74988&tab=3&qt=dtuprojectquery" content="Department of Mechanical Engineering, |
-
+ + {% include reference.html link="https://www.researchgate.net/profile/Frank_Niessen4" + content="Frank Niessen" %} + + generalized and optimized the orientation relationship analysis and parent grain reconstruction + algorithm in towards arbitrary phase combinations. He is also the author of export functions for ctf + and ang files. +
+
+ {% include reference.html
+ link="https://www.dtu.dk/english/service/phonebook/person?id=74988&tab=3&qt=dtuprojectquery"
+ content="Department of Mechanical Engineering,
Technical University of Denmark" %}
+
- {% include image.html file="profiles/oliver-kent-johnson.jpg" alt="Picture of Oliver kent Johnson" - max-width='120'%} - | -
- - Oliver Kent Johnson - finished his PhD in 2015 under the supervision of Christopher A. Schuh at the Massachusetts Institute of Technology. He implemented the misorientation color key. - - |
-
+ Oliver Kent Johnson + finished his PhD in 2015 under the supervision of Christopher A. Schuh at the Massachusetts + Institute of Technology. He implemented the misorientation color key. +
+- {% include image.html file="profiles/fabian-bartl.jpg" alt="Picture of Fabian Bartl" max-width='120'%} - | -
- - Fabian Bartl - is responsible for the webpage since 2021. - -- {% include reference.html link="https://tu-freiberg.de/" content="TU Bergakademie Freiberg" %} - - |
-
+ Fabian Bartl + is responsible for the webpage since 2021. +
++ {% include reference.html link="https://tu-freiberg.de/" content="TU Bergakademie Freiberg" %} +
+