Hauptsatz der Differential- und Integralrechnung: Unterschied zwischen den Versionen
Markierung: Zurückgesetzt |
Markierung: Manuelle Zurücksetzung |
||
Zeile 37: | Zeile 37: | ||
<head> | <head> | ||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jsxgraph/1.4.6/jsxgraphcore.js"></script> | <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jsxgraph/1.4.6/jsxgraphcore.js"></script> | ||
</head> | </head> | ||
<body> | <body> | ||
<div id="box2" style="width: 90vw; max-width: 400px; | <div id="box2" style="width: 90vw; max-width: 400px; aspect-ratio:3/2; margin-top:20px;"></div> | ||
<script type="text/javascript"> | <script type="text/javascript"> | ||
JXG.Options.text.useMathJax = true; | JXG.Options.text.useMathJax = true; | ||
Zeile 57: | Zeile 57: | ||
position: 'rt', | position: 'rt', | ||
offset: [-5, 15], | offset: [-5, 15], | ||
fontSize: | fontSize: 16, | ||
anchorX: 'right' | anchorX: 'right' | ||
}, | }, | ||
Zeile 71: | Zeile 71: | ||
position: 'rt', | position: 'rt', | ||
offset: [15, 5], | offset: [15, 5], | ||
fontSize: | fontSize: 16, | ||
anchorY: 'right' | anchorY: 'right' | ||
}, | }, | ||
Zeile 84: | Zeile 84: | ||
// Funktion erstellen | // Funktion erstellen | ||
var c1 = board.create('functiongraph', [function(t) { | var c1 = board.create('functiongraph', [function(t) { | ||
return (Math.pow(t, 5) / 24 - Math.pow(t, 3) / 2 + t; | return (Math.pow(t, 5) / 24 - Math.pow(t, 3) / 2 + t); | ||
}]); | }]); | ||
Zeile 93: | Zeile 93: | ||
withLabel: true, | withLabel: true, | ||
label: { | label: { | ||
fontSize: | fontSize: 16, | ||
offset: [0, 50], | offset: [0, 50], | ||
digits: 4, | digits: 4, | ||
Zeile 125: | Zeile 125: | ||
// Beschriftung der Funktion mit f | // Beschriftung der Funktion mit f | ||
board.create('text', [3.5, 3, 'f'], { | board.create('text', [3.5, 3, 'f'], { | ||
fontSize: | fontSize: 16, | ||
fixed: true, | fixed: true, | ||
anchorX: 'left', | anchorX: 'left', |