1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-08 15:21:58 +02:00

SPSS tutorial

This commit is contained in:
2019-02-14 15:18:17 +01:00
parent efb2af9e3a
commit 9209787a53
78 changed files with 1272 additions and 227 deletions

View File

@ -79,6 +79,10 @@ a pre[href], a pre[href]:hover, a pre[href]:focus {
/* adjusted colour for all real links; having href attribute */
color: #128f76;
}
.ot, .dv {
/* numbers and TRUE/FALSE */
color: slategray;
}
/* syntax font */
pre, code {

View File

@ -56,6 +56,20 @@ $( document ).ready(function() {
'<a href="https://www.rug.nl" target="_blank"><img src="../../AMR/logo_rug.png" class="footer_logo"></a>' +
'</div>');
// doctoral titles of authors
function doct_tit(x) {
if (typeof(x) != "undefined") {
x = x.replace("Corinna", "Dr Corinna");
x = x.replace("Alex", "Prof Dr Alex");
x = x.replace("Bhanu", "Prof Dr Bhanu");
x = x.replace(/Author, thesis advisor/g, "Doctoral advisor");
}
return(x);
}
$(".template-authors").html(doct_tit($(".template-authors").html()));
$(".developers").html(doct_tit($(".developers").html()));
$("footer").html(doct_tit($("footer").html()));
// Edit title of manual
$('.template-reference-index h1').text('Manual');
});

BIN
pkgdown/logos/import1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
pkgdown/logos/import2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB