<style>
main .wrapper {
width: 100%;
display: flex;
}
</style>
<script src="../form_generator/js/read_standards.js"></script>
<script>
function openSupplementFromURL(evt) {
supplementName = getParameterByName('supplement')[0].replaceAll('"', '');
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
document.getElementById(supplementName).style.display = "block";
document.getElementById(supplementName+'_b').className += " active";
}
</script>
<script async src="
{% capture std %}{% include_relative docs/supplements/EthicsEngineering.md %}{% endcapture %}
{{ std | replace: '- [ ]', '-' | markdownify }}
{% capture std %}{% include_relative docs/supplements/EthicsHumanParticipants.md %}{% endcapture %}
{{ std | replace: '- [ ]', '-' | markdownify }}
{% capture std %}{% include_relative docs/supplements/EthicsSecondaryData.md %}{% endcapture %}
{{ std | replace: '- [ ]', '-' | markdownify }}
{% capture std %}{% include_relative docs/supplements/InformationVisualization.md %}{% endcapture %}
{{ std | replace: '- [ ]', '-' | markdownify }}
{% capture std %}{% include_relative docs/supplements/InterRaterReliabilityAndAgreement.md %}{% endcapture %}
{{ std | replace: '- [ ]', '-' | markdownify }}
{% capture std %}{% include_relative docs/supplements/OpenScience.md %}{% endcapture %}
{{ std | replace: '- [ ]', '-' | markdownify }}
{% capture std %}{% include_relative docs/supplements/RegisteredReports.md %}{% endcapture %}
{{ std | replace: '- [ ]', '-' | markdownify }}
{% capture std %}{% include_relative docs/supplements/Sampling.md %}{% endcapture %}
{{ std | replace: '- [ ]', '-' | markdownify }}
<script>
function openSupplement(evt, supplementName) {
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
document.getElementById(supplementName).style.display = "block";
evt.currentTarget.className += " active";
window.history.replaceState('', '', '?supplement='+supplementName);
let footnotes = document.getElementsByClassName("footnote");
let textCount = 1;
let refCount = 1;
for (i = 0; i < footnotes.length; i++) {
footnotes[i].removeAttribute("id");
footnotes[i].removeAttribute("href");
if (footnotes[i].closest(".tabcontent").style.display === "block") {
if (footnotes[i].classList.contains("footnote-text")) {
footnotes[i].setAttribute("id", "footnote-text" + textCount);
footnotes[i].setAttribute("href", "#footnote-ref" + textCount);
textCount++;
} else {
footnotes[i].setAttribute("id", "footnote-ref" + refCount);
footnotes[i].setAttribute("href", "#footnote-text" + refCount);
refCount++;
}
}
}
}
</script>