Hauptsatz der Differential- und Integralrechnung: Unterschied zwischen den Versionen

Markierungen: Mobile Bearbeitung Mobile Web-Bearbeitung
Markierung: Zurückgesetzt
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>
 
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
</head>
<body>
<body>
     <div id="box2" style="width: 90vw; max-width: 400px; aspect-ratio:3/2; margin-top:20px;"></div>
     <div id="box2" style="width: 90vw; max-width: 400px; height: 60vw; max-height: 300px; 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: 16,
                         fontSize: 14, // Kleinere Schriftgröße für mobile Geräte
                         anchorX: 'right'
                         anchorX: 'right'
                     },
                     },
Zeile 71: Zeile 71:
                         position: 'rt',
                         position: 'rt',
                         offset: [15, 5],
                         offset: [15, 5],
                         fontSize: 16,
                         fontSize: 14, // Kleinere Schriftgröße für mobile Geräte
                         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: 16,
                 fontSize: 14, // Kleinere Schriftgröße für mobile Geräte
                 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: 16,
             fontSize: 14, // Kleinere Schriftgröße für mobile Geräte
             fixed: true,
             fixed: true,
             anchorX: 'left',
             anchorX: 'left',