From 4b1a9203c547c019fc5398082ae19a3f3d4c3efe Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:41:15 -0500 Subject: initial commit --- files/de/web/mathml/element/mfrac/index.html | 207 +++++++++++++++++++++++++++ 1 file changed, 207 insertions(+) create mode 100644 files/de/web/mathml/element/mfrac/index.html (limited to 'files/de/web/mathml/element/mfrac') diff --git a/files/de/web/mathml/element/mfrac/index.html b/files/de/web/mathml/element/mfrac/index.html new file mode 100644 index 0000000000..5c9188528f --- /dev/null +++ b/files/de/web/mathml/element/mfrac/index.html @@ -0,0 +1,207 @@ +--- +title: +slug: Web/MathML/Element/mfrac +tags: + - MathML + - 'MathML:Element' + - Referenz +translation_of: Web/MathML/Element/mfrac +--- +
{{MathMLRef}}
+ +

Das Element <mfrac> wird in MathML verwendet, um Brüche darzustellen. (engl. fraction = Bruch, Teil)

+ +

Syntax

+ +
<mfrac>Zähler Nenner</mfrac>
+ +

Attribute

+ +
+
bevelled
+
Dieses Attribut bestimmt die Art der Bruchdarstellung: Wenn es true gesetzt ist, werden Zähler und Nenner nebeneinander gesetzt und durch eine Schrägstrich verbunden. Der Vorgabewert ist false, wobei der Bruch mit einem waagerechten Bruchstrich gesetzt werden.
+
class, id, style
+
Zur Einbindung von CSS-Stylesheets und zur direkten Anwendung von CSS-Angaben.
+
denomalign
+
Die horizontale Ausrichtung des Nenners (unter dem Bruchstrich). Der Standardwert ist center, weiterhin sind left und right möglich.
+
href
+
Mit diesem Attribut kann ein Link gesetzt werden.
+
linethickness
+
Die Dicke des waagerechten Bruchstrichs. Der Vorgabewert ist medium, außerdem können hier thin, thick, und andere Längenangaben gemacht werden.
+
mathbackground
+
Die Hintergrundfarbe. Folgende Notationen sind erlaubt: #rgb, #rrggbb und HTML-Farbnamen.
+
mathcolor
+
Die Textfarbe. Folgende Notationen sind erlaubt: #rgb, #rrggbb und HTML-Farbnamen.
+
numalign
+
Die horizontale Ausrichtung des Zählers (oberhalb des Bruchstrichs). Der Standardwert ist center, weiterhin sind left und right möglich.
+
+ +

Beispiele

+ +

Beispiel: (a/b)/(c/d)

+ +

Darstellung in Deinem Browser: a b c d

+ +
<math>
+  <mfrac bevelled="true">
+     <mfrac>
+        <mi> a </mi>
+        <mi> b </mi>
+     </mfrac>
+     <mfrac>
+        <mi> c </mi>
+        <mi> d </mi>
+     </mfrac>
+  </mfrac>
+</math>
+
+ +

Spezifikationen

+ + + + + + + + + + + + + + + + + + + + + +
StandardStatusBemerkung
{{ SpecName('MathML3', 'chapter3.html#presm.mfrac', 'mfrac') }}{{ Spec2('MathML3') }}Current specification
{{ SpecName('MathML2', 'chapter3.html#presm.mfrac', 'mfrac') }}{{ Spec2('MathML2') }}Initial specification
+ +

Browserkompatibilität

+ +

{{CompatibilityTable}}

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MerkmalChromeFirefox (Gecko)Internet ExplorerOperaSafari
Basic support{{CompatNo}}{{ CompatGeckoDesktop("1.0") }}{{CompatNo}}{{CompatNo}}5.1
bevelled{{CompatNo}}{{ CompatGeckoDesktop("1.0") }}{{CompatNo}}{{CompatNo}}{{CompatNo}}
href{{CompatNo}}{{ CompatGeckoDesktop("7.0") }}{{CompatNo}}{{CompatNo}}{{CompatNo}}
mathbackground{{CompatNo}}{{ CompatGeckoDesktop("2.0") }}{{CompatNo}}{{CompatNo}}5.1
mathcolor{{CompatNo}}{{ CompatGeckoDesktop("2.0") }}{{CompatNo}}{{CompatNo}}5.1
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MerkmalAndroidChrome for AndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
Basic support{{CompatNo}}{{CompatNo}}{{ CompatGeckoMobile("1.0") }}{{CompatNo}}{{CompatNo}}{{CompatNo}}
bevelled{{CompatNo}}{{CompatNo}}{{ CompatGeckoMobile("1.0") }}{{CompatNo}}{{CompatNo}}{{CompatNo}}
href{{CompatNo}}{{CompatNo}}{{ CompatGeckoMobile("7.0") }}{{CompatNo}}{{CompatNo}}{{CompatNo}}
mathbackground{{CompatNo}}{{CompatNo}}{{ CompatGeckoMobile("2.0") }}{{CompatNo}}{{CompatNo}}{{CompatNo}}
mathcolor{{CompatNo}}{{CompatNo}}{{ CompatGeckoMobile("2.0") }}{{CompatNo}}{{CompatNo}}{{CompatNo}}
+
+ +

Hinweise zu Gecko

+ + -- cgit v1.2.3-54-g00ecf