[exos] try pluto
This commit is contained in:
parent
c36b1ad64f
commit
51248b57d3
5 changed files with 30 additions and 3 deletions
|
@ -3,6 +3,8 @@ destination: ./_site
|
|||
|
||||
markdown: kramdown
|
||||
|
||||
exclude: ["static"]
|
||||
|
||||
safe: true
|
||||
highlighter: rouge
|
||||
|
||||
|
|
19
_includes/iframe.html
Normal file
19
_includes/iframe.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
<iframe id="iframe" style="width:100%" src="{{ include.src }}"></iframe>
|
||||
|
||||
<script>
|
||||
// Selecting the iframe element
|
||||
var frame = document.getElementById("iframe");
|
||||
|
||||
// Adjusting the iframe height onload event
|
||||
frame.onload = function()
|
||||
// function execute while load the iframe
|
||||
{
|
||||
// set the height of the iframe as
|
||||
// the height of the iframe content
|
||||
setTimeout(function() {
|
||||
frame.style.height = frame.contentWindow.document.body.scrollHeight + 'px';
|
||||
console.log(frame.contentWindow.document.body.scrollHeight + 'px');
|
||||
}, 1000);
|
||||
|
||||
}
|
||||
</script>
|
|
@ -49,6 +49,9 @@ a:hover { color: #009; }
|
|||
|
||||
strong { font-weight: bold; }
|
||||
|
||||
sup { vertical-align: super; font-size: x-small; }
|
||||
sub { vertical-align: sub; font-size: x-small; }
|
||||
|
||||
hr { height: 1px; border: none; background-color: $rule; margin-top: 1em; }
|
||||
|
||||
section h1 { font-size: 150%; border-left: 4px solid $links;
|
||||
|
|
4
de/L_Blatt_6.markdown
Normal file
4
de/L_Blatt_6.markdown
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
layout: default
|
||||
---
|
||||
{% include iframe.html src="/static/enseignement/konstanz/GODE/2021/notebooks/Blatt_6.jl.html" %}
|
|
@ -12,14 +12,13 @@ lang: de
|
|||
|
||||
- [Skript](http://www.math.uni-konstanz.de/~schnuere/skripte/pde1-2021.pdf) (Oliver Schnürer)
|
||||
- Übungsblätter:
|
||||
[1](/static/enseignement/konstanz/TNPDG_1/2021/Blatt_1.pdf)
|
||||
[1](/static/enseignement/konstanz/TNPDG_1/2021/Blatt_1.pdf)<sup>[L](/static/enseignement/konstanz/TNPDG_1/Blatt_1_5_loesung.pdf)</sup>
|
||||
· [2](/static/enseignement/konstanz/TNPDG_1/2021/Blatt_2.pdf)
|
||||
· [3](/static/enseignement/konstanz/TNPDG_1/2021/Blatt_3.pdf)
|
||||
· [4](/static/enseignement/konstanz/TNPDG_1/2021/Blatt_4.pdf)
|
||||
· [5](/static/enseignement/konstanz/TNPDG_1/2021/Blatt_5.pdf)
|
||||
· [6](/static/enseignement/konstanz/TNPDG_1/2021/Blatt_6.pdf)
|
||||
· [7](/static/enseignement/konstanz/TNPDG_1/2021/Blatt_7.pdf)
|
||||
- Lösungen: [A5](/static/enseignement/konstanz/TNPDG_1/Blatt_1_5_loesung.pdf)
|
||||
|
||||
*Abgabe bei F402 oder per Email bis Montag 14:00 (Dienstag 10:00 wenn Montag ein Feiertag ist)*
|
||||
|
||||
|
@ -32,7 +31,7 @@ lang: de
|
|||
· [3](/static/enseignement/konstanz/GODE/2021/Blatt_3.pdf)
|
||||
· [4](/static/enseignement/konstanz/GODE/2021/Blatt_4.pdf)
|
||||
· [5](/static/enseignement/konstanz/GODE/2021/Blatt_5.pdf)
|
||||
· [6](/static/enseignement/konstanz/GODE/2021/Blatt_6.pdf)
|
||||
· [6](/static/enseignement/konstanz/GODE/2021/Blatt_6.pdf)<sup>[L](/de/L_Blatt_6)</sup>
|
||||
· [7](/static/enseignement/konstanz/GODE/2021/Blatt_7.pdf)
|
||||
|
||||
# Kontakt
|
||||
|
|
Loading…
Reference in a new issue