two sections left
2476
article.js
@@ -239,13 +239,17 @@ var Graphic = React.createClass({
|
||||
this.refs.canvas.height = h;
|
||||
},
|
||||
|
||||
setCurves: function(c) {
|
||||
this.setCurve(c);
|
||||
},
|
||||
|
||||
setCurve: function(c) {
|
||||
var pts = [];
|
||||
c = Array.prototype.slice.call(arguments);
|
||||
c = (typeof c === "array") ? c : Array.prototype.slice.call(arguments);
|
||||
c.forEach(nc => {
|
||||
pts = pts.concat(nc.points);
|
||||
});
|
||||
this.curve = c.length === 1 ? c[0] : c;
|
||||
this.curve = (c.length === 1) ? c[0] : c;
|
||||
this.lpts = pts;
|
||||
},
|
||||
|
||||
@@ -333,8 +337,11 @@ var Graphic = React.createClass({
|
||||
if(pts.length>2) {
|
||||
this.ctx.strokeStyle = "lightgrey";
|
||||
this.drawLine(pts[0], pts[1], offset);
|
||||
if(pts.length === 3) { this.drawLine(pts[1], pts[2], offset); }
|
||||
else {this.drawLine(pts[2], pts[3], offset); }
|
||||
var last = pts.length-2;
|
||||
for (var i=1; i<last; i++) {
|
||||
this.drawLine(pts[i], pts[i+1], offset);
|
||||
}
|
||||
this.drawLine(pts[last], pts[last+1], offset);
|
||||
}
|
||||
this.ctx.strokeStyle = "black";
|
||||
this.drawPoints(pts, offset);
|
||||
|
@@ -1,3 +1,144 @@
|
||||
var React = require("react");
|
||||
var Graphic = require("../../Graphic.jsx");
|
||||
var SectionHeader = require("../../SectionHeader.jsx");
|
||||
|
||||
var atan2 = Math.atan2, PI = Math.PI, TAU = 2*PI, cos = Math.cos, sin = Math.sin;
|
||||
|
||||
var Introduction = React.createClass({
|
||||
getDefaultProps: function() {
|
||||
return {
|
||||
title: "Approximating Bézier curves with circular arcs"
|
||||
};
|
||||
},
|
||||
|
||||
setupCircle: function(api) {
|
||||
var curve = new api.Bezier(70,70, 140,40, 240,130);
|
||||
api.setCurve(curve);
|
||||
},
|
||||
|
||||
setupQuadratic: function(api) {
|
||||
var curve = api.getDefaultQuadratic();
|
||||
api.setCurve(curve);
|
||||
},
|
||||
|
||||
setupCubic: function(api) {
|
||||
var curve = api.getDefaultCubic();
|
||||
api.setCurve(curve);
|
||||
},
|
||||
|
||||
getCCenter: function(api, p1, p2, p3) {
|
||||
// deltas
|
||||
var dx1 = (p2.x - p1.x),
|
||||
dy1 = (p2.y - p1.y),
|
||||
dx2 = (p3.x - p2.x),
|
||||
dy2 = (p3.y - p2.y);
|
||||
|
||||
// perpendiculars (quarter circle turned)
|
||||
var dx1p = dx1 * cos(PI/2) - dy1 * sin(PI/2),
|
||||
dy1p = dx1 * sin(PI/2) + dy1 * cos(PI/2),
|
||||
dx2p = dx2 * cos(PI/2) - dy2 * sin(PI/2),
|
||||
dy2p = dx2 * sin(PI/2) + dy2 * cos(PI/2);
|
||||
|
||||
// chord midpoints
|
||||
var mx1 = (p1.x + p2.x)/2,
|
||||
my1 = (p1.y + p2.y)/2,
|
||||
mx2 = (p2.x + p3.x)/2,
|
||||
my2 = (p2.y + p3.y)/2;
|
||||
|
||||
// midpoint offsets
|
||||
var mx1n = mx1 + dx1p,
|
||||
my1n = my1 + dy1p,
|
||||
mx2n = mx2 + dx2p,
|
||||
my2n = my2 + dy2p;
|
||||
|
||||
// intersection of these lines:
|
||||
var i = api.utils.lli8(mx1,my1,mx1n,my1n, mx2,my2,mx2n,my2n);
|
||||
var r = api.utils.dist(i,p1);
|
||||
|
||||
// arc start/end values, over mid point
|
||||
var s = atan2(p1.y - i.y, p1.x - i.x),
|
||||
m = atan2(p2.y - i.y, p2.x - i.x),
|
||||
e = atan2(p3.y - i.y, p3.x - i.x);
|
||||
|
||||
// determine arc direction (cw/ccw correction)
|
||||
var __;
|
||||
if (s<e) {
|
||||
// if s<m<e, arc(s, e)
|
||||
// if m<s<e, arc(e, s + TAU)
|
||||
// if s<e<m, arc(e, s + TAU)
|
||||
if (s>m || m>e) { s += TAU; }
|
||||
if (s>e) { __=e; e=s; s=__; }
|
||||
} else {
|
||||
// if e<m<s, arc(e, s)
|
||||
// if m<e<s, arc(s, e + TAU)
|
||||
// if e<s<m, arc(s, e + TAU)
|
||||
if (e<m && m<s) { __=e; e=s; s=__; } else { e += TAU; }
|
||||
}
|
||||
|
||||
// assign and done.
|
||||
i.s = s;
|
||||
i.e = e;
|
||||
i.r = r;
|
||||
return i;
|
||||
},
|
||||
|
||||
drawCircle: function(api, curve) {
|
||||
api.reset();
|
||||
var pts = curve.points;
|
||||
|
||||
// get center
|
||||
var C = this.getCCenter(api, pts[0], pts[1], pts[2]);
|
||||
api.setColor("black");
|
||||
pts.forEach(p => api.drawCircle(p,3));
|
||||
api.drawCircle(C, 3);
|
||||
|
||||
// chords and perpendicular lines
|
||||
api.setColor("blue");
|
||||
api.drawLine(pts[0], pts[1]);
|
||||
api.drawLine({x: (pts[0].x + pts[1].x)/2, y: (pts[0].y + pts[1].y)/2}, C);
|
||||
|
||||
api.setColor("red");
|
||||
api.drawLine(pts[1], pts[2]);
|
||||
api.drawLine({x: (pts[1].x + pts[2].x)/2, y: (pts[1].y + pts[2].y)/2}, C);
|
||||
|
||||
api.setColor("green");
|
||||
api.drawLine(pts[2], pts[0]);
|
||||
api.drawLine({x: (pts[2].x + pts[0].x)/2, y: (pts[2].y + pts[0].y)/2}, C);
|
||||
|
||||
api.setColor("grey");
|
||||
api.drawCircle(C, api.utils.dist(C,pts[0]));
|
||||
},
|
||||
|
||||
drawSingleArc: function(api, curve) {
|
||||
api.reset();
|
||||
var arcs = curve.arcs(0.5);
|
||||
api.drawSkeleton(curve);
|
||||
api.drawCurve(curve);
|
||||
|
||||
var a = arcs[0];
|
||||
api.setColor("red");
|
||||
api.setFill("rgba(200,0,0,0.4)");
|
||||
api.debug = true;
|
||||
api.drawArc(a);
|
||||
},
|
||||
|
||||
drawArcs: function(api, curve) {
|
||||
api.reset();
|
||||
var arcs = curve.arcs(0.5);
|
||||
api.drawSkeleton(curve);
|
||||
api.drawCurve(curve);
|
||||
arcs.forEach(a => {
|
||||
api.setRandomColor(0.3);
|
||||
api.setFill(api.getColor());
|
||||
api.drawArc(a);
|
||||
});
|
||||
},
|
||||
|
||||
render: function() {
|
||||
return (
|
||||
<section>
|
||||
<SectionHeader {...this.props} />
|
||||
|
||||
<p>Let's look at converting Bézier curves into sequences of circular arcs. We already saw in the
|
||||
section on circle approximation that this will never yield a perfect equivalent, but sometimes
|
||||
you need circular arcs, such as when you're working with fabrication machinery, or simple vector
|
||||
@@ -14,40 +155,25 @@
|
||||
<p>So: step 1, how do we find a circle through three points? That part is actually really simple.
|
||||
You may remember (if you ever learned it!) that a line between two points on a circle is called
|
||||
a <a href="https://en.wikipedia.org/wiki/Chord_%28geometry%29">chord</a>, and one property of
|
||||
chords is that the line from the center of the chord, perpendicular to the chord, passes through
|
||||
the center of the circle. So: if we have have three points, we have two (different) chords, and
|
||||
consequently, two (different) lines that go from those chords through the center of the circle:
|
||||
find the centers of the chords, find the perpendicular lines, find the intersection of those lines,
|
||||
find the center of the circle that goes through all three points.</p>
|
||||
chords is that the line from the center of any chord, perpendicular to that chord, passes through
|
||||
the center of the circle.</p>
|
||||
|
||||
<textarea class="sketch-code" data-sketch-preset="simple" data-sketch-title="Finding a circle through three points">
|
||||
void setupCurve() {
|
||||
setupDefaultQuadratic();
|
||||
}
|
||||
<p>So: if we have have three points, we have three (different) chords, and consequently, three
|
||||
(different) lines that go from those chords through the center of the circle. So we find the
|
||||
centers of the chords, find the perpendicular lines, find the intersection of those lines,
|
||||
and thus find the center of the circle.</p>
|
||||
|
||||
void drawCurve(BezierCurve curve) {
|
||||
curve.drawPoints();
|
||||
CircleAbstractor ca = new CircleAbstractor(curve);
|
||||
Point[] p = curve.points;
|
||||
CircleAbstractor.Point cp = ca.getCCenter(p[0], p[1], p[2]);
|
||||
stroke(0,100);
|
||||
noFill();
|
||||
ellipse(cp.x, cp.y, cp.r*2, cp.r*2);
|
||||
ellipse(cp.x, cp.y, 5, 5);
|
||||
fill(0);
|
||||
text((int)cp.x+","+(int)cp.y, cp.x + 5, cp.y+5);
|
||||
<p>The following graphic shows this procedure with a different colour for each chord and its
|
||||
associated perpendicular through the center. You can move the points around as much as you
|
||||
like, those lines will always meet!</p>
|
||||
|
||||
stroke(200,0,0);
|
||||
line(cp.x, cp.y, (p[0].x+p[1].x)/2, (p[0].y+p[1].y)/2);
|
||||
line(p[0].x,p[0].y,p[1].x,p[1].y);
|
||||
|
||||
stroke(0,0,255);
|
||||
line(cp.x, cp.y, (p[1].x+p[2].x)/2, (p[1].y+p[2].y)/2);
|
||||
line(p[2].x,p[2].y,p[1].x,p[1].y);
|
||||
}</textarea>
|
||||
<Graphic preset="simple" title="Finding a circle through three points" setup={this.setupCircle} draw={this.drawCircle} />
|
||||
|
||||
<p>So, with the procedure on how to find a circle through three points, finding the arc through those points
|
||||
is straight-forward. Let's apply this to a Bezier curve:</p>
|
||||
is straight-forward: pick one of the three points as start point, pick another as an end point, and
|
||||
the arc has to necessarily go from the start point, over the remaining point, to the end point.</p>
|
||||
|
||||
<p>So how can we convert a Bezier curve into a (sequence of) circular arc(s)?</p>
|
||||
|
||||
<ul>
|
||||
<li>Start at <em>t=0</em></li>
|
||||
@@ -67,8 +193,8 @@
|
||||
</ul>
|
||||
|
||||
<p>The result of this is shown in the next graphic: we start at a guaranteed failure: s=0, e=1. That's
|
||||
the entire curve. The midpoint is simply at <em>t=0.5</em>, and then we start performing a
|
||||
<a href="https://en.wikipedia.org/wiki/Binary_search_algorithm">Binary Search</a>.</p>
|
||||
the entire curve. The midpoint is simply at <em>t=0.5</em>, and then we start performing
|
||||
a <a href="https://en.wikipedia.org/wiki/Binary_search_algorithm">Binary Search</a>.</p>
|
||||
|
||||
<ol>
|
||||
<li>We start with {0, 0.5, 1}</li>
|
||||
@@ -88,31 +214,7 @@
|
||||
and you can use your '+' and '-' keys to increase to decrease the error threshold, to see what the effect
|
||||
of a smaller or larger error threshold is.</p>
|
||||
|
||||
<textarea class="sketch-code" data-sketch-preset="simple" data-sketch-title="Arc approximation of a Bézier curve">
|
||||
void setupCurve() {
|
||||
setupDefaultCubic();
|
||||
offsetting();
|
||||
offset = 5;
|
||||
}
|
||||
|
||||
void drawCurve(BezierCurve curve) {
|
||||
double threshold = 0.5;
|
||||
if (offset < 1) offset = 1;
|
||||
if (0 < offset && offset < 10) threshold = offset/10;
|
||||
else if (10 < offset && offset < 110) threshold = offset-10;
|
||||
else if (110 < offset) threshold = 100 + (offset-110)*10;
|
||||
|
||||
curve.draw();
|
||||
CircleAbstractor ca = new CircleAbstractor(curve, threshold);
|
||||
stroke(255,0,0);
|
||||
fill(0,50);
|
||||
for (CircleAbstractor.Point c : ca.getCircles()) {
|
||||
arc(c.x, c.y, 2*c.r, 2*c.r, c.s, c.e);
|
||||
break;
|
||||
}
|
||||
fill(0);
|
||||
text("error threshold: "+ca.errorThreshold, 5, 15);
|
||||
}</textarea>
|
||||
<Graphic preset="simple" title="Arc approximation of a Bézier curve" setup={this.setupCubic} draw={this.drawSingleArc} />
|
||||
|
||||
<p>With that in place, all that's left now is to "restart" the procedure by treating the found arc's
|
||||
end point as the new to-be-determined arc's starting point, and using points further down the curve. We
|
||||
@@ -121,33 +223,7 @@
|
||||
so you can see how picking a different threshold changes the number of arcs that are necessary to
|
||||
reasonably approximate a curve:</p>
|
||||
|
||||
<textarea class="sketch-code" data-sketch-preset="simple" data-sketch-title="Arc approximation of a Bézier curve">
|
||||
void setupCurve() {
|
||||
setupDefaultCubic();
|
||||
offsetting();
|
||||
offset = 5;
|
||||
}
|
||||
|
||||
void drawCurve(BezierCurve curve) {
|
||||
double threshold = 0.5;
|
||||
if (offset < 1) offset = 1;
|
||||
if (0 < offset && offset < 10) threshold = offset/10;
|
||||
else if (10 < offset && offset < 110) threshold = offset-10;
|
||||
else if (110 < offset) threshold = 100 + (offset-110)*10;
|
||||
|
||||
CircleAbstractor ca = new CircleAbstractor(curve, threshold);
|
||||
stroke(255,0,0);
|
||||
fill(0,50);
|
||||
ArrayList<CircleAbstractor.Point> circles = ca.getCircles();
|
||||
for (CircleAbstractor.Point c : circles) {
|
||||
arc(c.x, c.y, 2*c.r, 2*c.r, c.s, c.e);
|
||||
}
|
||||
curve.drawControlLines();
|
||||
curve.drawPoints();
|
||||
fill(0);
|
||||
text("error threshold: "+ca.errorThreshold, 5, 15);
|
||||
text("Approximated the curve using " + circles.size() + " arcs.", 5, dim-5);
|
||||
}</textarea>
|
||||
<Graphic preset="simple" title="Arc approximation of a Bézier curve" setup={this.setupCubic} draw={this.drawArcs} />
|
||||
|
||||
<p>So... what is this good for? Obviously, If you're working with technologies that can't do curves,
|
||||
but can do lines and circles, then the answer is pretty straight-forward, but what else? There are
|
||||
@@ -161,3 +237,9 @@
|
||||
approximation are guaranteed "off" by some small value, and depending on how much precision you
|
||||
need, arc approximation is either going to be super useful, or completely useless. It's up to you
|
||||
to decide which, based on your application!</p>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
module.exports = Introduction;
|
@@ -1,3 +1,74 @@
|
||||
var React = require("react");
|
||||
var Graphic = require("../../Graphic.jsx");
|
||||
var SectionHeader = require("../../SectionHeader.jsx");
|
||||
|
||||
var sin = Math.sin, cos = Math.cos;
|
||||
|
||||
var Circles = React.createClass({
|
||||
getDefaultProps: function() {
|
||||
return {
|
||||
title: "Circles and quadratic Bézier curves"
|
||||
};
|
||||
},
|
||||
|
||||
setup: function(api) {
|
||||
api.w = api.getPanelWidth();
|
||||
api.h = api.getPanelHeight();
|
||||
api.pad = 20;
|
||||
api.r = api.w/2 - api.pad;
|
||||
api.mousePt = false;
|
||||
api.angle = 0;
|
||||
var spt = { x: api.w-api.pad, y: api.h/2 };
|
||||
api.setCurve(new api.Bezier(spt, spt, spt));
|
||||
},
|
||||
|
||||
draw: function(api, curve) {
|
||||
api.reset();
|
||||
api.setColor("lightgrey");
|
||||
api.drawGrid(1,1);
|
||||
api.setColor("red");
|
||||
api.drawCircle({x:api.w/2,y:api.h/2},api.r);
|
||||
api.setColor("transparent");
|
||||
api.setFill("rgba(100,255,100,0.4)");
|
||||
var p = {
|
||||
x: api.w/2,
|
||||
y: api.h/2,
|
||||
r: api.r,
|
||||
s: api.angle < 0 ? api.angle : 0,
|
||||
e: api.angle < 0 ? 0 : api.angle,
|
||||
};
|
||||
api.drawArc(p);
|
||||
api.setColor("black");
|
||||
api.drawSkeleton(curve);
|
||||
api.drawCurve(curve);
|
||||
},
|
||||
|
||||
onMouseMove: function(evt, api) {
|
||||
var x = evt.offsetX - api.w/2,
|
||||
y = evt.offsetY - api.h/2;
|
||||
var angle = Math.atan2(y,x);
|
||||
var pts = api.curve.points;
|
||||
// new control
|
||||
var r = api.r,
|
||||
b = (cos(angle) - 1) / sin(angle);
|
||||
pts[1] = {
|
||||
x: api.w/2 + r * (cos(angle) - b * sin(angle)),
|
||||
y: api.w/2 + r * (sin(angle) + b * cos(angle))
|
||||
};
|
||||
// new endpoint
|
||||
pts[2] = {
|
||||
x: api.w/2 + api.r * cos(angle),
|
||||
y: api.w/2 + api.r * sin(angle)
|
||||
};
|
||||
api.setCurve(new api.Bezier(pts));
|
||||
api.angle = angle;
|
||||
},
|
||||
|
||||
render: function() {
|
||||
return (
|
||||
<section>
|
||||
<SectionHeader {...this.props} />
|
||||
|
||||
<p>Circles and Bézier curves are very different beasts, and circles are infinitely easier
|
||||
to work with than Bézier curves. Their formula is much simpler, and they can be drawn more
|
||||
efficiently. But, sometimes you don't have the luxury of using circles, or ellipses, or
|
||||
@@ -26,32 +97,7 @@
|
||||
you can move the mouse around over a unit circle, to see how well, or poorly, a quadratic
|
||||
curve can approximate the arc from (1,0) to where your mouse cursor is:</p>
|
||||
|
||||
<textarea class="sketch-code" data-sketch-preset="arcfitting" data-sketch-title="Quadratic Bézier arc approximation">
|
||||
void setupCurve() { order = 2; }
|
||||
|
||||
void checkConnect() {
|
||||
if((s==0 && e>PI/2) || s<-PI/2) { connect(); }
|
||||
else { noConnect(); }
|
||||
}
|
||||
|
||||
void findArcFitting() {
|
||||
Point[] points = {
|
||||
new Point(dim/2 + dim/f2, dim/2),
|
||||
new Point(dim/2, dim/2),
|
||||
new Point(dim/2 + dim/f2*cos(ax), dim/2 + dim/f2*sin(ay))
|
||||
};
|
||||
Point c = comp.lli(new Point[]{
|
||||
points[0],
|
||||
new Point(points[0].x, points[0].y + 10),
|
||||
points[2],
|
||||
new Point(points[2].x + dx, points[2].y + dy)
|
||||
});
|
||||
if(c==null) return;
|
||||
points[1] = c;
|
||||
BezierCurve bc = new BezierCurve(points);
|
||||
bc.draw();
|
||||
bc.getPoint(0.5).draw();
|
||||
}</textarea>
|
||||
<Graphic preset="arcfitting" title="Quadratic Bézier arc approximation" setup={this.setup} draw={this.draw} onMouseMove={this.onMouseMove}/>
|
||||
|
||||
<p>As you can see, things go horribly wrong quite quickly; even trying to approximate a quarter circle
|
||||
using a quadratic curve is a bad idea. An eighth of a turns might look okay, but how okay is okay?
|
||||
@@ -82,10 +128,15 @@
|
||||
<p>\[ \begin{array}{l}
|
||||
1 = cos(φ) + b \cdot -sin(φ) \ → \
|
||||
1 - cos(φ) = -b \cdot sin(φ) \ → \
|
||||
-1 + cos(φ) = b \cdot sin(φ) \\ \\
|
||||
b = \frac{-1 + cos(φ)}{sin(φ)}
|
||||
-1 + cos(φ) = b \cdot sin(φ)
|
||||
\end{array} \]</p>
|
||||
|
||||
<p>which yields:</p>
|
||||
|
||||
<p>\[
|
||||
b = \frac{cos(φ)-1}{sin(φ)}
|
||||
\]</p>
|
||||
|
||||
<p>which we can then substitute in the expression for <i>a</i>:</p>
|
||||
|
||||
<p>\[ \begin{align*}
|
||||
@@ -109,11 +160,13 @@
|
||||
<p>We compute T, observing that if <i>t=0.5</i>, the polynomial values (1-t)², 2(1-t)t, and t²
|
||||
are 0.25, 0.5, and 0.25 respectively:</p>
|
||||
|
||||
<p>\[
|
||||
T = \frac{1}{4}S + \frac{2}{4}C + \frac{1}{4}E = \frac{1}{4}(S + 2C + E)
|
||||
\]</p>
|
||||
|
||||
<p>Which, worked out for the x and y components, gives:</p>
|
||||
|
||||
<p>\[\begin{array}{l}
|
||||
T = \frac{1}{4}S + \frac{2}{4}C + \frac{1}{4}E = \frac{1}{4}(S + 2C + E) \\
|
||||
|
||||
= \
|
||||
|
||||
\left\{\begin{align*}
|
||||
T_x &= \frac{1}{4}(3 + cos(φ))\\
|
||||
T_y &= \frac{1}{4}\left(\frac{2-2cos(φ)}{sin(φ)} + sin(φ)\right)
|
||||
@@ -123,29 +176,38 @@
|
||||
|
||||
<p>And the distance between these two is the standard Euclidean distance:</p>
|
||||
|
||||
<p>\[\begin{array}{l}
|
||||
d_x(φ) = T_x - P_x = \frac{1}{4}(3 + cos(φ)) - cos(\frac{φ}{2}) = 2sin^4\left(\frac{φ}{4}\right) \ , \\
|
||||
d_y(φ) = T_y - P_y = \frac{1}{4}\left(2tan\left(\frac{φ}{2}\right) + sin(φ)\right) - sin(\frac{φ}{2}) \ , \\
|
||||
d(φ) = \sqrt{d^2_x + d^2_y} = \ ... \ = 2sin^4(\frac{φ}{2})\sqrt{\frac{1}{cos^2(\frac{φ}{2})}}
|
||||
\end{array}\]</p>
|
||||
<p>\[\begin{align}
|
||||
d_x(φ) &= T_x - P_x = \frac{1}{4}(3 + cos(φ)) - cos(\frac{φ}{2}) = 2sin^4\left(\frac{φ}{4}\right) \ , \\
|
||||
d_y(φ) &= T_y - P_y = \frac{1}{4}\left(2tan\left(\frac{φ}{2}\right) + sin(φ)\right) - sin(\frac{φ}{2}) \ , \\
|
||||
&⇓\\
|
||||
d(φ) &= \sqrt{d^2_x + d^2_y} = \ ... \ = 2sin^4(\frac{φ}{2})\sqrt{\frac{1}{cos^2(\frac{φ}{2})}}
|
||||
\end{align}\]</p>
|
||||
|
||||
<p>So, what does this distance function look like when we plot it for a
|
||||
number of ranges for the angle φ, such as a half circle, quarter circle and eighth circle?</p>
|
||||
|
||||
<table><tr><td>
|
||||
<p><a href="http://www.wolframalpha.com/input/?i=plot+sqrt%28%281%2F4+*+%28sin%28x%29+%2B+2tan%28x%2F2%29%29+-+sin%28x%2F2%29%29%5E2+%2B+%282sin%5E4%28x%2F4%29%29%5E2%29+for+0+%3C%3D+x+%3C%3D+pi"><img
|
||||
src="images/arc-q-pi.gif"
|
||||
></a></p>
|
||||
<table><tbody><tr><td>
|
||||
<p>
|
||||
<a href="http://www.wolframalpha.com/input/?i=plot+sqrt%28%281%2F4+*+%28sin%28x%29+%2B+2tan%28x%2F2%29%29+-+sin%28x%2F2%29%29%5E2+%2B+%282sin%5E4%28x%2F4%29%29%5E2%29+for+0+%3C%3D+x+%3C%3D+pi">
|
||||
<img src="images/arc-q-pi.gif"/>
|
||||
</a>
|
||||
</p>
|
||||
<p>plotted for 0 ≤ φ ≤ π:</p>
|
||||
</td><td>
|
||||
<p><a href="http://www.wolframalpha.com/input/?i=plot+sqrt%28%281%2F4+*+%28sin%28x%29+%2B+2tan%28x%2F2%29%29+-+sin%28x%2F2%29%29%5E2+%2B+%282sin%5E4%28x%2F4%29%29%5E2%29+for+0+%3C%3D+x+%3C%3D+pi%2F2"><img
|
||||
src="images/arc-q-pi2.gif"></a></p>
|
||||
<p>
|
||||
<a href="http://www.wolframalpha.com/input/?i=plot+sqrt%28%281%2F4+*+%28sin%28x%29+%2B+2tan%28x%2F2%29%29+-+sin%28x%2F2%29%29%5E2+%2B+%282sin%5E4%28x%2F4%29%29%5E2%29+for+0+%3C%3D+x+%3C%3D+pi%2F2">
|
||||
<img src="images/arc-q-pi2.gif"/>
|
||||
</a>
|
||||
</p>
|
||||
<p>plotted for 0 ≤ φ ≤ ½π:</p>
|
||||
</td><td>
|
||||
<p><a href="http://www.wolframalpha.com/input/?i=plot+sqrt%28%281%2F4+*+%28sin%28x%29+%2B+2tan%28x%2F2%29%29+-+sin%28x%2F2%29%29%5E2+%2B+%282sin%5E4%28x%2F4%29%29%5E2%29+for+0+%3C%3D+x+%3C%3D+pi%2F4"><img
|
||||
src="images/arc-q-pi4.gif"></a></p>
|
||||
<p>
|
||||
<a href="http://www.wolframalpha.com/input/?i=plot+sqrt%28%281%2F4+*+%28sin%28x%29+%2B+2tan%28x%2F2%29%29+-+sin%28x%2F2%29%29%5E2+%2B+%282sin%5E4%28x%2F4%29%29%5E2%29+for+0+%3C%3D+x+%3C%3D+pi%2F4">
|
||||
<img src="images/arc-q-pi4.gif"/>
|
||||
</a>
|
||||
</p>
|
||||
<p>plotted for 0 ≤ φ ≤ ¼π:</p>
|
||||
</td></tr></table>
|
||||
</td></tr></tbody></table>
|
||||
|
||||
<p>We now see why the eighth circle arc looks decent, but the quarter circle arc doesn't:
|
||||
an error of roughly 0.06 at <i>t=0.5</i> means we're 6% off the mark... we will already be
|
||||
@@ -165,13 +227,20 @@
|
||||
φ = 4 \cdot arccos \left(\frac{\sqrt{2+ε-\sqrt{ε(2+ε)}}}{\sqrt{2}}\right)
|
||||
\]</p>
|
||||
|
||||
<p>Things are starting to look, frankly, a bit ridiculous at this point, but this is as far
|
||||
as we need the math to take us. If we plug in the precisions 0.1, 0.01, 0.001 and 0.0001 we
|
||||
get the values 1.748, 1.038, 0.594 and 0.3356; in degrees, roughly 100 (requiring four curves),
|
||||
59.5 (requiring six curves), 34 (requiring 11 curves), and 19.2 (requiring a whopping nineteen
|
||||
curves). </p>
|
||||
<p>And frankly, things are starting to look a bit ridiculous at this point, we're doing way more
|
||||
maths than we've ever done, but thankfully this is as far as we need the maths to take us:
|
||||
If we plug in the precisions 0.1, 0.01, 0.001 and 0.0001 we get the radians values 1.748, 1.038, 0.594
|
||||
and 0.3356; in degrees, that means we can cover roughly 100 degrees (requiring four curves),
|
||||
59.5 degrees (requiring six curves), 34 degrees (requiring 11 curves), and 19.2 degrees (requiring
|
||||
a whopping nineteen curves). </p>
|
||||
|
||||
<p>The bottom line? <strong>Quadratic curves are kind of lousy</strong> if you want circular
|
||||
(or elliptical, which are circles that have been squashed in one dimension) curves. We
|
||||
can do better, even if it's just by raising the order of our curve once. So let's try the
|
||||
same thing for cubic curves.</p>
|
||||
same thing for cubic curves.</p>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
module.exports = Circles;
|
444
components/sections/circles_cubic/index.js
Normal file
@@ -0,0 +1,444 @@
|
||||
var React = require("react");
|
||||
var Graphic = require("../../Graphic.jsx");
|
||||
var SectionHeader = require("../../SectionHeader.jsx");
|
||||
|
||||
var sin = Math.sin, cos = Math.cos, tan = Math.tan, abs = Math.abs;
|
||||
|
||||
var CirclesCubic = React.createClass({
|
||||
getDefaultProps: function() {
|
||||
return {
|
||||
title: "Circles and cubic Bézier curves"
|
||||
};
|
||||
},
|
||||
|
||||
setup: function(api) {
|
||||
api.setSize(400,400);
|
||||
api.w = api.getPanelWidth();
|
||||
api.h = api.getPanelHeight();
|
||||
api.pad = 80;
|
||||
api.r = api.w/2 - api.pad;
|
||||
api.mousePt = false;
|
||||
api.angle = 0;
|
||||
var spt = { x: api.w-api.pad, y: api.h/2 };
|
||||
api.setCurve(new api.Bezier(spt, spt, spt, spt));
|
||||
},
|
||||
|
||||
guessCurve: function(S, B, E) {
|
||||
var C = {
|
||||
x: (S.x + E.x)/2,
|
||||
y: (S.y + E.y)/2
|
||||
},
|
||||
A = {
|
||||
x: B.x + (B.x-C.x)/3, // cubic ratio at t=0.5 is 1/3
|
||||
y: B.y + (B.y-C.y)/3
|
||||
},
|
||||
bx = (E.x-S.x)/4,
|
||||
by = (E.y-S.y)/4,
|
||||
e1 = {
|
||||
x: B.x - bx,
|
||||
y: B.y - by
|
||||
},
|
||||
e2 = {
|
||||
x: B.x + bx,
|
||||
y: B.y + by
|
||||
},
|
||||
|
||||
v1 = {
|
||||
x: A.x + (e1.x-A.x)*2,
|
||||
y: A.y + (e1.y-A.y)*2
|
||||
},
|
||||
v2 = {
|
||||
x: A.x + (e2.x-A.x)*2,
|
||||
y: A.y + (e2.y-A.y)*2
|
||||
},
|
||||
|
||||
nc1 = {
|
||||
x: S.x + (v1.x-S.x)*2,
|
||||
y: S.y + (v1.y-S.y)*2
|
||||
},
|
||||
nc2 = {
|
||||
x: E.x + (v2.x-E.x)*2,
|
||||
y: E.y + (v2.y-E.y)*2
|
||||
};
|
||||
return [nc1, nc2];
|
||||
},
|
||||
|
||||
draw: function(api, curve) {
|
||||
api.reset();
|
||||
|
||||
api.setColor("lightgrey");
|
||||
api.drawGrid(1,1);
|
||||
api.setColor("rgba(255,0,0,0.4)");
|
||||
api.drawCircle({x:api.w/2,y:api.h/2},api.r);
|
||||
api.setColor("transparent");
|
||||
api.setFill("rgba(100,255,100,0.4)");
|
||||
var p = {
|
||||
x: api.w/2,
|
||||
y: api.h/2,
|
||||
r: api.r,
|
||||
s: api.angle < 0 ? api.angle : 0,
|
||||
e: api.angle < 0 ? 0 : api.angle,
|
||||
};
|
||||
api.drawArc(p);
|
||||
|
||||
// guessed curve
|
||||
var B = {
|
||||
x: api.w/2 + api.r * cos(api.angle/2),
|
||||
y: api.w/2 + api.r * sin(api.angle/2)
|
||||
};
|
||||
var S = curve.points[0],
|
||||
E = curve.points[3],
|
||||
nc = this.guessCurve(S,B,E);
|
||||
var guess = new api.Bezier([S, nc[0], nc[1], E]);
|
||||
api.setColor("rgb(140,140,255)");
|
||||
api.drawLine(guess.points[0], guess.points[1]);
|
||||
api.drawLine(guess.points[1], guess.points[2]);
|
||||
api.drawLine(guess.points[2], guess.points[3]);
|
||||
api.setColor("blue");
|
||||
api.drawCurve(guess);
|
||||
api.drawCircle(guess.points[1], 3);
|
||||
api.drawCircle(guess.points[2], 3);
|
||||
|
||||
// real curve
|
||||
var offset = {x:api.w, y:0};
|
||||
api.drawSkeleton(curve);
|
||||
api.setColor("black");
|
||||
api.drawLine(curve.points[1], curve.points[2]);
|
||||
api.drawCurve(curve);
|
||||
},
|
||||
|
||||
onMouseMove: function(evt, api) {
|
||||
var x = evt.offsetX - api.w/2,
|
||||
y = evt.offsetY - api.h/2;
|
||||
if (x>api.w/2) return;
|
||||
|
||||
var angle = Math.atan2(y,x);
|
||||
if (angle < 0) {
|
||||
angle = 2*Math.PI + angle;
|
||||
}
|
||||
var pts = api.curve.points;
|
||||
// new control 1
|
||||
var r = api.r,
|
||||
f = (4 * tan(angle/4)) /3;
|
||||
pts[1] = {
|
||||
x: api.w/2 + r,
|
||||
y: api.w/2 + r * f
|
||||
};
|
||||
// new control 2
|
||||
pts[2] = {
|
||||
x: api.w/2 + api.r * (cos(angle) + f*sin(angle)),
|
||||
y: api.w/2 + api.r * (sin(angle) - f*cos(angle))
|
||||
};
|
||||
// new endpoint
|
||||
pts[3] = {
|
||||
x: api.w/2 + api.r * cos(angle),
|
||||
y: api.w/2 + api.r * sin(angle)
|
||||
};
|
||||
api.setCurve(new api.Bezier(pts));
|
||||
api.angle = angle;
|
||||
},
|
||||
|
||||
drawCircle: function(api) {
|
||||
api.setSize(325,325);
|
||||
api.reset();
|
||||
var w = api.getPanelWidth(),
|
||||
h = api.getPanelHeight(),
|
||||
pad = 60,
|
||||
r = w/2 - pad,
|
||||
k = 0.55228,
|
||||
offset = {x: -pad/2, y:0};
|
||||
var curve = new api.Bezier([
|
||||
{x:w/2 + r, y:h/2},
|
||||
{x:w/2 + r, y:h/2 + k*r},
|
||||
{x:w/2 + k*r, y:h/2 + r},
|
||||
{x:w/2, y:h/2 + r}
|
||||
]);
|
||||
api.setColor("lightgrey");
|
||||
api.drawLine({x:0,y:h/2}, {x:w+pad,y:h/2}, offset);
|
||||
api.drawLine({x:w/2,y:0}, {x:w/2,y:h}, offset);
|
||||
|
||||
var pts = curve.points;
|
||||
|
||||
api.setColor("red");
|
||||
api.drawCircle(pts[0], 3, offset);
|
||||
api.drawCircle(pts[1], 3, offset);
|
||||
api.drawCircle(pts[2], 3, offset);
|
||||
api.drawCircle(pts[3], 3, offset);
|
||||
api.drawCurve(curve, offset);
|
||||
api.setColor("rgb(255,160,160)");
|
||||
api.drawLine(pts[0],pts[1],offset);
|
||||
api.drawLine(pts[1],pts[2],offset);
|
||||
api.drawLine(pts[2],pts[3],offset);
|
||||
|
||||
api.setFill("red");
|
||||
api.text((pts[0].x - w/2) + "," + (pts[0].y - h/2), {x: pts[0].x + 7, y: pts[0].y + 3}, offset);
|
||||
api.text((pts[1].x - w/2) + "," + (pts[1].y - h/2), {x: pts[1].x + 7, y: pts[1].y + 3}, offset);
|
||||
api.text((pts[2].x - w/2) + "," + (pts[2].y - h/2), {x: pts[2].x + 7, y: pts[2].y + 7}, offset);
|
||||
api.text((pts[3].x - w/2) + "," + (pts[3].y - h/2), {x: pts[3].x, y: pts[3].y + 13}, offset);
|
||||
|
||||
pts.forEach(p => {
|
||||
p.x = -(p.x - w);
|
||||
});
|
||||
api.setColor("blue");
|
||||
api.drawCurve(curve, offset);
|
||||
|
||||
pts.forEach(p => {
|
||||
p.y = -(p.y - h);
|
||||
});
|
||||
api.setColor("green");
|
||||
api.drawCurve(curve, offset);
|
||||
|
||||
pts.forEach(p => {
|
||||
p.x = -(p.x - w);
|
||||
});
|
||||
api.setColor("purple");
|
||||
api.drawCurve(curve, offset);
|
||||
|
||||
api.setColor("black");
|
||||
api.setFill("black");
|
||||
api.drawLine({x:w/2, y:h/2}, {x:w/2 + r -2, y:h/2}, offset);
|
||||
api.drawLine({x:w/2, y:h/2}, {x:w/2, y:h/2 + r -2}, offset);
|
||||
api.text("r = " + r, {x:w/2 + r/3, y:h/2 + 10}, offset);
|
||||
},
|
||||
|
||||
render: function() {
|
||||
return (
|
||||
<section>
|
||||
<SectionHeader {...this.props} />
|
||||
|
||||
<p>In the previous section we tried to approximate a circular arc with a quadratic curve,
|
||||
and it mostly made us unhappy. Cubic curves are much better suited to this task, so what
|
||||
do we need to do?</p>
|
||||
|
||||
<p>For cubic curves, we basically want the curve to pass through three points on the circle:
|
||||
the start point, the mid point at "angle/2", and the end point at "angle". We then also need
|
||||
to make sure the control points are such that the start and end tangent lines line up with the
|
||||
circle's tangent lines at the start and end point.</p>
|
||||
|
||||
<p>The first thing we can do is "guess" what the curve should look like, based on the previously
|
||||
outlined curve-through-three-points procedure. This will give use a curve with correct start, mid
|
||||
and end points, but possibly incorrect derivatives at the start and end, because the control points
|
||||
might not be in the right spot. We can then slide the control points along the lines that connect
|
||||
them to their respective end point, until they effect the corrected derivative at the start and
|
||||
end points. However, if you look back at the section on fitting curves through three points, the
|
||||
rules used were such that they optimized for a near perfect hemisphere, so using the same guess
|
||||
won't be all that useful: guessing the solution based on knowing the solution is not really guessing.</p>
|
||||
|
||||
<p>So have a graphical look at a "bad" guess versus the true fit, where we'll be using the
|
||||
bad guess and the description in the second paragraph to derive the maths for the true fit:</p>
|
||||
|
||||
<Graphic preset="arcfitting" title="Cubic Bézier arc approximation" setup={this.setup} draw={this.draw} onMouseMove={this.onMouseMove}/>
|
||||
|
||||
<p>We see two curves here; in blue, our "guessed" curve and its control points, and in grey/black,
|
||||
the true curve fit, with proper control points that were shifted in, along line between our guessed
|
||||
control points, such that the derivatives at the start and end points are correct.</p>
|
||||
|
||||
<p>We can already seethat cubic curves are a lot better than quadratic curves, and don't look all
|
||||
that wrong until we go well past a quarter circle; ⅜th starts to hint at problems, and half a circle
|
||||
has an obvious "gap" between the real circle and the cubic approximation. Anything past that just looks
|
||||
plain ridiculous... but quarter curves actually look pretty okay!</p>
|
||||
|
||||
<p>So, maths time again: how okay is "okay"? Let's apply some more maths to find out.</p>
|
||||
|
||||
<p>Unlike for the quadratic curve, we can't use <i>t=0.5</i> as our reference point because by its
|
||||
very nature it's one of the three points that are actually guaranteed to lie on the circular curve.
|
||||
Instead, we need a different <i>t</i> value. If we run some analysis on the curve we find that the
|
||||
actual <i>t</i> value at which the curve is furthest from what it should be is 0.211325 (rounded),
|
||||
but we don't know "why", since finding this value involves root-finding, and is nearly impossible
|
||||
to do symbolically without pages and pages of math just to express one of the possible solutions.</p>
|
||||
|
||||
<p>So instead of walking you through the derivation for that value, let's simply take that <i>t</i> value
|
||||
and see what the error is for circular arcs with an angle ranging from 0 to 2π:</p>
|
||||
|
||||
<table><tbody><tr><td>
|
||||
<p><img src="images/arc-c-2pi.gif"/></p>
|
||||
<p>plotted for 0 ≤ φ ≤ 2π:</p>
|
||||
</td><td>
|
||||
<p><img src="images/arc-c-pi.gif"/></p>
|
||||
<p>plotted for 0 ≤ φ ≤ π:</p>
|
||||
</td><td>
|
||||
<p><img src="images/arc-c-pi2.gif"/></p>
|
||||
<p>plotted for 0 ≤ φ ≤ ½π:</p>
|
||||
</td></tr></tbody></table>
|
||||
|
||||
<p>We see that cubic Bézier curves are much better when it comes to approximating circular arcs,
|
||||
with an error of less than 0.027 at the two "bulge" points for a quarter circle (which had an
|
||||
error of 0.06 for quadratic curves at the mid point), and an error near 0.001 for an eighth
|
||||
of a circle, so we're getting less than half the error for a quarter circle, or: at a slightly
|
||||
lower error, we're getting twice the arc. This makes cubic curves quite useful!</p>
|
||||
|
||||
<p>In fact, the precision of a cubic curve at a quarter circle is considered "good enough" by
|
||||
so many people that it's generally considered "just fine" to use four cubic Bézier curves to
|
||||
fake a full circle when no circle primitives are available; generally, people won't notice
|
||||
that it's not a real circle unless you also happen to overlay an actual circle, so that
|
||||
the difference becomes obvious.</p>
|
||||
|
||||
<p>So with the error analysis out of the way, how do we actually compute the coordinates
|
||||
needed to get that "true fit" cubic curve? The first observation is that we already know
|
||||
the start and end points, because they're the same as for the quadratic attempt:</p>
|
||||
|
||||
<p>\[ S = \begin{pmatrix} 1 \\ 0 \end{pmatrix} \ , \ \ E = \begin{pmatrix} cos(φ) \\ sin(φ) \end{pmatrix} \]</p>
|
||||
|
||||
<p>But we now need to find two control points, rather than one. If we want the derivatives
|
||||
at the start and end point to match the circle, then the first control point can only lie
|
||||
somewhere on the vertical line through S, and the second control point can only lie somewhere
|
||||
on the line tangent to point E, which means:</p>
|
||||
|
||||
<p>\[
|
||||
C_1 = S + a \cdot \begin{pmatrix} 0 \\ 1 \end{pmatrix}
|
||||
\]</p>
|
||||
|
||||
<p>where "a" is some scaling factor, and:</p>
|
||||
|
||||
<p>\[
|
||||
C_2 = E + b \cdot \begin{pmatrix} -sin(φ) \\ cos(φ) \end{pmatrix}
|
||||
\]</p>
|
||||
|
||||
<p>where "b" is also some scaling factor.</p>
|
||||
|
||||
<p>Starting with this information, we slowly maths our way to success, but I won't lie: the maths for
|
||||
this is pretty trig-heavy, and it's easy to get lost if you remember (or know!) some of the core
|
||||
trigonoetric identities, so if you just want to see the final result just skip past the next section!</p>
|
||||
|
||||
<div className="note">
|
||||
<h2>Let's do this thing.</h2>
|
||||
|
||||
<p>Unlike for the quadratic case, we need some more information in order to compute <i>a</i> and <i>b</i>,
|
||||
since they're no longer dependent variables. First, we observe that the curve is symmetrical, so whatever
|
||||
values we end up finding for C<sub>1</sub> will apply to C<sub>2</sub> as well (rotated along its tangent),
|
||||
so we'll focus on finding the location of C<sub>1</sub> only. So here's where we do something that you might
|
||||
not expect: we're going to ignore for a moment, because we're going to have a much easier time if we just
|
||||
solve this problem with geometry first, then move to calculus to solve a much simpler problem.</p>
|
||||
|
||||
<p>If we look at the triangle that is formed between our starting point, or initial guess C<sub>1</sub>
|
||||
and our real C<sub>1</sub>, there's something funny going on: if we treat the line {start,guess} as
|
||||
our opposite side, the line {guess,real} as our adjacent side, with {start,real} our hypothenuse, then
|
||||
the angle for the corner hypothenuse/adjacent is half that of the arc we're covering. Try it: if you
|
||||
place the end point at a quarter circle (pi/2, or 90 degrees), the angle in our triangle is half a
|
||||
quarter (pi/4, or 45 degrees). With that knowledge, and a knowledge of what the length of any of
|
||||
our lines segments are (as a function), we can determine where our control points are, and thus have
|
||||
everything we need to find the error distance function. Of the three lines, the one we can easiest
|
||||
determine is {start,guess}, so let's find out what the guessed control point is. Again geometrically,
|
||||
because we have the benefit of an on-curve <i>t=0.5</i> value.</p>
|
||||
|
||||
<p>The distance from our guessed point to the start point is exactly the same as the projection distance
|
||||
we looked at earlier. Using <i>t=0.5</i> as our point "B" in the "A,B,C" projection, then we know the
|
||||
length of the line segment {C,A}, since it's d<sub>1</sub> = {A,B} + d<sub>2</sub> = {B,C}:</p>
|
||||
|
||||
<p>\[
|
||||
||{A,C}|| = d_2 + d_1 = d_2 + d_2 \cdot ratio_3 \left(\frac{1}{2}\right) = d_2 + \frac{1}{3}d_2 = \frac{4}{3}d_2
|
||||
\]</p>
|
||||
|
||||
<p>So that just leaves us to find the distance from <i>t=0.5</i> to the baseline for an arbitrary
|
||||
angle φ, which is the distance from the centre of the circle to our <i>t=0.5</i> point, minus the
|
||||
distance from the centre to the line that runs from start point to end point. The first is the
|
||||
same as the point P we found for the quadratic curve:</p>
|
||||
|
||||
<p>\[
|
||||
P_x = cos(\frac{φ}{2}) \ , \ \ P_y = sin(\frac{φ}{2})
|
||||
\]</p>
|
||||
|
||||
<p>And the distance from the origin to the line start/end is another application of angles,
|
||||
since the triangle {origin,start,C} has known angles, and two known sides. We can find
|
||||
the length of the line {origin,C}, which lets us trivially compute the coordinate for C:</p>
|
||||
|
||||
<p>\[\begin{array}{l}
|
||||
l = cos(\frac{φ}{2}) \ , \\
|
||||
\left\{\begin{array}{l}
|
||||
C_x = l \cdot cos\left(\frac{φ}{2}\right) = cos^2\left(\frac{φ}{2}\right)\ , \\
|
||||
C_y = l \cdot sin\left(\frac{φ}{2}\right) = cos(\frac{φ}{2}) \cdot sin\left(\frac{φ}{2}\right)\ , \\
|
||||
\end{array}\right.
|
||||
\end{array}\]</p>
|
||||
|
||||
<p>With the coordinate C, and knowledge of coordinate B, we can determine coordinate A, and get a vector
|
||||
that is identical to the vector {start,guess}:</p>
|
||||
|
||||
<p>\[\left\{\begin{array}{l}
|
||||
B_x - C_x = cos\left(\frac{φ}{2}\right) - cos^2\left(\frac{φ}{2}\right) \\
|
||||
B_y - C_y = sin\left(\frac{φ}{2}\right) - cos(\frac{φ}{2}) \cdot sin\left(\frac{φ}{2}\right)
|
||||
= sin\left(\frac{φ}{2}\right) - \frac{sin(φ)}{2}
|
||||
\end{array}\right.\]</p>
|
||||
|
||||
<p>\[\left\{\begin{array}{l}
|
||||
\vec{v}_x = \{C,A\}_x = \frac{4}{3} \cdot (B_x - C_x) \\
|
||||
\vec{v}_y = \{C,A\}_y = \frac{4}{3} \cdot (B_y - C_y)
|
||||
\end{array}\right.\]</p>
|
||||
|
||||
<p>Which means we can now determine the distance {start,guessed}, which is the same as the distance
|
||||
{C,A}, and use that to determine the vertical distance from our start point to our C<sub>1</sub>:</p>
|
||||
|
||||
<p>\[\left\{\begin{array}{l}
|
||||
C_{1x} = 1 \\
|
||||
C_{1y} = \frac{d}{sin\left(\frac{φ}{2}\right)}
|
||||
= \frac{\sqrt{\vec{v}^2_x + \vec{v}^2_y}}{sin\left(\frac{φ}{2}\right)}
|
||||
= \frac{4}{3} tan \left( \frac{φ}{4} \right)
|
||||
\end{array}\right.\]</p>
|
||||
|
||||
<p>And after this tedious detour to find the coordinate for C<sub>1</sub>, we can
|
||||
find C<sub>2</sub> fairly simply, since it's lies at distance -C<sub>1y</sub> along the end point's tangent:</p>
|
||||
|
||||
<p>\[\begin{array}{l}
|
||||
E'_x = -sin(φ) \ , \ E'_y = cos(φ) \ , \ ||E'|| = \sqrt{ (-sin(φ))^2 + cos^2(φ)} = 1 \ , \\
|
||||
\left\{\begin{array}{l}
|
||||
C_2x = E_x - C_{1y} \cdot \frac{E_x'}{||E'||}
|
||||
= cos(φ) + C_{1y} \cdot sin(φ)
|
||||
= cos(φ) + \frac{4}{3} tan \left( \frac{φ}{4} \right) \cdot sin(φ) \\
|
||||
C_2y = E_y - C_{1y} \cdot \frac{E_y'}{||E'||}
|
||||
= sin(φ) - C_{1y} \cdot cos(φ)
|
||||
= sin(φ) - \frac{4}{3} tan \left( \frac{φ}{4} \right) \cdot cos(φ)
|
||||
\end{array}\right.
|
||||
\end{array}\]</p>
|
||||
|
||||
<p>And that's it, we have all four points now for an approximation of an arbitrary
|
||||
circular arc with angle φ.</p>
|
||||
</div>
|
||||
|
||||
<p>So, to recap, given an angle φ, the new control coordinates are:</p>
|
||||
|
||||
<p>\[
|
||||
C_1 = \left [ \begin{matrix}
|
||||
1 \\
|
||||
f
|
||||
\end{matrix} \right ],\ with\ f = \frac{4}{3} tan \left( \frac{φ}{4} \right)
|
||||
\]</p>
|
||||
|
||||
<p>and</p>
|
||||
|
||||
<p>\[
|
||||
C_2 = \left [ \begin{matrix}
|
||||
cos(φ) + f \cdot sin(φ) \\
|
||||
sin(φ) - f \cdot cos(φ)
|
||||
\end{matrix} \right ],\ with\ f = \frac{4}{3} tan \left( \frac{φ}{4} \right)
|
||||
\]</p>
|
||||
|
||||
<p>And, because the "quarter curve" special case comes up so incredibly often, let's look at what
|
||||
these new control points mean for the curve coordinates of a quarter curve, by simply filling in
|
||||
φ = π/2:</p>
|
||||
|
||||
<p>\[\begin{array}{l}
|
||||
S = (1, 0) \ , \
|
||||
C_1 = \left ( 1, 4 \frac{\sqrt{2}-1}{3} \right ) \ , \
|
||||
C_2 = \left ( 4 \frac{\sqrt{2}-1}{3} , 1 \right ) \ , \
|
||||
E = (0, 1)
|
||||
\end{array}\]</p>
|
||||
|
||||
<p>Which, in decimal values, rounded to six significant digits, is:</p>
|
||||
|
||||
<p>\[\begin{array}{l}
|
||||
S = (1, 0) \ , \
|
||||
C_1 = (1, 0.55228) \ , \
|
||||
C_2 = (0.55228 , 1) \ , \
|
||||
E = (0, 1)
|
||||
\end{array}\]</p>
|
||||
|
||||
<p>Of course, this is for a circle with radius 1, so if you have a different radius circle,
|
||||
simply multiply the coordinate by the radius you need. And then finally, forming a full curve
|
||||
is now a simple a matter of mirroring these coordinates about the origin:</p>
|
||||
|
||||
<Graphic preset="simple" title="Cubic Bézier circle approximation" draw={this.drawCircle} static={true}/>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
module.exports = CirclesCubic;
|
@@ -1,3 +1,58 @@
|
||||
var React = require("react");
|
||||
var Graphic = require("../../Graphic.jsx");
|
||||
var SectionHeader = require("../../SectionHeader.jsx");
|
||||
|
||||
var GraduatedOffsetting = React.createClass({
|
||||
getDefaultProps: function() {
|
||||
return {
|
||||
title: "Graduated curve offsetting"
|
||||
};
|
||||
},
|
||||
|
||||
setup: function(api, curve) {
|
||||
api.setCurve(curve);
|
||||
api.distance = 20;
|
||||
},
|
||||
|
||||
setupQuadratic: function(api) {
|
||||
var curve = api.getDefaultQuadratic();
|
||||
this.setup(api, curve);
|
||||
},
|
||||
|
||||
setupCubic: function(api) {
|
||||
var curve = api.getDefaultCubic();
|
||||
this.setup(api, curve);
|
||||
},
|
||||
|
||||
draw: function(api, curve) {
|
||||
api.reset();
|
||||
api.drawSkeleton(curve);
|
||||
api.drawCurve(curve);
|
||||
|
||||
|
||||
api.setColor("blue");
|
||||
var outline = curve.outline(0,0,api.distance,api.distance);
|
||||
outline.curves.forEach(c => api.drawCurve(c));
|
||||
},
|
||||
|
||||
values: {
|
||||
"38": 1, // up arrow
|
||||
"40": -1, // down arrow
|
||||
},
|
||||
|
||||
onKeyDown: function(e, api) {
|
||||
var v = this.values[e.keyCode];
|
||||
if(v) {
|
||||
e.preventDefault();
|
||||
api.distance += v;
|
||||
}
|
||||
},
|
||||
|
||||
render: function() {
|
||||
return (
|
||||
<section>
|
||||
<SectionHeader {...this.props} />
|
||||
|
||||
<p>What if we want to do graduated offsetting, starting at some distance <i>s</i> but ending
|
||||
at some other distance <i>e</i>? well, if we can compute the length of a curve (which we can
|
||||
if we use the Legendre-Gauss quadrature approach) then we can also determine how far "along the
|
||||
@@ -21,46 +76,18 @@
|
||||
<li>end: <i>map(<strong>S+length(subcurve)</strong>, 0,L, s,e)</i></li>
|
||||
</ul>
|
||||
|
||||
At each of the relevant points (start, end, and the projections of the control points onto
|
||||
<p>At each of the relevant points (start, end, and the projections of the control points onto
|
||||
the curve) we know the curve's normal, so offsetting is simply a matter of taking our original
|
||||
point, and moving it along the normal vector by the offset distance for each point. Doing so
|
||||
will give us the following result (these have with a starting width of 0, and an end width
|
||||
of 40 pixels, but can be controlled with your + and - keys):</p>
|
||||
of 40 pixels, but can be controlled with your up and down cursor keys):</p>
|
||||
|
||||
<textarea class="sketch-code" data-sketch-preset="simple" data-sketch-title="Graduated offsetting a quadratic Bézier curve">
|
||||
void setupCurve() {
|
||||
setupDefaultQuadratic();
|
||||
offsetting();
|
||||
offset = 20;
|
||||
}
|
||||
<Graphic preset="simple" title="Offsetting a quadratic Bézier curve" setup={this.setupQuadratic} draw={this.draw} onKeyDown={this.onKeyDown}/>
|
||||
<Graphic preset="simple" title="Offsetting a cubic Bézier curve" setup={this.setupCubic} draw={this.draw} onKeyDown={this.onKeyDown}/>
|
||||
|
||||
void drawCurve(BezierCurve curve) {
|
||||
additionals();
|
||||
curve.draw();
|
||||
if(offset>0) {
|
||||
noAdditionals();
|
||||
BezierCurve[] offsetCurve = curve.offset(offset, 0, 1);
|
||||
for(BezierCurve b: offsetCurve) { b.draw(); b.getPoint(0).draw(); b.getPoint(1).draw();}
|
||||
offsetCurve = curve.offset(-offset, 0, 1);
|
||||
for(BezierCurve b: offsetCurve) { b.draw(); b.getPoint(0).draw(); b.getPoint(1).draw();}
|
||||
}
|
||||
}</textarea>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
<textarea class="sketch-code" data-sketch-preset="simple" data-sketch-title="Graduated offsetting a cubic Bézier curve">
|
||||
void setupCurve() {
|
||||
setupDefaultCubic();
|
||||
offsetting();
|
||||
offset = 20;
|
||||
}
|
||||
|
||||
void drawCurve(BezierCurve curve) {
|
||||
additionals();
|
||||
curve.draw();
|
||||
if(offset>0) {
|
||||
noAdditionals();
|
||||
BezierCurve[] offsetCurve = curve.offset(offset, 0, 1);
|
||||
for(BezierCurve b: offsetCurve) { b.draw(); b.getPoint(0).draw(); b.getPoint(1).draw();}
|
||||
offsetCurve = curve.offset(-offset, 0, 1);
|
||||
for(BezierCurve b: offsetCurve) { b.draw(); b.getPoint(0).draw(); b.getPoint(1).draw();}
|
||||
}
|
||||
}</textarea>
|
||||
module.exports = GraduatedOffsetting;
|
@@ -37,31 +37,23 @@ module.exports = {
|
||||
pointcurves: require("./pointcurves"),
|
||||
|
||||
catmullconv: require("./catmullconv"),
|
||||
catmullmoulding: require("./catmullmoulding")
|
||||
};
|
||||
catmullmoulding: require("./catmullmoulding"),
|
||||
|
||||
/*
|
||||
// This requires bezier.js to have a proper poly implementation
|
||||
polybezier: require("./polybezier"),
|
||||
*/
|
||||
|
||||
/*
|
||||
polybezier: require("./polybezier"),
|
||||
shapes: require("./shapes"),
|
||||
/*
|
||||
// This section is way too much work to port, and not worth implementing given paper.js etc.
|
||||
shapes: require("./shapes"), // Boolean shape operations
|
||||
*/
|
||||
|
||||
projections: require("./projections"),
|
||||
|
||||
offsetting: require("./offsetting"),
|
||||
graduatedoffset: require("./graduatedoffset"),
|
||||
|
||||
circles: require("./circles"),
|
||||
circles_cubic: require("./circles_cubic"),
|
||||
arcapproximation: require("./arcapproximation")
|
||||
*/
|
||||
|
||||
/*
|
||||
Forming poly-Bézier curves
|
||||
Boolean shape operations
|
||||
Projecting a point onto a Bézier curve
|
||||
Curve offsetting
|
||||
Graduated curve offsetting
|
||||
Circles and quadratic Bézier curves
|
||||
Circles and cubic Bézier curves
|
||||
Approximating Bézier curves with circular arcs
|
||||
*/
|
||||
};
|
||||
|
@@ -1,3 +1,61 @@
|
||||
var React = require("react");
|
||||
var Graphic = require("../../Graphic.jsx");
|
||||
var SectionHeader = require("../../SectionHeader.jsx");
|
||||
|
||||
var Offsetting = React.createClass({
|
||||
getDefaultProps: function() {
|
||||
return {
|
||||
title: "Curve offsetting"
|
||||
};
|
||||
},
|
||||
|
||||
setup: function(api, curve) {
|
||||
api.setCurve(curve);
|
||||
api.distance = 20;
|
||||
},
|
||||
|
||||
setupQuadratic: function(api) {
|
||||
var curve = api.getDefaultQuadratic();
|
||||
this.setup(api, curve);
|
||||
},
|
||||
|
||||
setupCubic: function(api) {
|
||||
var curve = api.getDefaultCubic();
|
||||
this.setup(api, curve);
|
||||
},
|
||||
|
||||
draw: function(api, curve) {
|
||||
api.reset();
|
||||
api.drawSkeleton(curve);
|
||||
api.drawCurve(curve);
|
||||
|
||||
api.setColor("red");
|
||||
var offset = curve.offset(api.distance);
|
||||
offset.forEach(c => api.drawCurve(c));
|
||||
|
||||
api.setColor("blue");
|
||||
offset = curve.offset(-api.distance);
|
||||
offset.forEach(c => api.drawCurve(c));
|
||||
},
|
||||
|
||||
values: {
|
||||
"38": 1, // up arrow
|
||||
"40": -1, // down arrow
|
||||
},
|
||||
|
||||
onKeyDown: function(e, api) {
|
||||
var v = this.values[e.keyCode];
|
||||
if(v) {
|
||||
e.preventDefault();
|
||||
api.distance += v;
|
||||
}
|
||||
},
|
||||
|
||||
render: function() {
|
||||
return (
|
||||
<section>
|
||||
<SectionHeader {...this.props} />
|
||||
|
||||
<p>Perhaps you are like me, and you've been writing various small programs that use Bézier curves in some way or another,
|
||||
and at some point you make the step to implementing path extrusion. But you don't want to do it pixel based, you want to
|
||||
stay in the vector world. You find that extruding lines is relatively easy, and tracing outlines is coming along nicely
|
||||
@@ -11,7 +69,7 @@
|
||||
<p>Bottom line: <strong>you can't</strong>. So you cheat. We're not going to do true curve scaling, or rather curve
|
||||
offsetting, because that's impossible. Instead we're going to try to generate 'looks good enough' offset curves.</p>
|
||||
|
||||
<div class="note">
|
||||
<div className="note">
|
||||
<h2>"What do you mean, you can't. Prove it."</h2>
|
||||
|
||||
<p>First off, when I say "you can't" what I really mean is "you can't offset a Bézier curve with another
|
||||
@@ -95,47 +153,20 @@
|
||||
with respect to the curve's scaling origin (which is the intersection of the point normals at the start
|
||||
and end points).</p>
|
||||
|
||||
<textarea class="sketch-code" data-sketch-preset="simple" data-sketch-title="Offsetting a quadratic Bézier curve">
|
||||
void setupCurve() {
|
||||
setupDefaultQuadratic();
|
||||
offsetting();
|
||||
offset = 20;
|
||||
}
|
||||
<p>The following graphics show off curve offsetting, and you can use your up and down cursor keys to control
|
||||
the distance at which the curve gets offset:</p>
|
||||
|
||||
void drawCurve(BezierCurve curve) {
|
||||
additionals();
|
||||
curve.draw();
|
||||
|
||||
if(offset>0) {
|
||||
noAdditionals();
|
||||
BezierCurve[] offsetCurve = curve.offset(offset);
|
||||
for(BezierCurve b: offsetCurve) { b.draw(); b.getPoint(0).draw(); b.getPoint(1).draw();}
|
||||
offsetCurve = curve.offset(-offset);
|
||||
for(BezierCurve b: offsetCurve) { b.draw(); b.getPoint(0).draw(); b.getPoint(1).draw();}
|
||||
}
|
||||
}</textarea>
|
||||
|
||||
<textarea class="sketch-code" data-sketch-preset="simple" data-sketch-title="Offsetting a cubic Bézier curve">
|
||||
void setupCurve() {
|
||||
setupDefaultCubic();
|
||||
offsetting();
|
||||
offset = 20;
|
||||
}
|
||||
|
||||
void drawCurve(BezierCurve curve) {
|
||||
additionals();
|
||||
curve.draw();
|
||||
|
||||
if(offset>0) {
|
||||
noAdditionals();
|
||||
BezierCurve[] offsetCurve = curve.offset(offset);
|
||||
for(BezierCurve b: offsetCurve) { b.draw(); b.getPoint(0).draw(); b.getPoint(1).draw();}
|
||||
offsetCurve = curve.offset(-offset);
|
||||
for(BezierCurve b: offsetCurve) { b.draw(); b.getPoint(0).draw(); b.getPoint(1).draw();}
|
||||
}
|
||||
}</textarea>
|
||||
<Graphic preset="simple" title="Offsetting a quadratic Bézier curve" setup={this.setupQuadratic} draw={this.draw} onKeyDown={this.onKeyDown} />
|
||||
<Graphic preset="simple" title="Offsetting a cubic Bézier curve" setup={this.setupCubic} draw={this.draw} onKeyDown={this.onKeyDown} />
|
||||
|
||||
<p>You may notice that this may still lead to small 'jumps' in the sub-curves when moving the
|
||||
curve around. This is caused by the fact that we're still performing a naive form of offsetting,
|
||||
moving the control points the same distance as the start and end points. If the curve is large
|
||||
enough, this may still lead to incorrect offsets.</p>
|
||||
|
||||
</section>
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
module.exports = Offsetting;
|
172
components/sections/polybezier/index.js
Normal file
@@ -0,0 +1,172 @@
|
||||
var React = require("react");
|
||||
var Graphic = require("../../Graphic.jsx");
|
||||
var SectionHeader = require("../../SectionHeader.jsx");
|
||||
|
||||
var PolyBezier = React.createClass({
|
||||
getDefaultProps: function() {
|
||||
return {
|
||||
title: "Forming poly-Bézier curves"
|
||||
};
|
||||
},
|
||||
|
||||
setupQuadratic: function(api) {
|
||||
var w = api.getPanelWidth(),
|
||||
h = api.getPanelHeight(),
|
||||
cx = w/2, cy = h/2, pad = 40,
|
||||
pts = [
|
||||
// first curve:
|
||||
{x:cx,y:pad}, {x:w-pad,y:pad}, {x:w-pad,y:cy},
|
||||
// subsequent curve
|
||||
{x:w-pad,y:h-pad}, {x:cx,y:h-pad},
|
||||
// subsequent curve
|
||||
{x:pad,y:h-pad}, {x:pad,y:cy},
|
||||
// final curve control point
|
||||
{x:pad,y:pad},
|
||||
];
|
||||
api.lpts = pts;
|
||||
},
|
||||
|
||||
setupCubic: function(api) {
|
||||
},
|
||||
|
||||
draw: function(api, curves) {
|
||||
api.reset();
|
||||
var pts = api.lpts;
|
||||
|
||||
var c1 = new api.Bezier(pts[0],pts[1],pts[2]);
|
||||
api.drawSkeleton(c1);
|
||||
api.drawCurve(c1);
|
||||
|
||||
var c2 = new api.Bezier(pts[2],pts[3],pts[4]);
|
||||
api.drawSkeleton(c2);
|
||||
api.drawCurve(c2);
|
||||
|
||||
var c3 = new api.Bezier(pts[4],pts[5],pts[6]);
|
||||
api.drawSkeleton(c3);
|
||||
api.drawCurve(c3);
|
||||
|
||||
var c4 = new api.Bezier(pts[6],pts[7],pts[0]);
|
||||
api.drawSkeleton(c4);
|
||||
api.drawCurve(c4);
|
||||
},
|
||||
|
||||
render: function() {
|
||||
return (
|
||||
<section>
|
||||
<SectionHeader {...this.props} />
|
||||
|
||||
<p>Much like lines can be chained together to form polygons, Bézier curves can be chained together
|
||||
to form poly-Béziers, and the only trick required is to make sure that: A) the end point of each
|
||||
section is the starting point of the following section, and B) the derivatives across that
|
||||
dual point line up. Unless, of course, you want discontinuities; then you don't even need (B).</p>
|
||||
|
||||
<p>We'll cover three forms of poly-Bézier curves in this section. First, we'll look at the kind
|
||||
that enforces "the outgoing derivative is the same as the incoming derivative" across sections:</p>
|
||||
|
||||
<p>\[
|
||||
B'(1)_n = B'(0)_{n+1}
|
||||
\]</p>
|
||||
|
||||
<p>We can actually guarantee this really easily, because we know that the vector from a curve's
|
||||
last control point to its last on-curve point is equal to the derivative vector. If we want to
|
||||
ensure that the first control point of the next curve matches that, all we have to do is mirror
|
||||
that last control point through the last on-curve point. And mirroring any point A through any
|
||||
point B is really simple:</p>
|
||||
|
||||
<p>\[
|
||||
Mirrored = \left [
|
||||
\begin{matrix} B_x + (B_x - A_x) \\ B_y + (B_y - A_y) \end{matrix}
|
||||
\right ] = \left [
|
||||
\begin{matrix} 2B_x - A_x \\ 2B_y - A_y \end{matrix}
|
||||
\right ]
|
||||
\]</p>
|
||||
|
||||
<p>So let's implement that and see what it gets us. The following two graphics show a quadratic
|
||||
and a cubic poly-Bézier curve; both consist of multiple sub-curves, but because of our constraint,
|
||||
not all points on the curves can be moved around freely. Some points, when moved, will move other
|
||||
points by virtue of changing the curve across sections.</p>
|
||||
|
||||
<Graphic preset="poly" title="Forming a quadratic poly-Bézier" setup={this.setupQuadratic} draw={this.draw}/>
|
||||
|
||||
<textarea className="sketch-code" data-sketch-preset="poly" data-sketch-title="Forming a cubic poly-Bézier">
|
||||
void setupCurve() {
|
||||
setupDefaultCubicPoly();
|
||||
}
|
||||
|
||||
void movePoint(PolyBezierCurve p, int pt, int mx, int my) {
|
||||
p.movePointConstrained(pt, mx, my);
|
||||
}</textarea>
|
||||
|
||||
<p>As you can see, quadratic curves are particularly ill-suited for poly-Bézier curves, as all
|
||||
the control points are effectively linked. Move one of them, and you move all of them. This means
|
||||
that we cannot use quadratic poly-Béziers for anything other than really, really simple shapes.
|
||||
And even then, they're probably the wrong choice. Cubic curves are pretty decent, but the fact
|
||||
that the derivatives are linked means we can't manipulate curves as well as we might if we
|
||||
relaxed the constraints a little.</p>
|
||||
|
||||
<p>So: let's relax them!</p>
|
||||
|
||||
<p>We can change the constraint so that we still preserve the angle of the derivatives across
|
||||
sections (so transitions from one section to the next will still look natural), but give up
|
||||
the requirement that they should also have the same vector length. Doing so will give us
|
||||
a much more a useful kind of poly-Bézier curve:</p>
|
||||
|
||||
<textarea className="sketch-code" data-sketch-preset="poly" data-sketch-title="A half-constrained quadratic poly-Bézier">
|
||||
void setupCurve() {
|
||||
setupDefaultQuadraticPoly();
|
||||
}
|
||||
|
||||
void movePoint(PolyBezierCurve p, int pt, int mx, int my) {
|
||||
p.movePointHalfConstrained(pt, mx, my);
|
||||
}</textarea>
|
||||
|
||||
<textarea className="sketch-code" data-sketch-preset="poly" data-sketch-title="A half-constrained cubic poly-Bézier">
|
||||
void setupCurve() {
|
||||
setupDefaultCubicPoly();
|
||||
}
|
||||
|
||||
void movePoint(PolyBezierCurve p, int pt, int mx, int my) {
|
||||
p.movePointHalfConstrained(pt, mx, my);
|
||||
}</textarea>
|
||||
|
||||
<p>Quadratic curves are still silly, but cubic curves are now much more controllable.</p>
|
||||
|
||||
<p>If we want even more control, we could just abandon the derivative constraints entirely,
|
||||
and simply assure that the end point of one section is the same as the start point of the next section,
|
||||
and then keep it at that. This gives us the greatest degree of freedom when it comes to modelling
|
||||
shapes, but also means that our poly-Bézier constructs are no longer continuous curves. Sometimes
|
||||
this is exactly what you want (because it lets you add corners to a shape, while still only using
|
||||
Bézier curves).</p>
|
||||
|
||||
<textarea className="sketch-code" data-sketch-preset="poly" data-sketch-title="An unconstrained quadratic poly-Bézier">
|
||||
void setupCurve() {
|
||||
setupDefaultQuadraticPoly();
|
||||
}
|
||||
|
||||
void movePoint(PolyBezierCurve p, int pt, int mx, int my) {
|
||||
p.movePoint(pvt, mx, my);
|
||||
}</textarea>
|
||||
|
||||
<textarea className="sketch-code" data-sketch-preset="poly" data-sketch-title="An unconstrained cubic poly-Bézier">
|
||||
void setupCurve() {
|
||||
setupDefaultCubicPoly();
|
||||
}
|
||||
|
||||
void movePoint(PolyBezierCurve p, int pt, int mx, int my) {
|
||||
p.movePoint(pvt, mx, my);
|
||||
}</textarea>
|
||||
|
||||
<p>When doing any kind of modelling, you generally don't want a poly-Bézier that will only let you
|
||||
pick one of the three forms for all your points; most graphics applications that deal with Bézier
|
||||
curves will actually let you pick, per on-curve point, how to deal with the control points around it:
|
||||
fully constrained, loosely constrained, or completely unconstrained. The best shape modelling comes
|
||||
from having a curve that will let you pick what you need, when you need it, without having to start
|
||||
a new poly-Bézier curve.</p>
|
||||
|
||||
|
||||
</section>
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
module.exports = PolyBezier;
|
102
components/sections/projections/index.js
Normal file
@@ -0,0 +1,102 @@
|
||||
var React = require("react");
|
||||
var Graphic = require("../../Graphic.jsx");
|
||||
var SectionHeader = require("../../SectionHeader.jsx");
|
||||
|
||||
var Projections = React.createClass({
|
||||
getDefaultProps: function() {
|
||||
return {
|
||||
title: "Projecting a point onto a Bézier curve"
|
||||
};
|
||||
},
|
||||
|
||||
setup: function(api) {
|
||||
api.setSize(320,320);
|
||||
var curve = new api.Bezier([
|
||||
{x:248,y:188},
|
||||
{x:218,y:294},
|
||||
{x:45,y:290},
|
||||
{x:12,y:236},
|
||||
{x:14,y:82},
|
||||
{x:186,y:177},
|
||||
{x:221,y:90},
|
||||
{x:18,y:156},
|
||||
{x:34,y:57},
|
||||
{x:198,y:18}
|
||||
]);
|
||||
api.setCurve(curve);
|
||||
api._lut = curve.getLUT();
|
||||
},
|
||||
|
||||
findClosest: function(LUT, p, dist) {
|
||||
var i,
|
||||
end = LUT.length,
|
||||
d,
|
||||
dd = dist(LUT[0],p),
|
||||
f = 0;
|
||||
for(i=1; i<end; i++) {
|
||||
d = dist(LUT[i],p);
|
||||
if(d<dd) {f = i;dd = d;}
|
||||
}
|
||||
return f/(end-1);
|
||||
},
|
||||
|
||||
draw: function(api, curve) {
|
||||
api.reset();
|
||||
api.drawSkeleton(curve);
|
||||
api.drawCurve(curve);
|
||||
if (api.mousePt) {
|
||||
api.setColor("red");
|
||||
api.drawCircle(api.mousePt, 3);
|
||||
// naive t value
|
||||
var t = this.findClosest(api._lut, api.mousePt, api.utils.dist);
|
||||
// no real point in refining for illustration purposes
|
||||
var p = curve.get(t);
|
||||
api.drawLine(p, api.mousePt);
|
||||
api.drawCircle(p, 3);
|
||||
}
|
||||
},
|
||||
|
||||
onMouseMove: function(evt, api) {
|
||||
api.mousePt = {x: evt.offsetX, y: evt.offsetY };
|
||||
},
|
||||
|
||||
render: function() {
|
||||
return (
|
||||
<section>
|
||||
<SectionHeader {...this.props} />
|
||||
|
||||
<p>Say we have a Bézier curve and some point, not on the curve, of which we want to know
|
||||
which <i>t</i> value on the curve gives us an on-curve point closest to our off-curve point.
|
||||
Or: say we want to find the projection of a random point onto a curve. How do we do that?</p>
|
||||
|
||||
<p>If the Bézier curve is of low enough order, we might be able
|
||||
to <a href="http://jazzros.blogspot.ca/2011/03/projecting-point-on-bezier-curve.html">work out
|
||||
the maths for how to do this</a>, and get a perfect <i>t</i> value back, but in general this is
|
||||
an incredibly hard problem and the easiest solution is, really, a numerical approach again. We'll
|
||||
be finding our ideal <i>t</i> value using a <a href="https://en.wikipedia.org/wiki/Binary_search_algorithm">binary
|
||||
search</a>. First, we do a coarse distance-check based on <i>t</i> values associated with the
|
||||
curve's "to draw" coordinates (using a lookup table, or LUT). This is pretty fast. Then we run
|
||||
this algorithm:</p>
|
||||
|
||||
<ol>
|
||||
<li>with the <i>t</i> value we found, start with some small interval around <i>t</i> (1/length_of_LUT on either side is a reasonable start),</li>
|
||||
<li>if the distance to <i>t ± interval/2</i> is larger than the distance to <i>t</i>, try again with the interval reduced to half its original length.</li>
|
||||
<li>if the distance to <i>t ± interval/2</i> is smaller than the distance to <i>t</i>, replace <i>t</i> with the smaller-distance value.</li>
|
||||
<li>after reducing the interval, or changing <i>t</i>, go back to step 1.</li>
|
||||
</ol>
|
||||
|
||||
<p>We keep repeating this process until the interval is small enough to claim the difference
|
||||
in precision found is irrelevant for the purpose we're trying to find <i>t</i> for. In this
|
||||
case, I'm arbitrarily fixing it at 0.0001.</p>
|
||||
|
||||
<p>The following graphic demonstrates the result of this procedure.Simply move the cursor
|
||||
around, and if it does not lie on top of the curve, you will see a line that projects the
|
||||
cursor onto the curve based on an iteratively found "ideal" <i>t</i> value.</p>
|
||||
|
||||
<Graphic preset="simple" title="Projecting a point onto a Bézier curve" setup={this.setup} draw={this.draw} onMouseMove={this.onMouseMove}/>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
module.exports = Projections;
|
@@ -158,27 +158,3 @@ var Reordering = React.createClass({
|
||||
});
|
||||
|
||||
module.exports = Reordering;
|
||||
|
||||
/*
|
||||
void setupCurve() {
|
||||
int d = dim - 2*pad;
|
||||
int order = 10;
|
||||
ArrayList<Point> pts = new ArrayList<Point>();
|
||||
|
||||
float dst = d/2.5, nx, ny, a=0, step = 2*PI/order, r;
|
||||
for(a=0; a<2*PI; a+=step) {
|
||||
r = random(-dst/4,dst/4);
|
||||
pts.add(new Point(d/2 + cos(a) * (r+dst), d/2 + sin(a) * (r+dst)));
|
||||
dst -= 1.2;
|
||||
}
|
||||
|
||||
Point[] points = new Point[pts.size()];
|
||||
for(int p=0,last=points.length; p<last; p++) { points[p] = pts.get(p); }
|
||||
curves.add(new BezierCurve(points));
|
||||
reorder();
|
||||
}
|
||||
|
||||
void drawCurve(BezierCurve curve) {
|
||||
curve.draw();
|
||||
}</textarea>
|
||||
*/
|
0
components/sections/shapes/index.js
Normal file
@@ -1,270 +0,0 @@
|
||||
<p>For cubic curves the control points must be each other's mirror around the line running
|
||||
through the baseline midpoint, at a right angle, and again the derivatives at the start and
|
||||
end points must agree. Again we don't have altogether that much choice: there is only one
|
||||
pair of control points that guarantees correct derivatives for the start and end points,
|
||||
while also making the midpoint of the curve lie on top of the curve.</p>
|
||||
|
||||
<p>In order to find a cubic curve, we first "guess" the curve, based on the previously outlined
|
||||
curve-through-three-points procedure. This will give use a curve with correct start, mid and
|
||||
end points, but incorrect derivatives for start and end, given the control points. We then
|
||||
slide the control points along the line that connects them until they effect the corrected
|
||||
derivative at the start and end points (you may remember that the derivative at the start
|
||||
is aligned with the line from start point to control point 1, and that the derivative at the
|
||||
end is aligned with the line from control point 2 to the end point).</p>
|
||||
|
||||
<textarea class="sketch-code" data-sketch-preset="arcfitting" data-sketch-title="Cubic Bézier arc approximation">
|
||||
void setupCurve() { order = 3; }
|
||||
|
||||
void checkConnect() {
|
||||
if(e < PI) { noConnect(); } else { connect(); }
|
||||
}
|
||||
|
||||
void findArcFitting() {
|
||||
// guess the curve based on the start/mid/end points:
|
||||
Point p1 = new Point(dim/2 + dim/f2,dim/2),
|
||||
p2 = new Point(dim/2 + dim/f2*cos((s+e)/2), dim/2 + dim/f2*sin((s+e)/2)),
|
||||
p3 = new Point(dim/2 + dim/f2*cos(ax), dim/2 + dim/f2*sin(ay));
|
||||
BezierCurve guess = comp.generateCurve(3,p1,p2,p3);
|
||||
|
||||
Point oc1 = guess.points[1];
|
||||
|
||||
drawGuess(guess);
|
||||
|
||||
// then, move the control points so that B'(0) and B'(1) are correct:
|
||||
Point c1 = comp.lli(new Point[]{
|
||||
guess.points[0],
|
||||
new Point(p1.x, p1.y+10),
|
||||
guess.points[1],
|
||||
guess.points[2],
|
||||
});
|
||||
|
||||
// taking advantage of symmetry, we trivially know c2 now, too:
|
||||
dx = guess.points[1].x - c1.x;
|
||||
dy = guess.points[1].y - c1.y;
|
||||
Point c2 = new Point(guess.points[2].x + dx,
|
||||
guess.points[2].y + dy);
|
||||
|
||||
// replace, update, and draw.
|
||||
guess.points[1] = c1;
|
||||
guess.points[2] = c2;
|
||||
guess.update();
|
||||
guess.draw();
|
||||
|
||||
float a = 0.211325;
|
||||
Point pa = guess.getPoint(a);
|
||||
pa.draw();
|
||||
guess.getPoint(1-a).draw();
|
||||
}</textarea>
|
||||
|
||||
<p>We see two curves here; very faintly the "guessed" curve, and drawn normally, the proper curve
|
||||
with the control points shifted along the control line so that the derivatives at the start and end
|
||||
points are correct. With this, we can see that cubic curves are actually a lot better than quadratic
|
||||
curves, and don't look all that wrong until we go past a quarter circle; ⅜th starts to hint at
|
||||
problems, and half a circle has an obvious "gap" between the real circle and the cubic approximation.
|
||||
Anything past that just looks plain ridiculous... but quarter curves actually look pretty okay!
|
||||
Again, how okay is okay? Let's apply some more maths to find out.</p>
|
||||
|
||||
<p>Unlike for the quadratic curve, we can't use <i>t=0.5</i> as our reference point because by its
|
||||
very nature it's one of the three points that are actually guaranteed to lie on the circular curve.
|
||||
Instead, we need a different <i>t</i> value. If we run some analysis on the curve we find that the
|
||||
actual <i>t</i> value at which the curve is furthest from what it should be is 0.211325 (rounded),
|
||||
but we don't know "why", since finding this value involves root-finding, and is nearly impossible
|
||||
to do symbolically without pages and pages of math just to express one of the possible solutions.</p>
|
||||
|
||||
<p>So instead, let's simply take that <i>t</i> value and see what the error is for circular arcs
|
||||
with an angle ranging from 0 to 2π:</p>
|
||||
|
||||
<table><tr><td>
|
||||
<p><img src="images/arc-c-2pi.gif"></p>
|
||||
<p>plotted for 0 ≤ φ ≤ 2π:</p>
|
||||
</td><td>
|
||||
<p><img src="images/arc-c-pi.gif"></p>
|
||||
<p>plotted for 0 ≤ φ ≤ π:</p>
|
||||
</td><td>
|
||||
<p><img src="images/arc-c-pi2.gif"></p>
|
||||
<p>plotted for 0 ≤ φ ≤ ½π:</p>
|
||||
</td></tr></table>
|
||||
|
||||
<p>We see that cubic Bézier curves are much better when it comes to approximating circular arcs,
|
||||
with an error of less than 0.027 at the two "bulge" points for a quarter circle (which had an
|
||||
error of 0.06 for quadratic curves at the mid point), and an error near 0.001 for an eighth
|
||||
of a circle, so we're getting less than half the error for a quarter circle, or: at a slightly
|
||||
lower error, we're getting twice the arc. This makes cubic curves quite useful.
|
||||
In fact, the precision of a cubic curve at a quarter circle is considered "good enough" by many
|
||||
to justify using four cubic Bézier curves to fake a full circle when no circle primitives are
|
||||
available; generally, people will not notice it's not a real circle unless you overlay the
|
||||
actual circle so they can see the difference.</p>
|
||||
|
||||
<p>So if we want to use a cubic Bézier curve, where do the curve's points go?
|
||||
The start and end point are the same as before:</p>
|
||||
|
||||
<p>\[ S = \begin{pmatrix} 1 \\ 0 \end{pmatrix} \ , \ \ E = \begin{pmatrix} cos(φ) \\ sin(φ) \end{pmatrix} \]</p>
|
||||
|
||||
<p>But we now need to find two control points, rather than one:</p>
|
||||
|
||||
<p>\[
|
||||
C_1 = S + a \cdot \begin{pmatrix} 0 \\ 1 \end{pmatrix} \ \ , \ \
|
||||
C_2 = E + b \cdot \begin{pmatrix} -sin(φ) \\ cos(φ) \end{pmatrix}
|
||||
\]</p>
|
||||
|
||||
<div class="note">
|
||||
<h2>Let's do this thing.</h2>
|
||||
|
||||
<p>Unlike for the quadratic case, we need some more information in order to compute <i>a</i> and <i>b</i>,
|
||||
since they're no longer dependent variables. First, we observe that the curve is symmetrical, so whatever
|
||||
values we end up finding for C<sub>1</sub> will apply to C<sub>2</sub> as well (rotated along its tangent),
|
||||
so we'll focus on finding the location of C<sub>1</sub> only. So here's where we do something that you might
|
||||
not expect: we're going to ignore for a moment, because we're going to have a much easier time if we just
|
||||
solve this problem with geometry first, then move to calculus to solve a much simpler problem.</p>
|
||||
|
||||
<p>If we look at the triangle that is formed between our starting point, or initial guess C<sub>1</sub>
|
||||
and our real C<sub>1</sub>, there's something funny going on: if we treat the line {start,guess} as
|
||||
our opposite side, the line {guess,real} as our adjacent side, with {start,real} our hypothenuse, then
|
||||
the angle for the corner hypothenuse/adjacent is half that of the arc we're covering. Try it: if you
|
||||
place the end point at a quarter circle (pi/2, or 90 degrees), the angle in our triangle is half a
|
||||
quarter (pi/4, or 45 degrees). With that knowledge, and a knowledge of what the length of any of
|
||||
our lines segments are (as a function), we can determine where our control points are, and thus have
|
||||
everything we need to find the error distance function. Of the three lines, the one we can easiest
|
||||
determine is {start,guess}, so let's find out what the guessed control point is. Again geometrically,
|
||||
because we have the benefit of an on-curve <i>t=0.5</i> value.</p>
|
||||
|
||||
<p>The distance from our guessed point to the start point is exactly the same as the projection distance
|
||||
we looked at earlier. Using <i>t=0.5</i> as our point "B" in the "A,B,C" projection, then we know the
|
||||
length of the line segment {C,A}, since it's d<sub>1</sub> = {A,B} + d<sub>2</sub> = {B,C}:</p>
|
||||
|
||||
<p>\[
|
||||
||{A,C}|| = d_2 + d_1 = d_2 + d_2 \cdot ratio_3 \left(\frac{1}{2}\right) = d_2 + \frac{1}{3}d_2 = \frac{4}{3}d_2
|
||||
\]</p>
|
||||
|
||||
<p>So that just leaves us to find the distance from <i>t=0.5</i> to the baseline for an arbitrary
|
||||
angle φ, which is the distance from the centre of the circle to our <i>t=0.5</i> point, minus the
|
||||
distance from the centre to the line that runs from start point to end point. The first is the
|
||||
same as the point P we found for the quadratic curve:</p>
|
||||
|
||||
<p>\[
|
||||
P_x = cos(\frac{φ}{2}) \ , \ \ P_y = sin(\frac{φ}{2})
|
||||
\]</p>
|
||||
|
||||
<p>And the distance from the origin to the line start/end is another application of angles,
|
||||
since the triangle {origin,start,C} has known angles, and two known sides. We can find
|
||||
the length of the line {origin,C}, which lets us trivially compute the coordinate for C:</p>
|
||||
|
||||
<p>\[\begin{array}{l}
|
||||
l = cos(\frac{φ}{2}) \ , \\
|
||||
\left\{\begin{array}{l}
|
||||
C_x = l \cdot cos\left(\frac{φ}{2}\right) = cos^2\left(\frac{φ}{2}\right)\ , \\
|
||||
C_y = l \cdot sin\left(\frac{φ}{2}\right) = cos(\frac{φ}{2}) \cdot sin\left(\frac{φ}{2}\right)\ , \\
|
||||
\end{array}\right.
|
||||
\end{array}\]</p>
|
||||
|
||||
<p>With the coordinate C, and knowledge of coordinate B, we can determine coordinate A, and get a vector
|
||||
that is identical to the vector {start,guess}:</p>
|
||||
|
||||
<p>\[\left\{\begin{array}{l}
|
||||
B_x - C_x = cos\left(\frac{φ}{2}\right) - cos^2\left(\frac{φ}{2}\right) \\
|
||||
B_y - C_y = sin\left(\frac{φ}{2}\right) - cos(\frac{φ}{2}) \cdot sin\left(\frac{φ}{2}\right)
|
||||
= sin\left(\frac{φ}{2}\right) - \frac{sin(φ)}{2}
|
||||
\end{array}\right.\]</p>
|
||||
|
||||
<p>\[\left\{\begin{array}{l}
|
||||
\vec{v}_x = \{C,A\}_x = \frac{4}{3} \cdot (B_x - C_x) \\
|
||||
\vec{v}_y = \{C,A\}_y = \frac{4}{3} \cdot (B_y - C_y)
|
||||
\end{array}\right.\]</p>
|
||||
|
||||
<p>Which means we can now determine the distance {start,guessed}, which is the same as the distance
|
||||
{C,A}, and use that to determine the vertical distance from our start point to our C<sub>1</sub>:</p>
|
||||
|
||||
<p>\[\left\{\begin{array}{l}
|
||||
C_{1x} = 1 \\
|
||||
C_{1y} = \frac{d}{sin\left(\frac{φ}{2}\right)}
|
||||
= \frac{\sqrt{\vec{v}^2_x + \vec{v}^2_y}}{sin\left(\frac{φ}{2}\right)}
|
||||
= \frac{4}{3} tan \left( \frac{φ}{4} \right)
|
||||
\end{array}\right.\]</p>
|
||||
|
||||
<p>And after this tedious detour to find the coordinate for C<sub>1</sub>, we can find C<sub>2</sub>
|
||||
fairly simply, since it's lies at distance -C<sub>1y</sub> along the end point's tangent:</p>
|
||||
|
||||
<p>\[\begin{array}{l}
|
||||
E'_x = -sin(φ) \ , \ E'_y = cos(φ) \ , \ ||E'|| = \sqrt{ (-sin(φ))^2 + cos^2(φ)} = 1 \ , \\
|
||||
\left\{\begin{array}{l}
|
||||
C_2x = E_x - C_{1y} \cdot \frac{E_x'}{||E'||}
|
||||
= cos(φ) + C_{1y} \cdot sin(φ)
|
||||
= cos(φ) + \frac{4}{3} tan \left( \frac{φ}{4} \right) \cdot sin(φ) \\
|
||||
C_2y = E_y - C_{1y} \cdot \frac{E_y'}{||E'||}
|
||||
= sin(φ) - C_{1y} \cdot cos(φ)
|
||||
= sin(φ) - \frac{4}{3} tan \left( \frac{φ}{4} \right) \cdot cos(φ)
|
||||
\end{array}\right.
|
||||
\end{array}\]</p>
|
||||
|
||||
<p>And that's it, we have all four points now for an approximation of an arbitrary
|
||||
circular arc with angle φ.</p>
|
||||
</div>
|
||||
|
||||
<p>If you skipped the derivation for the "true" formula in the hopes of finding some useful
|
||||
information, then you're in luck: there are many possible angles with which to approximate
|
||||
sections of a circle, but by far the most common one is using one curve for each quarter
|
||||
circle, and it turns that while deriving the function to get the right value is a bit of a
|
||||
pain, the actual final values are pretty simple, even as precise functions. So, which
|
||||
values do we plug in?:</p>
|
||||
|
||||
<p>\[\begin{array}{l}
|
||||
S = (1, 0) \ , \
|
||||
C_1 = \left ( 1, 4 \frac{\sqrt{2}-1}{3} \right ) \ , \
|
||||
C_2 = \left ( 4 \frac{\sqrt{2}-1}{3} , 1 \right ) \ , \
|
||||
E = (0, 1)
|
||||
\end{array}\]</p>
|
||||
|
||||
<p>Which, in decimal values, rounded to six significant digits, is:</p>
|
||||
|
||||
<p>\[\begin{array}{l}
|
||||
S = (1, 0) \ , \
|
||||
C_1 = (1, 0.55228) \ , \
|
||||
C_2 = (0.55228 , 1) \ , \
|
||||
E = (0, 1)
|
||||
\end{array}\]</p>
|
||||
|
||||
<p>Note that this is for a circle with radius 1, so if you have a different radius circle,
|
||||
simply multiply the coordinate by the radius you need, and done! Finally, forming the
|
||||
full curve is now a simple a matter of mirroring these coordinates about the origin:</p>
|
||||
|
||||
<textarea class="sketch-code" data-sketch-preset="simple" data-sketch-title="Cubic Bézier circle approximation">
|
||||
void setupCurve() {
|
||||
setupDefaultCubic();
|
||||
noLabels();
|
||||
}
|
||||
|
||||
void drawCurve(BezierCurve curve) {
|
||||
float ox = dim/2, oy = dim/2, r = dim/2.5;
|
||||
|
||||
stroke(150);
|
||||
line(0,dim/2,dim,dim/2);
|
||||
line(dim/2,0,dim/2,dim);
|
||||
|
||||
(new BezierCurve(new Point[]{
|
||||
new Point(ox + r*1, oy + r*0),
|
||||
new Point(ox + r*1, oy + r*0.55228),
|
||||
new Point(ox + r*0.55228, oy + r*1),
|
||||
new Point(ox + r*0, oy + r*1)
|
||||
})).draw(color(255,0,0));
|
||||
|
||||
(new BezierCurve(new Point[]{
|
||||
new Point(ox + r*0, oy + r*1),
|
||||
new Point(ox - r*0.55228, oy + r*1),
|
||||
new Point(ox - r*1, oy + r*0.55228),
|
||||
new Point(ox - r*1, oy + r*0)
|
||||
})).draw();
|
||||
|
||||
(new BezierCurve(new Point[]{
|
||||
new Point(ox - r*1, oy + r*0),
|
||||
new Point(ox - r*1, oy - r*0.55228),
|
||||
new Point(ox - r*0.55228, oy - r*1),
|
||||
new Point(ox + r*0, oy - r*1)
|
||||
})).draw();
|
||||
|
||||
(new BezierCurve(new Point[]{
|
||||
new Point(ox + r*0, oy - r*1),
|
||||
new Point(ox + r*0.55228, oy - r*1),
|
||||
new Point(ox + r*1, oy - r*0.55228),
|
||||
new Point(ox + r*1, oy + r*0)
|
||||
})).draw();
|
||||
}</textarea>
|
@@ -1,137 +0,0 @@
|
||||
<p>Let's look at some more things we will want to do with Bézier curves. Almost immediately after figuring out how to
|
||||
get bounding boxes to work, people tend to run into the problem that even though the minimal bounding box (based on
|
||||
rotation) is tight, it's not sufficient to perform collision detection ("<i>does curve C touch, or pass through, curve
|
||||
or line L?</i>"). In order to do this, we need to know whether or not there's an intersection on the actual curve.</p>
|
||||
|
||||
<p>We'll do this in steps, because it's a bit of a journey to get to curve/curve intersection checking. First, let's
|
||||
start simple, by implementing a line-line intersection checker. While we can solve this the traditional calculus way
|
||||
(determine the functions for both lines, then compute the intersection by equating them and solving for two unknowns),
|
||||
linear algebra actually offers a nicer solution:</p>
|
||||
|
||||
<p id="intersection_ll">if we have two line segments with two coordinates each, segments A-B and C-D, we can find the
|
||||
intersection of the lines these segments are an intervals on by linear algebra, using the procedure outlined in this
|
||||
<a href="http://www.topcoder.com/tc?module=Static&d1=tutorials&d2=geometry2#line_line_intersection">top coder</a> article.
|
||||
Of course, we need to make sure that the intersection isn't just on the lines our line segments lie on, but also on our
|
||||
line segments themselves, so after we find the intersection we need to verify it lies without the bounds of our original
|
||||
line segments.</p>
|
||||
|
||||
<p>The following graphic implements this intersection detection, showing a red point for an intersection on the lines
|
||||
our segments lie on (thus being a virtual intersection point), and a green point for an intersection that lies on
|
||||
both segments (being a real intersection point).</p>
|
||||
|
||||
<textarea class="sketch-code" data-sketch-preset="simple" data-sketch-title="Line/line intersections">
|
||||
Point p1, p2, p3, p4;
|
||||
|
||||
void setupCurve() {
|
||||
p1 = new Point(50,50);
|
||||
p2 = new Point(150,110);
|
||||
curves.add(new BezierCurve(new Point[]{p1,p2}, false));
|
||||
p3 = new Point(50,250);
|
||||
p4 = new Point(170,170);
|
||||
curves.add(new BezierCurve(new Point[]{p3,p4}, false));
|
||||
}
|
||||
|
||||
void drawCurve(BezierCurve curve) {
|
||||
// draw the lines through p1/p2 and p3/p4
|
||||
stroke(0,50);
|
||||
float dx = 10*(p2.x-p1.x), dy = 10*(p2.y-p1.y);
|
||||
line(p1.x-dx,p1.y-dy,p2.x+dx,p2.y+dy);
|
||||
dx = 10*(p4.x-p3.x); dy = 10*(p4.y-p3.y);
|
||||
line(p3.x-dx,p3.y-dy,p4.x+dx,p4.y+dy);
|
||||
|
||||
// show the line segments
|
||||
curves.get(0).draw();
|
||||
curves.get(1).draw();
|
||||
|
||||
// show the intersection point
|
||||
Point ntr = comp.getProjection(p1,p2,p3,p4);
|
||||
|
||||
// red if virtual intersection, green if real
|
||||
boolean oncurves = true;
|
||||
if(min(p1.x,p2.x) > ntr.x || ntr.x > max(p1.x,p2.x) ||
|
||||
min(p1.y,p2.y) > ntr.y || ntr.y > max(p1.y,p2.y)) oncurves = false;
|
||||
if(oncurves) {
|
||||
if(min(p3.x,p4.x) > ntr.x || ntr.x > max(p3.x,p4.x) ||
|
||||
min(p3.y,p4.y) > ntr.y || ntr.y > max(p3.y,p4.y)) oncurves = false; }
|
||||
|
||||
stroke(oncurves?0:255, oncurves?255:0, 0);
|
||||
ellipse(ntr.x,ntr.y,5,5);
|
||||
}</textarea>
|
||||
|
||||
<p>Curve/line intersection is more work, but we've already seen the techniques we need to use in order
|
||||
to perform it: first we translate/rotate both the line and curve together, in such a way that the line
|
||||
coincides with the x-axis. This will position the curve in a way that makes it cross the line at
|
||||
points where its y-function is zero. By doing this, the problem of finding intersections between a
|
||||
curve and a line has now become the problem of performing root finding on our translated/rotated curve.
|
||||
One Newton-Raphson root finding round later and the intersections have been found:</p>
|
||||
|
||||
<textarea class="sketch-code" data-sketch-preset="simple" data-sketch-title="Quadratic curve/line intersections">
|
||||
Point p1, p2;
|
||||
|
||||
void setupCurve() {
|
||||
p1 = new Point(40,60);
|
||||
p2 = new Point(260,200);
|
||||
curves.add(new BezierCurve(new Point[]{
|
||||
p1, p2
|
||||
}, false));
|
||||
curves.add(new BezierCurve(new Point[]{
|
||||
new Point(25,150),
|
||||
new Point(180,30),
|
||||
new Point(230,250)
|
||||
}));
|
||||
}
|
||||
|
||||
void drawCurve(BezierCurve curve) {
|
||||
curves.get(0).draw();
|
||||
curves.get(1).draw();
|
||||
|
||||
BezierCurve aligned = curves.get(1).align(p1,p2);
|
||||
float[] roots = comp.findAllRoots(0, aligned.y_values);
|
||||
fill(150,0,150);
|
||||
float x, y;
|
||||
for(float t: roots) {
|
||||
if(t<0 || t>1) continue;
|
||||
x = curves.get(1).getXValue(t);
|
||||
y = curves.get(1).getYValue(t);
|
||||
ellipse(x,y,5,5);
|
||||
text(""+round(1000*t)/1000,x+10,y);
|
||||
}
|
||||
}</textarea>
|
||||
|
||||
<textarea class="sketch-code" data-sketch-preset="simple" data-sketch-title="Cubic curve/line intersections">
|
||||
Point p1, p2;
|
||||
|
||||
void setupCurve() {
|
||||
p1 = new Point(100,20);
|
||||
p2 = new Point(195,255);
|
||||
curves.add(new BezierCurve(new Point[]{
|
||||
p1, p2
|
||||
}, false));
|
||||
curves.add(new BezierCurve(new Point[]{
|
||||
new Point(150,125),
|
||||
new Point(40,30),
|
||||
new Point(270,115),
|
||||
new Point(145,200)
|
||||
}));
|
||||
}
|
||||
|
||||
void drawCurve(BezierCurve curve) {
|
||||
curves.get(0).draw();
|
||||
curves.get(1).draw();
|
||||
|
||||
BezierCurve aligned = curves.get(1).align(p1,p2);
|
||||
float[] roots = comp.findAllRoots(0, aligned.y_values);
|
||||
fill(150,0,150);
|
||||
float x, y;
|
||||
for(float t: roots) {
|
||||
if(t<0 || t>1) continue;
|
||||
x = curves.get(1).getXValue(t);
|
||||
y = curves.get(1).getYValue(t);
|
||||
ellipse(x,y,5,5);
|
||||
text(""+round(1000*t)/1000,x+10,y);
|
||||
}
|
||||
}</textarea>
|
||||
|
||||
<p>Curve/curve intersection, however, is more complicated. Since we have no straight line to align to, we
|
||||
can't simply align one of the curves and be left with a simple procedure. Instead, we'll need to apply two
|
||||
techniques we've not covered yet: de Casteljau's algorithm, and curve splitting.</p>
|
@@ -1,57 +0,0 @@
|
||||
<p>Say we have a Bézier curve and some point, not on the curve, of which we want to know which
|
||||
<i>t</i> value on the curve gives us an on-curve point closest to our off-curve point. Or: say
|
||||
we want to find the projection of a random point onto a curve. How do we do that?</p>
|
||||
|
||||
<p>If the Bézier curve is of low enough order, we might be able to <a href="http://jazzros.blogspot.ca/2011/03/projecting-point-on-bezier-curve.html">work out the maths for how
|
||||
to do this</a>, and get a perfect <i>t</i> value back, but in general this is an incredibly hard
|
||||
problem and the easiest solution is, really, a numerical approach again. We'll be finding our
|
||||
ideal <i>t</i> value using a <a href="https://en.wikipedia.org/wiki/Binary_search_algorithm">binary
|
||||
search</a>. First, we do a coarse distance-check based on <i>t</i> values associated with the
|
||||
curve's "to draw" coordinates (using a lookup table, or LUT). This is pretty fast. Then we run
|
||||
this algorithm:</p>
|
||||
|
||||
<ol>
|
||||
<li>with the <i>t</i> value we found, start with some small interval around <i>t</i>
|
||||
(1/length_of_LUT on either side is a reasonable start),</li>
|
||||
<li>if the distance to <i>t ± interval/2</i> is larger than the distance to <i>t</i>,
|
||||
try again with the interval reduced to half its original length.</li>
|
||||
<li>if the distance to <i>t ± interval/2</i> is smaller than the distance to <i>t</i>,
|
||||
replace <i>t</i> with the smaller-distance value.</li>
|
||||
<li>after reducing the interval, or changing <i>t</i>, go back to step 1.</li>
|
||||
</ol>
|
||||
|
||||
<p>We keep repeating this process until the interval is small enough to claim the difference
|
||||
in precision found is irrelevant for the purpose we're trying to find <i>t</i> for. In this
|
||||
case, I'm arbitrarily fixing it at 0.0001.</p>
|
||||
|
||||
<p>The following graphic demonstrates the result of this procedure.Simply move the cursor
|
||||
around, and if it does not lie on top of the curve, you will see a line that projects the
|
||||
cursor onto the curve based on an iteratively found "ideal" <i>t</i> value.</p>
|
||||
|
||||
<textarea class="sketch-code" data-sketch-preset="simple" data-sketch-title="Projecting a point onto a Bézier curve">
|
||||
void setupCurve() {
|
||||
int d = dim - 2*pad;
|
||||
int order = 10;
|
||||
int[] c = {248,188, 218,294, 45,290, 12,236, 14,82, 186,177, 221,90, 18,156, 34,57, 198,18};
|
||||
Point[] points = new Point[c.length/2];
|
||||
for(int i=0, e=c.length; i<e; i+=2) {
|
||||
points[i/2] = new Point(c[i], c[i+1]);
|
||||
}
|
||||
curves.add(new BezierCurve(points));
|
||||
redrawOnMove();
|
||||
}
|
||||
|
||||
void drawCurve(BezierCurve curve) {
|
||||
additionals();
|
||||
curve.draw();
|
||||
|
||||
if(curve.over(mouseX,mouseY) == -1) {
|
||||
float t = curve.getPointProjection(new Point(mouseX, mouseY));
|
||||
Point p = curve.getPoint(t);
|
||||
stroke(255,0,0);
|
||||
line(mouseX, mouseY, p.x, p.y);
|
||||
fill(150,0,0);
|
||||
text("t ≈ " + (int(1000*t)/1000.0), p.x+10, p.y);
|
||||
text("p: "+mouseX+"/"+mouseY, mouseX+10, mouseY);
|
||||
}
|
||||
}</textarea>
|
61
images/latex/0ada8ece1a7c8b57ff1e5e2c094985b4b06107d8.svg
Normal file
@@ -0,0 +1,61 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="40.5ex" height="4.833ex" style="vertical-align: -1.667ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1366.4 17414.9 2096.8" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D447" d="M704 666c0 -3 -1 -13 -2 -17l-27 -174c-2 -15 -4 -23 -15 -23c-9 0 -12 7 -12 13c0 3 2 15 3 19c4 26 8 65 8 80c0 78 -45 82 -146 82c-21 0 -54 0 -63 -2c-12 -3 -16 -9 -23 -37l-133 -531c-4 -15 -4 -21 -4 -21c0 -16 8 -19 37 -22c26 -2 39 -2 64 -2c26 0 34 0 34 -11 c0 -20 -12 -20 -22 -20c-28 0 -58 2 -87 2l-83 1l-85 -1c-27 0 -55 -2 -82 -2c-6 0 -17 0 -17 12c0 19 6 19 42 19c107 0 110 11 119 48l134 534c1 3 4 15 4 21c0 8 0 12 -28 12h-39c-148 0 -174 -18 -228 -173c-6 -16 -7 -21 -17 -21c-7 0 -12 5 -12 11c0 0 5 16 6 18 l60 176c7 19 8 20 32 20h555c17 0 27 0 27 -11Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-34" d="M471 165h-100v-87c0 -36 2 -47 76 -47h21v-31c-41 3 -94 3 -136 3s-94 0 -135 -3v31h21c74 0 76 11 76 47v87h-266v31l307 469c8 12 11 12 20 12c16 0 16 -6 16 -26v-455h100v-31zM300 196v373l-244 -373h244Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D446" d="M645 695l-54 -219c-4 -17 -5 -20 -15 -20c-12 0 -12 10 -12 10c0 6 4 24 4 56c0 112 -61 155 -144 155c-95 0 -175 -85 -175 -166c0 -53 34 -82 61 -91l67 -18c89 -23 104 -27 127 -50c15 -14 49 -48 49 -117c0 -124 -118 -257 -254 -257c-58 0 -126 14 -169 72l-49 -57 c-12 -14 -13 -15 -18 -15c-6 0 -11 4 -11 10c0 3 56 231 60 235c3 3 5 4 10 4s12 -1 12 -11c0 0 -1 -3 -2 -7c-1 -6 -6 -30 -6 -54c0 -124 111 -146 175 -146c98 0 180 94 180 184c0 82 -55 97 -92 106l-107 28c-51 15 -104 61 -104 142c0 121 120 236 247 236 c65 0 117 -25 143 -72l48 57c12 14 13 15 18 15c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D436" d="M760 695l-63 -255c-5 -18 -5 -20 -18 -20c-4 0 -15 0 -15 10s3 11 3 51c0 116 -59 193 -161 193c-89 0 -183 -50 -244 -121c-100 -117 -121 -279 -121 -336c0 -156 106 -208 196 -208c52 0 115 17 184 73c69 58 92 129 101 158c2 8 7 10 13 10c0 0 12 0 12 -10 c0 -3 -17 -94 -110 -176c-53 -46 -129 -86 -216 -86c-153 0 -271 109 -271 274c0 232 225 453 448 453c111 0 157 -75 166 -89l70 77c11 11 12 12 15 12c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D438" d="M763 653l-20 -173c-2 -19 -3 -25 -14 -25c-9 0 -12 7 -12 12s1 12 1 18c4 27 4 29 4 53c0 82 -30 111 -152 111h-141c-44 0 -45 -4 -54 -39l-60 -241h94c92 0 110 23 131 99c3 12 5 18 14 18c7 0 12 -5 12 -11l-57 -234c-4 -15 -7 -20 -15 -20c-9 0 -13 6 -13 11 c0 3 1 6 3 11c7 30 7 42 7 49c0 25 0 46 -85 46h-99l-68 -273c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h146c171 0 208 67 273 215c2 6 4 12 13 12c12 0 12 -11 12 -11s-3 -9 -5 -14l-92 -216c-7 -16 -8 -17 -31 -17h-519c-19 0 -28 0 -28 12 c0 19 11 19 28 19c79 0 81 8 91 47l132 529c5 18 5 20 5 24c0 18 -28 18 -65 18c-19 0 -28 0 -28 11c0 20 10 20 30 20h505c25 0 30 0 27 -27Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D447" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="986" y="0"></use>
|
||||
<g transform="translate(1769,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="625" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="60" y="676"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="60" y="-707"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D446" x="2912" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="3784" y="0"></use>
|
||||
<g transform="translate(4567,0)">
|
||||
<g transform="translate(342,0)">
|
||||
<rect stroke="none" width="625" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="60" y="676"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="60" y="-707"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="5655" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="6642" y="0"></use>
|
||||
<g transform="translate(7425,0)">
|
||||
<g transform="translate(342,0)">
|
||||
<rect stroke="none" width="625" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="60" y="676"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="60" y="-707"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D438" x="8512" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="9558" y="0"></use>
|
||||
<g transform="translate(10341,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="625" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="60" y="676"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="60" y="-707"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="11484" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D446" x="11878" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="12750" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="13755" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="14260" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="15247" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D438" x="16252" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="17020" y="0"></use>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.7 KiB |
76
images/latex/18532746db89b4c10d25ea0bfd306fb7cfe40bdb.svg
Normal file
@@ -0,0 +1,76 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="33.333ex" height="6ex" style="vertical-align: -2.5ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1543.9 14359.5 2587.9" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-7B" d="M425 -238c0 -7 -5 -12 -12 -12c-105 0 -196 52 -196 125v250c0 58 -55 113 -130 113c-7 0 -12 5 -12 12s5 12 12 12c75 0 130 55 130 113v250c0 73 91 125 196 125c7 0 12 -5 12 -12s-5 -12 -12 -12c-75 0 -130 -49 -130 -101v-250c0 -58 -48 -104 -115 -125 c67 -21 115 -67 115 -125v-250c0 -52 55 -101 130 -101c7 0 12 -5 12 -12Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D436" d="M760 695l-63 -255c-5 -18 -5 -20 -18 -20c-4 0 -15 0 -15 10s3 11 3 51c0 116 -59 193 -161 193c-89 0 -183 -50 -244 -121c-100 -117 -121 -279 -121 -336c0 -156 106 -208 196 -208c52 0 115 17 184 73c69 58 92 129 101 158c2 8 7 10 13 10c0 0 12 0 12 -10 c0 -3 -17 -94 -110 -176c-53 -46 -129 -86 -216 -86c-153 0 -271 109 -271 274c0 232 225 453 448 453c111 0 157 -75 166 -89l70 77c11 11 12 12 15 12c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D465" d="M527 376c0 -40 -32 -58 -54 -58c-27 0 -38 19 -38 35c0 24 20 49 48 54c-21 13 -45 13 -50 13c-70 0 -93 -92 -99 -118l-34 -137c-11 -44 -17 -66 -17 -88c0 -34 16 -66 55 -66c32 0 100 24 133 131c2 7 4 11 13 11c3 0 12 0 12 -10c0 -25 -57 -154 -160 -154 c-60 0 -96 39 -108 76c-3 -6 -39 -76 -105 -76c-44 0 -94 20 -94 66c0 32 25 58 55 58c15 0 37 -8 37 -35c0 -28 -22 -49 -47 -54c21 -13 44 -13 50 -13c44 0 79 42 95 104c37 140 54 207 54 238c0 58 -35 67 -54 67c-34 0 -100 -25 -134 -131c-2 -9 -5 -11 -13 -11 c0 0 -12 0 -12 10c0 25 57 154 161 154c29 0 83 -10 108 -76c12 23 47 76 105 76c34 0 93 -14 93 -66Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D450" d="M430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3C6" d="M590 304c40 -158 -75 -315 -241 -315c-17 0 -25 1 -34 2c9 -142 12 -175 11 -183c-4 -23 -26 -26 -31 -26c-10 0 -30 6 -36 28c-1 5 0 7 0 20l12 168c-114 25 -198 98 -221 192c-24 96 16 241 44 241c10 0 14 -6 15 -10c0 0 1 -4 -5 -13c-43 -69 -38 -179 -31 -207 c18 -72 88 -128 201 -148c11 195 23 389 168 389c75 0 129 -60 148 -138zM568 282c-12 48 -53 102 -122 102c-89 0 -143 -96 -142 -224l7 -108c1 -3 2 -4 14 -4c8 -1 10 -1 18 -1c154 0 253 122 225 235Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44F" d="M415 282c0 -144 -123 -293 -241 -293c-74 0 -127 62 -127 157c0 35 4 51 16 101l82 326c5 21 14 55 14 62c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-74 -301c30 31 71 60 117 60c80 0 133 -69 133 -160zM343 326 c0 64 -27 94 -63 94c-26 0 -71 -15 -120 -80c-9 -11 -9 -13 -15 -35l-22 -92c-16 -63 -16 -82 -16 -101c0 -74 33 -101 67 -101c39 0 85 36 118 103c18 38 51 153 51 212Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-22C5" d="M192 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D466" d="M490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE6-7B" d="M648 -928c0 -12 -10 -22 -22 -22c-2 0 -4 0 -6 1c-155 48 -292 176 -292 299v600c0 110 -87 241 -210 279c-9 3 -16 11 -16 21s7 18 16 21c123 38 210 169 210 279v600c0 123 137 251 292 299c2 1 4 1 6 1c12 0 22 -10 22 -22c0 -10 -7 -18 -16 -21 c-122 -38 -210 -159 -210 -257v-600c0 -120 -107 -240 -237 -300c130 -60 237 -180 237 -300v-600c0 -98 88 -219 210 -257c9 -3 16 -11 16 -21Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE6-7B"></use>
|
||||
<g transform="translate(922,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,730)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="1018" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1505" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="2566" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="3349" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="4410" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="4848" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="5338" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="5812" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="6206" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="6852" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="7468" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="8473" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="9129" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="9635" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="10418" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="10892" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="11242" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="11847" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="12241" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="12887" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-728)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="1018" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1447" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="2508" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="3320" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="4381" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="4855" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="5205" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="5810" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="6204" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="6850" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="7466" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="8471" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="9127" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="9633" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="10071" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="10561" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="11035" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="11429" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="12075" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
168
images/latex/1aca5690b4d65bdecdaf16830b34eaebe61017bc.svg
Normal file
@@ -0,0 +1,168 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="61.5ex" height="8.167ex" style="vertical-align: -3.5ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -2018.4 26498.1 3536.8" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-7B" d="M425 -238c0 -7 -5 -12 -12 -12c-105 0 -196 52 -196 125v250c0 58 -55 113 -130 113c-7 0 -12 5 -12 12s5 12 12 12c75 0 130 55 130 113v250c0 73 91 125 196 125c7 0 12 -5 12 -12s-5 -12 -12 -12c-75 0 -130 -49 -130 -101v-250c0 -58 -48 -104 -115 -125 c67 -21 115 -67 115 -125v-250c0 -52 55 -101 130 -101c7 0 12 -5 12 -12Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D435" d="M756 545c0 -95 -105 -169 -209 -188c97 -11 155 -69 155 -141c0 -98 -118 -216 -276 -216h-357c-18 0 -27 0 -27 11c0 20 10 20 27 20c79 0 81 8 91 47l134 537c3 12 4 15 4 19c0 13 -9 14 -27 16c-17 2 -38 2 -38 2c-19 0 -28 0 -28 11c0 20 10 20 29 20h336 c120 0 186 -64 186 -138zM665 549c0 44 -21 103 -109 103h-129c-43 0 -45 -3 -54 -38l-62 -248h146c122 0 208 95 208 183zM609 227c0 43 -19 117 -115 117h-189l-69 -279c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h136c118 0 207 97 207 196Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D465" d="M527 376c0 -40 -32 -58 -54 -58c-27 0 -38 19 -38 35c0 24 20 49 48 54c-21 13 -45 13 -50 13c-70 0 -93 -92 -99 -118l-34 -137c-11 -44 -17 -66 -17 -88c0 -34 16 -66 55 -66c32 0 100 24 133 131c2 7 4 11 13 11c3 0 12 0 12 -10c0 -25 -57 -154 -160 -154 c-60 0 -96 39 -108 76c-3 -6 -39 -76 -105 -76c-44 0 -94 20 -94 66c0 32 25 58 55 58c15 0 37 -8 37 -35c0 -28 -22 -49 -47 -54c21 -13 44 -13 50 -13c44 0 79 42 95 104c37 140 54 207 54 238c0 58 -35 67 -54 67c-34 0 -100 -25 -134 -131c-2 -9 -5 -11 -13 -11 c0 0 -12 0 -12 10c0 25 57 154 161 154c29 0 83 -10 108 -76c12 23 47 76 105 76c34 0 93 -14 93 -66Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D436" d="M760 695l-63 -255c-5 -18 -5 -20 -18 -20c-4 0 -15 0 -15 10s3 11 3 51c0 116 -59 193 -161 193c-89 0 -183 -50 -244 -121c-100 -117 -121 -279 -121 -336c0 -156 106 -208 196 -208c52 0 115 17 184 73c69 58 92 129 101 158c2 8 7 10 13 10c0 0 12 0 12 -10 c0 -3 -17 -94 -110 -176c-53 -46 -129 -86 -216 -86c-153 0 -271 109 -271 274c0 232 225 453 448 453c111 0 157 -75 166 -89l70 77c11 11 12 12 15 12c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D450" d="M430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3C6" d="M590 304c40 -158 -75 -315 -241 -315c-17 0 -25 1 -34 2c9 -142 12 -175 11 -183c-4 -23 -26 -26 -31 -26c-10 0 -30 6 -36 28c-1 5 0 7 0 20l12 168c-114 25 -198 98 -221 192c-24 96 16 241 44 241c10 0 14 -6 15 -10c0 0 1 -4 -5 -13c-43 -69 -38 -179 -31 -207 c18 -72 88 -128 201 -148c11 195 23 389 168 389c75 0 129 -60 148 -138zM568 282c-12 48 -53 102 -122 102c-89 0 -143 -96 -142 -224l7 -108c1 -3 2 -4 14 -4c8 -1 10 -1 18 -1c154 0 253 122 225 235Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE3-28" d="M461 -459c0 -7 -6 -13 -13 -13c-3 0 -6 1 -8 3c-147 111 -284 390 -284 633v172c0 243 137 522 284 633c2 2 5 3 8 3c7 0 13 -6 13 -13c0 -4 -2 -8 -5 -10c-140 -105 -236 -383 -236 -613v-172c0 -230 96 -508 236 -613c3 -2 5 -6 5 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE3-29" d="M367 164c0 -243 -137 -522 -284 -633c-3 -2 -5 -3 -8 -3c-7 0 -13 6 -13 13c0 4 2 8 5 10c140 105 236 383 236 613v172c0 230 -96 508 -236 613c-3 2 -5 6 -5 10c0 7 6 13 13 13c3 0 5 -1 8 -3c147 -111 284 -390 284 -633v-172Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D466" d="M490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-22C5" d="M192 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A7" d="M755 724c0 -11 -7 -21 -17 -24c-138 -51 -236 -202 -236 -325v-375h-102v375c0 151 151 312 320 373c3 1 6 2 9 2c14 0 26 -12 26 -26Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A9" d="M755 26c0 -14 -12 -26 -26 -26c-3 0 -6 1 -9 2c-169 61 -320 222 -320 373v375h102v-375c0 -123 98 -274 236 -325c10 -3 17 -13 17 -24Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A8" d="M502 1500v-375c0 -147 -120 -300 -265 -375c145 -75 265 -228 265 -375v-375h-102v375c0 137 -97 300 -236 351c-10 3 -17 13 -17 24s7 21 17 24c139 51 236 214 236 351v375h102Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE7-E003" d="M502 0h-102v748h102v-748Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<g transform="translate(0,2004)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A7" x="0" y="-760"></use>
|
||||
<g transform="translate(0,-1040.2592512575739) scale(1,0.42250560851922686)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE7-E003"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A8" x="0" y="-2505"></use>
|
||||
<g transform="translate(0,-2784.7435586003403) scale(1,0.42250560851922686)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE7-E003"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A9" x="0" y="-3499"></use>
|
||||
</g>
|
||||
<g transform="translate(1074,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,1022)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="1080" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="1494" y="0"></use>
|
||||
<g transform="translate(2499,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="1018" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="4005" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="5066" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="5504" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="5994" y="0"></use>
|
||||
<g transform="translate(6634,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-28"></use>
|
||||
<g transform="translate(528,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="576" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C6" x="84" y="856"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="155" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-29" x="1344" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="8729" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="9734" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="10172" y="0"></use>
|
||||
<g transform="translate(10662,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="670" y="513"></use>
|
||||
</g>
|
||||
<g transform="translate(11760,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-28"></use>
|
||||
<g transform="translate(528,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="576" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C6" x="84" y="856"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="155" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-29" x="1344" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(0,-1023)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="1080" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="1436" y="0"></use>
|
||||
<g transform="translate(2441,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="1018" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="3889" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="4950" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="5424" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="5774" y="0"></use>
|
||||
<g transform="translate(6545,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-28"></use>
|
||||
<g transform="translate(528,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="576" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C6" x="84" y="856"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="155" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-29" x="1344" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="8640" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="9645" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="10083" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="10573" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="11047" y="0"></use>
|
||||
<g transform="translate(11441,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="576" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C6" x="84" y="856"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="155" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="12258" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="12874" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="13380" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="13854" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="14204" y="0"></use>
|
||||
<g transform="translate(14975,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-28"></use>
|
||||
<g transform="translate(528,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="576" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C6" x="84" y="856"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="155" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-29" x="1344" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="17126" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="18187" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="18661" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="19011" y="0"></use>
|
||||
<g transform="translate(19782,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-28"></use>
|
||||
<g transform="translate(528,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="576" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C6" x="84" y="856"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="155" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-29" x="1344" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="21877" y="0"></use>
|
||||
<g transform="translate(22660,0)">
|
||||
<g transform="translate(342,0)">
|
||||
<rect stroke="none" width="2144" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(59,626)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D460" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D456" x="474" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="824" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-28" x="1429" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C6" x="1823" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-29" x="2469" y="0"></use>
|
||||
</g>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="1263" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 15 KiB |
61
images/latex/2647fcf65a5b6ae1fabcf966381789da74f8d9c8.svg
Normal file
@@ -0,0 +1,61 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="29.5ex" height="5.833ex" style="vertical-align: -2.333ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1521.9 12686.5 2543.9" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D446" d="M645 695l-54 -219c-4 -17 -5 -20 -15 -20c-12 0 -12 10 -12 10c0 6 4 24 4 56c0 112 -61 155 -144 155c-95 0 -175 -85 -175 -166c0 -53 34 -82 61 -91l67 -18c89 -23 104 -27 127 -50c15 -14 49 -48 49 -117c0 -124 -118 -257 -254 -257c-58 0 -126 14 -169 72l-49 -57 c-12 -14 -13 -15 -18 -15c-6 0 -11 4 -11 10c0 3 56 231 60 235c3 3 5 4 10 4s12 -1 12 -11c0 0 -1 -3 -2 -7c-1 -6 -6 -30 -6 -54c0 -124 111 -146 175 -146c98 0 180 94 180 184c0 82 -55 97 -92 106l-107 28c-51 15 -104 61 -104 142c0 121 120 236 247 236 c65 0 117 -25 143 -72l48 57c12 14 13 15 18 15c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-30" d="M460 320c0 -79 -5 -157 -37 -226c-44 -95 -120 -116 -174 -116c-49 0 -122 20 -165 101c-41 76 -45 166 -45 241c0 80 5 158 37 227c41 93 114 119 174 119c42 0 124 -16 170 -112c35 -74 40 -154 40 -234zM377 332c0 63 0 139 -10 195c-19 99 -85 117 -118 117 c-25 0 -100 -9 -119 -128c-8 -54 -8 -120 -8 -184c0 -59 0 -151 11 -211c18 -96 77 -121 116 -121c45 0 102 30 117 125c11 64 11 132 11 207Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE6-28" d="M682 -928c0 -10 -8 -18 -18 -18c-4 0 -8 2 -11 4c-222 167 -427 613 -427 1006v372c0 393 205 839 427 1006c3 2 7 4 11 4c10 0 18 -8 18 -18c0 -6 -3 -11 -7 -14c-213 -160 -361 -603 -361 -978v-372c0 -375 148 -818 361 -978c4 -3 7 -8 7 -14Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE6-29" d="M510 64c0 -393 -205 -839 -427 -1006c-3 -2 -7 -4 -11 -4c-10 0 -18 8 -18 18c0 6 3 11 7 14c213 160 361 603 361 978v372c0 375 -148 818 -361 978c-4 3 -7 8 -7 14c0 10 8 18 18 18c4 0 8 -2 11 -4c222 -167 427 -613 427 -1006v-372Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2C" d="M203 1c0 -117 -80 -194 -91 -194c-5 0 -10 4 -10 11c0 3 0 5 11 16c33 33 68 93 68 167c0 14 -2 15 -2 15s-2 -1 -5 -3c-10 -9 -23 -13 -35 -13c-33 0 -53 26 -53 53c0 28 20 53 53 53c39 0 64 -39 64 -105Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D438" d="M763 653l-20 -173c-2 -19 -3 -25 -14 -25c-9 0 -12 7 -12 12s1 12 1 18c4 27 4 29 4 53c0 82 -30 111 -152 111h-141c-44 0 -45 -4 -54 -39l-60 -241h94c92 0 110 23 131 99c3 12 5 18 14 18c7 0 12 -5 12 -11l-57 -234c-4 -15 -7 -20 -15 -20c-9 0 -13 6 -13 11 c0 3 1 6 3 11c7 30 7 42 7 49c0 25 0 46 -85 46h-99l-68 -273c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h146c171 0 208 67 273 215c2 6 4 12 13 12c12 0 12 -11 12 -11s-3 -9 -5 -14l-92 -216c-7 -16 -8 -17 -31 -17h-519c-19 0 -28 0 -28 12 c0 19 11 19 28 19c79 0 81 8 91 47l132 529c5 18 5 20 5 24c0 18 -28 18 -65 18c-19 0 -28 0 -28 11c0 20 10 20 30 20h505c25 0 30 0 27 -27Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D450" d="M430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3C6" d="M590 304c40 -158 -75 -315 -241 -315c-17 0 -25 1 -34 2c9 -142 12 -175 11 -183c-4 -23 -26 -26 -31 -26c-10 0 -30 6 -36 28c-1 5 0 7 0 20l12 168c-114 25 -198 98 -221 192c-24 96 16 241 44 241c10 0 14 -6 15 -10c0 0 1 -4 -5 -13c-43 -69 -38 -179 -31 -207 c18 -72 88 -128 201 -148c11 195 23 389 168 389c75 0 129 -60 148 -138zM568 282c-12 48 -53 102 -122 102c-89 0 -143 -96 -142 -224l7 -108c1 -3 2 -4 14 -4c8 -1 10 -1 18 -1c154 0 253 122 225 235Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D446" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="927" y="0"></use>
|
||||
<g transform="translate(1988,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE6-28"></use>
|
||||
<g transform="translate(908,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="0" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="-750"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE6-29" x="1569" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="4797" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D438" x="5911" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="6957" y="0"></use>
|
||||
<g transform="translate(8017,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE6-28"></use>
|
||||
<g transform="translate(908,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(13,708)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="438" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="928" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1402" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="1796" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2442" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="474" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="824" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1429" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="1823" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2469" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE6-29" x="3927" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.4 KiB |
157
images/latex/2d7e1a3fdf255e9825d04dc78bebf4d0aa5ac3fb.svg
Normal file
@@ -0,0 +1,157 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="41.5ex" height="11.833ex" style="vertical-align: -5.333ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -2805.4 17884.5 5110.9" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D459" d="M258 683l-144 -578c-5 -19 -6 -24 -6 -48c0 -14 0 -46 30 -46c40 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10c0 0 -12 -60 -30 -98c-17 -36 -42 -56 -75 -56c-47 0 -91 35 -91 92c0 16 2 23 5 34l126 500l3 20c0 8 -1 17 -49 17c-15 0 -25 0 -25 11 c0 19 11 20 19 21c26 2 99 10 122 10c13 0 13 -11 13 -11Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D450" d="M430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3C6" d="M590 304c40 -158 -75 -315 -241 -315c-17 0 -25 1 -34 2c9 -142 12 -175 11 -183c-4 -23 -26 -26 -31 -26c-10 0 -30 6 -36 28c-1 5 0 7 0 20l12 168c-114 25 -198 98 -221 192c-24 96 16 241 44 241c10 0 14 -6 15 -10c0 0 1 -4 -5 -13c-43 -69 -38 -179 -31 -207 c18 -72 88 -128 201 -148c11 195 23 389 168 389c75 0 129 -60 148 -138zM568 282c-12 48 -53 102 -122 102c-89 0 -143 -96 -142 -224l7 -108c1 -3 2 -4 14 -4c8 -1 10 -1 18 -1c154 0 253 122 225 235Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2C" d="M203 1c0 -117 -80 -194 -91 -194c-5 0 -10 4 -10 11c0 3 0 5 11 16c33 33 68 93 68 167c0 14 -2 15 -2 15s-2 -1 -5 -3c-10 -9 -23 -13 -35 -13c-33 0 -53 26 -53 53c0 28 20 53 53 53c39 0 64 -39 64 -105Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-7B" d="M425 -238c0 -7 -5 -12 -12 -12c-105 0 -196 52 -196 125v250c0 58 -55 113 -130 113c-7 0 -12 5 -12 12s5 12 12 12c75 0 130 55 130 113v250c0 73 91 125 196 125c7 0 12 -5 12 -12s-5 -12 -12 -12c-75 0 -130 -49 -130 -101v-250c0 -58 -48 -104 -115 -125 c67 -21 115 -67 115 -125v-250c0 -52 55 -101 130 -101c7 0 12 -5 12 -12Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D436" d="M760 695l-63 -255c-5 -18 -5 -20 -18 -20c-4 0 -15 0 -15 10s3 11 3 51c0 116 -59 193 -161 193c-89 0 -183 -50 -244 -121c-100 -117 -121 -279 -121 -336c0 -156 106 -208 196 -208c52 0 115 17 184 73c69 58 92 129 101 158c2 8 7 10 13 10c0 0 12 0 12 -10 c0 -3 -17 -94 -110 -176c-53 -46 -129 -86 -216 -86c-153 0 -271 109 -271 274c0 232 225 453 448 453c111 0 157 -75 166 -89l70 77c11 11 12 12 15 12c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D465" d="M527 376c0 -40 -32 -58 -54 -58c-27 0 -38 19 -38 35c0 24 20 49 48 54c-21 13 -45 13 -50 13c-70 0 -93 -92 -99 -118l-34 -137c-11 -44 -17 -66 -17 -88c0 -34 16 -66 55 -66c32 0 100 24 133 131c2 7 4 11 13 11c3 0 12 0 12 -10c0 -25 -57 -154 -160 -154 c-60 0 -96 39 -108 76c-3 -6 -39 -76 -105 -76c-44 0 -94 20 -94 66c0 32 25 58 55 58c15 0 37 -8 37 -35c0 -28 -22 -49 -47 -54c21 -13 44 -13 50 -13c44 0 79 42 95 104c37 140 54 207 54 238c0 58 -35 67 -54 67c-34 0 -100 -25 -134 -131c-2 -9 -5 -11 -13 -11 c0 0 -12 0 -12 10c0 25 57 154 161 154c29 0 83 -10 108 -76c12 23 47 76 105 76c34 0 93 -14 93 -66Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-22C5" d="M192 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE3-28" d="M461 -459c0 -7 -6 -13 -13 -13c-3 0 -6 1 -8 3c-147 111 -284 390 -284 633v172c0 243 137 522 284 633c2 2 5 3 8 3c7 0 13 -6 13 -13c0 -4 -2 -8 -5 -10c-140 -105 -236 -383 -236 -613v-172c0 -230 96 -508 236 -613c3 -2 5 -6 5 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE3-29" d="M367 164c0 -243 -137 -522 -284 -633c-3 -2 -5 -3 -8 -3c-7 0 -13 6 -13 13c0 4 2 8 5 10c140 105 236 383 236 613v172c0 230 -96 508 -236 613c-3 2 -5 6 -5 10c0 7 6 13 13 13c3 0 5 -1 8 -3c147 -111 284 -390 284 -633v-172Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D466" d="M490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A7" d="M755 724c0 -11 -7 -21 -17 -24c-138 -51 -236 -202 -236 -325v-375h-102v375c0 151 151 312 320 373c3 1 6 2 9 2c14 0 26 -12 26 -26Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A9" d="M755 26c0 -14 -12 -26 -26 -26c-3 0 -6 1 -9 2c-169 61 -320 222 -320 373v375h102v-375c0 -123 98 -274 236 -325c10 -3 17 -13 17 -24Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A8" d="M502 1500v-375c0 -147 -120 -300 -265 -375c145 -75 265 -228 265 -375v-375h-102v375c0 137 -97 300 -236 351c-10 3 -17 13 -17 24s7 21 17 24c139 51 236 214 236 351v375h102Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE7-E003" d="M502 0h-102v748h102v-748Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<g transform="translate(167,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,1866)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D459" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="580" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="1641" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="2079" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="2569" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="3043" y="0"></use>
|
||||
<g transform="translate(3437,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="576" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C6" x="84" y="856"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="155" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="4254" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="4980" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-878)">
|
||||
<g transform="translate(0,1914)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A7" x="0" y="-760"></use>
|
||||
<g transform="translate(0,-950.953125) scale(1,0.3046875)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE7-E003"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A8" x="0" y="-2414"></use>
|
||||
<g transform="translate(0,-2604.953125) scale(1,0.3046875)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE7-E003"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A9" x="0" y="-3318"></use>
|
||||
</g>
|
||||
<g transform="translate(1074,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,932)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="1018" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1505" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D459" x="2566" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="3091" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="3597" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="4035" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="4525" y="0"></use>
|
||||
<g transform="translate(5165,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-28"></use>
|
||||
<g transform="translate(528,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="576" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C6" x="84" y="856"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="155" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-29" x="1344" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="7316" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="8377" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="8815" y="0"></use>
|
||||
<g transform="translate(9305,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="670" y="513"></use>
|
||||
</g>
|
||||
<g transform="translate(10402,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-28"></use>
|
||||
<g transform="translate(528,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="576" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C6" x="84" y="856"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="155" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-29" x="1344" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="12774" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-932)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="1018" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1447" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D459" x="2508" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="3033" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="3539" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="4013" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="4363" y="0"></use>
|
||||
<g transform="translate(5134,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-28"></use>
|
||||
<g transform="translate(528,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="576" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C6" x="84" y="856"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="155" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-29" x="1344" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="7285" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="8346" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="8784" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="9274" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="9748" y="0"></use>
|
||||
<g transform="translate(10142,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="576" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C6" x="84" y="856"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="155" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="10958" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="11575" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="12080" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="12554" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="12904" y="0"></use>
|
||||
<g transform="translate(13675,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-28"></use>
|
||||
<g transform="translate(528,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="576" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C6" x="84" y="856"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="155" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-29" x="1344" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="16047" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 14 KiB |
35
images/latex/4aa65a2d8e20a4d3df3ef42dd89322898507fc60.svg
Normal file
@@ -0,0 +1,35 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="18.5ex" height="5.667ex" style="vertical-align: -2.333ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1469.9 7965.1 2439.9" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D436" d="M760 695l-63 -255c-5 -18 -5 -20 -18 -20c-4 0 -15 0 -15 10s3 11 3 51c0 116 -59 193 -161 193c-89 0 -183 -50 -244 -121c-100 -117 -121 -279 -121 -336c0 -156 106 -208 196 -208c52 0 115 17 184 73c69 58 92 129 101 158c2 8 7 10 13 10c0 0 12 0 12 -10 c0 -3 -17 -94 -110 -176c-53 -46 -129 -86 -216 -86c-153 0 -271 109 -271 274c0 232 225 453 448 453c111 0 157 -75 166 -89l70 77c11 11 12 12 15 12c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D446" d="M645 695l-54 -219c-4 -17 -5 -20 -15 -20c-12 0 -12 10 -12 10c0 6 4 24 4 56c0 112 -61 155 -144 155c-95 0 -175 -85 -175 -166c0 -53 34 -82 61 -91l67 -18c89 -23 104 -27 127 -50c15 -14 49 -48 49 -117c0 -124 -118 -257 -254 -257c-58 0 -126 14 -169 72l-49 -57 c-12 -14 -13 -15 -18 -15c-6 0 -11 4 -11 10c0 3 56 231 60 235c3 3 5 4 10 4s12 -1 12 -11c0 0 -1 -3 -2 -7c-1 -6 -6 -30 -6 -54c0 -124 111 -146 175 -146c98 0 180 94 180 184c0 82 -55 97 -92 106l-107 28c-51 15 -104 61 -104 142c0 121 120 236 247 236 c65 0 117 -25 143 -72l48 57c12 14 13 15 18 15c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-22C5" d="M192 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-30" d="M460 320c0 -79 -5 -157 -37 -226c-44 -95 -120 -116 -174 -116c-49 0 -122 20 -165 101c-41 76 -45 166 -45 241c0 80 5 158 37 227c41 93 114 119 174 119c42 0 124 -16 170 -112c35 -74 40 -154 40 -234zM377 332c0 63 0 139 -10 195c-19 99 -85 117 -118 117 c-25 0 -100 -9 -119 -128c-8 -54 -8 -120 -8 -184c0 -59 0 -151 11 -211c18 -96 77 -121 116 -121c45 0 102 30 117 125c11 64 11 132 11 207Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE6-28" d="M682 -928c0 -10 -8 -18 -18 -18c-4 0 -8 2 -11 4c-222 167 -427 613 -427 1006v372c0 393 205 839 427 1006c3 2 7 4 11 4c10 0 18 -8 18 -18c0 -6 -3 -11 -7 -14c-213 -160 -361 -603 -361 -978v-372c0 -375 148 -818 361 -978c4 -3 7 -8 7 -14Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE6-29" d="M510 64c0 -393 -205 -839 -427 -1006c-3 -2 -7 -4 -11 -4c-10 0 -18 8 -18 18c0 6 3 11 7 14c213 160 361 603 361 978v372c0 375 -148 818 -361 978c-4 3 -7 8 -7 14c0 10 8 18 18 18c4 0 8 -2 11 -4c222 -167 427 -613 427 -1006v-372Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="1018" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1454" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D446" x="2515" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="3387" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="4393" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="5149" y="0"></use>
|
||||
<g transform="translate(5654,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE6-28"></use>
|
||||
<g transform="translate(908,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="0" y="-750"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE6-29" x="1569" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.2 KiB |
51
images/latex/5463af92f852ed28c136cf1f816d83de5e871b87.svg
Normal file
@@ -0,0 +1,51 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="21ex" height="7ex" style="vertical-align: -3ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1768.9 9038.7 3037.9" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D441" d="M881 672c0 -19 -12 -20 -17 -20c-80 -3 -98 -34 -108 -74l-140 -557c-5 -18 -5 -21 -16 -21c-9 0 -12 2 -19 19l-249 589c-5 10 -5 12 -9 18l-132 -528c-3 -11 -4 -16 -4 -23c0 -20 8 -42 66 -44c11 0 20 -1 20 -11c0 -20 -13 -20 -18 -20c-33 0 -69 3 -103 3 c-33 0 -68 -3 -100 -3c-8 0 -13 4 -13 11c0 19 11 20 17 20c81 3 98 35 108 75l134 537c0 9 -63 9 -68 9c-19 0 -28 0 -28 11c0 20 9 20 29 20h134c23 0 24 -1 32 -19l221 -522l112 445c1 3 3 18 3 21c0 22 -11 43 -68 44c-8 0 -18 0 -18 11c0 20 12 20 18 20 c33 0 68 -3 102 -3c33 0 68 3 101 3c13 0 13 -11 13 -11Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D461" d="M330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-22A5" d="M722 20c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h293v624c0 11 9 20 20 20s20 -9 20 -20v-624h293c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D435" d="M756 545c0 -95 -105 -169 -209 -188c97 -11 155 -69 155 -141c0 -98 -118 -216 -276 -216h-357c-18 0 -27 0 -27 11c0 20 10 20 27 20c79 0 81 8 91 47l134 537c3 12 4 15 4 19c0 13 -9 14 -27 16c-17 2 -38 2 -38 2c-19 0 -28 0 -28 11c0 20 10 20 29 20h336 c120 0 186 -64 186 -138zM665 549c0 44 -21 103 -109 103h-129c-43 0 -45 -3 -54 -38l-62 -248h146c122 0 208 95 208 183zM609 227c0 43 -19 117 -115 117h-189l-69 -279c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h136c118 0 207 97 207 196Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2032" d="M251 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-7C" d="M159 -230c0 -11 -9 -20 -20 -20s-20 9 -20 20v960c0 11 9 20 20 20s20 -9 20 -20v-960Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE1-7C" d="M161 -329c0 -12 -10 -22 -22 -22s-22 10 -22 22v1158c0 12 10 22 22 22s22 -10 22 -22v-1158Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE7-28" d="M823 -1224c0 -11 -10 -21 -21 -21c-5 0 -9 2 -12 4c-268 202 -513 751 -513 1241v500c0 490 245 1039 513 1241c3 2 7 4 12 4c11 0 21 -10 21 -21c0 -7 -3 -13 -9 -17c-255 -192 -435 -739 -435 -1207v-500c0 -468 180 -1015 435 -1207c6 -4 9 -10 9 -17Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE7-29" d="M598 0c0 -490 -245 -1039 -513 -1241c-3 -2 -7 -4 -12 -4c-11 0 -21 10 -21 21c0 7 3 13 9 17c255 192 435 739 435 1207v500c0 468 -180 1015 -435 1207c-6 4 -9 10 -9 17c0 11 10 21 21 21c5 0 9 -2 12 -4c268 -202 513 -751 513 -1241v-500Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D441" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="886" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1280" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="1646" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22A5" x="2317" y="0"></use>
|
||||
<g transform="translate(3378,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE7-28"></use>
|
||||
<g transform="translate(880,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="3660" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(709,777)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="1080" y="513"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1087" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1481" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="1847" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(60,-881)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE1-7C"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="283" y="0"></use>
|
||||
<g transform="translate(566,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="1080" y="408"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1653" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="2047" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2413" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE1-7C" x="2807" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="3257" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE7-29" x="4780" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.3 KiB |
105
images/latex/5666f6b7888ed2b25f0a7eacb744836b53f495a1.svg
Normal file
@@ -0,0 +1,105 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="61.5ex" height="5.167ex" style="vertical-align: -2ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1377.4 26491 2197.4" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-7C" d="M159 -230c0 -11 -9 -20 -20 -20s-20 9 -20 20v960c0 11 9 20 20 20s20 -9 20 -20v-960Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D434" d="M721 20c0 -20 -12 -20 -18 -20c-25 0 -88 3 -113 3c-41 0 -84 -3 -125 -3c0 0 -14 0 -14 11c0 20 10 20 24 20c20 0 72 3 72 33c0 10 -14 146 -16 167h-251c-68 -116 -69 -116 -76 -128c-8 -14 -14 -25 -14 -37c0 -25 24 -33 47 -35c7 0 16 -1 16 -12 c0 -19 -13 -19 -19 -19c-32 0 -67 3 -100 3c-28 0 -59 -3 -86 -3c-8 0 -13 5 -13 11c0 19 9 19 21 20c44 3 83 17 123 84l348 584c6 10 10 17 26 17c17 0 17 -4 19 -24l61 -625c3 -29 3 -36 65 -36c13 0 23 0 23 -11zM528 262l-32 330l-197 -330h229Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2C" d="M203 1c0 -117 -80 -194 -91 -194c-5 0 -10 4 -10 11c0 3 0 5 11 16c33 33 68 93 68 167c0 14 -2 15 -2 15s-2 -1 -5 -3c-10 -9 -23 -13 -35 -13c-33 0 -53 26 -53 53c0 28 20 53 53 53c39 0 64 -39 64 -105Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D436" d="M760 695l-63 -255c-5 -18 -5 -20 -18 -20c-4 0 -15 0 -15 10s3 11 3 51c0 116 -59 193 -161 193c-89 0 -183 -50 -244 -121c-100 -117 -121 -279 -121 -336c0 -156 106 -208 196 -208c52 0 115 17 184 73c69 58 92 129 101 158c2 8 7 10 13 10c0 0 12 0 12 -10 c0 -3 -17 -94 -110 -176c-53 -46 -129 -86 -216 -86c-153 0 -271 109 -271 274c0 232 225 453 448 453c111 0 157 -75 166 -89l70 77c11 11 12 12 15 12c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D451" d="M516 683l-144 -578c-4 -17 -6 -24 -6 -48c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293 c45 0 74 -27 92 -64l60 237l3 20c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 13 6 18 14 19c17 2 112 11 127 11c13 0 13 -11 13 -11zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37 l50 196c1 5 3 11 3 17Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-22C5" d="M192 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45F" d="M436 377c0 -36 -28 -59 -55 -59s-38 19 -38 35c0 26 22 50 52 55c0 0 -16 12 -42 12c-43 0 -72 -26 -80 -33c-24 -22 -52 -69 -56 -82l-32 -130c-4 -18 -38 -154 -40 -158c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43l58 231c13 52 16 63 16 84 c0 38 -14 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 3 13 63 31 97c9 18 28 57 74 57c47 0 83 -32 91 -77c19 28 63 77 128 77c51 0 83 -30 83 -65Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D461" d="M330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-33" d="M457 171c0 -102 -91 -193 -213 -193c-109 0 -202 66 -202 157c0 44 32 58 56 58c29 0 56 -20 56 -56c0 -38 -31 -60 -66 -55c35 -59 110 -76 153 -76c44 0 113 29 113 165c0 98 -37 166 -119 166h-44c-17 0 -24 0 -24 11c0 10 7 11 15 12c7 0 31 2 39 3c25 1 59 4 89 52 c26 44 28 102 28 114c0 90 -55 112 -96 112c-36 0 -102 -13 -133 -62c15 0 62 0 62 -50c0 -29 -20 -51 -51 -51c-29 0 -51 19 -51 52c0 76 76 136 177 136c96 0 184 -56 184 -138c0 -79 -58 -149 -140 -176c104 -21 167 -99 167 -181Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE5-28" d="M608 -780c0 -9 -7 -16 -16 -16c-4 0 -7 1 -10 3c-199 150 -381 545 -381 893v300c0 348 182 743 381 893c3 2 6 3 10 3c9 0 16 -7 16 -16c0 -5 -3 -10 -6 -13c-190 -142 -323 -535 -323 -867v-300c0 -332 133 -725 323 -867c3 -3 6 -8 6 -13Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE5-29" d="M462 100c0 -348 -182 -743 -382 -893c-2 -2 -6 -3 -9 -3c-9 0 -16 7 -16 16c0 5 2 10 6 13c190 142 323 535 323 867v300c0 332 -133 725 -323 867c-4 3 -6 8 -6 13c0 9 7 16 16 16c3 0 7 -1 9 -3c200 -150 382 -545 382 -893v-300Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-34" d="M471 165h-100v-87c0 -36 2 -47 76 -47h21v-31c-41 3 -94 3 -136 3s-94 0 -135 -3v31h21c74 0 76 11 76 47v87h-266v31l307 469c8 12 11 12 20 12c16 0 16 -6 16 -26v-455h100v-31zM300 196v373l-244 -373h244Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="283" y="0"></use>
|
||||
<g transform="translate(566,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D434" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="755" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="1204" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="2535" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="2818" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="3379" y="0"></use>
|
||||
<g transform="translate(4440,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D451" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="742" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="5644" y="0"></use>
|
||||
<g transform="translate(6649,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D451" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="742" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="7909" y="0"></use>
|
||||
<g transform="translate(8970,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D451" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="742" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="10174" y="0"></use>
|
||||
<g transform="translate(11179,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D451" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="742" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="12384" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="12889" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="13345" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="13879" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="14245" y="0"></use>
|
||||
<g transform="translate(14595,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="692" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(15709,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE5-28"></use>
|
||||
<g transform="translate(668,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="625" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="60" y="676"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="60" y="-696"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE5-29" x="1533" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="18188" y="0"></use>
|
||||
<g transform="translate(19248,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D451" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="742" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="20453" y="0"></use>
|
||||
<g transform="translate(21236,0)">
|
||||
<g transform="translate(342,0)">
|
||||
<rect stroke="none" width="625" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="60" y="676"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="60" y="-696"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(22323,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D451" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="742" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="23583" y="0"></use>
|
||||
<g transform="translate(24366,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="625" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="60" y="676"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="60" y="-696"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(25508,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D451" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="742" y="-213"></use>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
53
images/latex/6c96fe14c45ab95b5b70bf25d31cca6023daab08.svg
Normal file
@@ -0,0 +1,53 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="29.667ex" height="4.5ex" style="vertical-align: -1.667ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1213.3 12793.8 1932.7" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D443" d="M754 532c0 -112 -139 -216 -281 -216h-170l-62 -250c-1 -6 -3 -11 -3 -17c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -13 -20 -20 -20c-21 0 -43 2 -65 2l-64 1l-127 -3c-3 0 -15 0 -15 12c0 19 11 19 28 19c79 0 81 8 91 47l134 537c3 12 4 15 4 19 c0 11 -6 14 -22 16c-12 1 -30 2 -43 2c-20 0 -29 0 -29 12c0 19 11 19 30 19h324c131 0 197 -74 197 -151zM661 556c0 69 -53 96 -136 96h-96c-43 0 -45 -3 -54 -38l-68 -272h141c44 0 104 8 154 53c39 36 59 122 59 161Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D465" d="M527 376c0 -40 -32 -58 -54 -58c-27 0 -38 19 -38 35c0 24 20 49 48 54c-21 13 -45 13 -50 13c-70 0 -93 -92 -99 -118l-34 -137c-11 -44 -17 -66 -17 -88c0 -34 16 -66 55 -66c32 0 100 24 133 131c2 7 4 11 13 11c3 0 12 0 12 -10c0 -25 -57 -154 -160 -154 c-60 0 -96 39 -108 76c-3 -6 -39 -76 -105 -76c-44 0 -94 20 -94 66c0 32 25 58 55 58c15 0 37 -8 37 -35c0 -28 -22 -49 -47 -54c21 -13 44 -13 50 -13c44 0 79 42 95 104c37 140 54 207 54 238c0 58 -35 67 -54 67c-34 0 -100 -25 -134 -131c-2 -9 -5 -11 -13 -11 c0 0 -12 0 -12 10c0 25 57 154 161 154c29 0 83 -10 108 -76c12 23 47 76 105 76c34 0 93 -14 93 -66Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D450" d="M430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3C6" d="M590 304c40 -158 -75 -315 -241 -315c-17 0 -25 1 -34 2c9 -142 12 -175 11 -183c-4 -23 -26 -26 -31 -26c-10 0 -30 6 -36 28c-1 5 0 7 0 20l12 168c-114 25 -198 98 -221 192c-24 96 16 241 44 241c10 0 14 -6 15 -10c0 0 1 -4 -5 -13c-43 -69 -38 -179 -31 -207 c18 -72 88 -128 201 -148c11 195 23 389 168 389c75 0 129 -60 148 -138zM568 282c-12 48 -53 102 -122 102c-89 0 -143 -96 -142 -224l7 -108c1 -3 2 -4 14 -4c8 -1 10 -1 18 -1c154 0 253 122 225 235Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2C" d="M203 1c0 -117 -80 -194 -91 -194c-5 0 -10 4 -10 11c0 3 0 5 11 16c33 33 68 93 68 167c0 14 -2 15 -2 15s-2 -1 -5 -3c-10 -9 -23 -13 -35 -13c-33 0 -53 26 -53 53c0 28 20 53 53 53c39 0 64 -39 64 -105Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D466" d="M490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="914" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1432" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="2493" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="2931" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="3421" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="3895" y="0"></use>
|
||||
<g transform="translate(4289,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="766" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="60" y="747"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="130" y="-696"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="5295" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="6021" y="0"></use>
|
||||
<g transform="translate(7135,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="914" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="8510" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="9570" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="10044" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="10394" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="10999" y="0"></use>
|
||||
<g transform="translate(11393,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="766" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="60" y="747"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="130" y="-696"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="12399" y="0"></use>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.0 KiB |
151
images/latex/7d160b85a16406c718ea341c4e37079323af6c8b.svg
Normal file
@@ -0,0 +1,151 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="39.667ex" height="10.333ex" style="vertical-align: -4.667ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -2463.8 17067.4 4427.6" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-7B" d="M425 -238c0 -7 -5 -12 -12 -12c-105 0 -196 52 -196 125v250c0 58 -55 113 -130 113c-7 0 -12 5 -12 12s5 12 12 12c75 0 130 55 130 113v250c0 73 91 125 196 125c7 0 12 -5 12 -12s-5 -12 -12 -12c-75 0 -130 -49 -130 -101v-250c0 -58 -48 -104 -115 -125 c67 -21 115 -67 115 -125v-250c0 -52 55 -101 130 -101c7 0 12 -5 12 -12Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D436" d="M760 695l-63 -255c-5 -18 -5 -20 -18 -20c-4 0 -15 0 -15 10s3 11 3 51c0 116 -59 193 -161 193c-89 0 -183 -50 -244 -121c-100 -117 -121 -279 -121 -336c0 -156 106 -208 196 -208c52 0 115 17 184 73c69 58 92 129 101 158c2 8 7 10 13 10c0 0 12 0 12 -10 c0 -3 -17 -94 -110 -176c-53 -46 -129 -86 -216 -86c-153 0 -271 109 -271 274c0 232 225 453 448 453c111 0 157 -75 166 -89l70 77c11 11 12 12 15 12c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D465" d="M527 376c0 -40 -32 -58 -54 -58c-27 0 -38 19 -38 35c0 24 20 49 48 54c-21 13 -45 13 -50 13c-70 0 -93 -92 -99 -118l-34 -137c-11 -44 -17 -66 -17 -88c0 -34 16 -66 55 -66c32 0 100 24 133 131c2 7 4 11 13 11c3 0 12 0 12 -10c0 -25 -57 -154 -160 -154 c-60 0 -96 39 -108 76c-3 -6 -39 -76 -105 -76c-44 0 -94 20 -94 66c0 32 25 58 55 58c15 0 37 -8 37 -35c0 -28 -22 -49 -47 -54c21 -13 44 -13 50 -13c44 0 79 42 95 104c37 140 54 207 54 238c0 58 -35 67 -54 67c-34 0 -100 -25 -134 -131c-2 -9 -5 -11 -13 -11 c0 0 -12 0 -12 10c0 25 57 154 161 154c29 0 83 -10 108 -76c12 23 47 76 105 76c34 0 93 -14 93 -66Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D466" d="M490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D451" d="M516 683l-144 -578c-4 -17 -6 -24 -6 -48c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293 c45 0 74 -27 92 -64l60 237l3 20c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 13 6 18 14 19c17 2 112 11 127 11c13 0 13 -11 13 -11zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37 l50 196c1 5 3 11 3 17Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3C6" d="M590 304c40 -158 -75 -315 -241 -315c-17 0 -25 1 -34 2c9 -142 12 -175 11 -183c-4 -23 -26 -26 -31 -26c-10 0 -30 6 -36 28c-1 5 0 7 0 20l12 168c-114 25 -198 98 -221 192c-24 96 16 241 44 241c10 0 14 -6 15 -10c0 0 1 -4 -5 -13c-43 -69 -38 -179 -31 -207 c18 -72 88 -128 201 -148c11 195 23 389 168 389c75 0 129 -60 148 -138zM568 282c-12 48 -53 102 -122 102c-89 0 -143 -96 -142 -224l7 -108c1 -3 2 -4 14 -4c8 -1 10 -1 18 -1c154 0 253 122 225 235Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE4-28" d="M539 -632c0 -8 -6 -14 -14 -14c-3 0 -6 1 -9 2c-175 132 -337 475 -337 776v236c0 301 162 644 337 776c3 1 6 2 9 2c8 0 14 -6 14 -14c0 -5 -2 -9 -5 -12c-167 -125 -283 -466 -283 -752v-236c0 -286 116 -627 283 -752c3 -3 5 -7 5 -12Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE4-29" d="M418 132c0 -301 -162 -644 -337 -776c-3 -1 -6 -2 -9 -2c-8 0 -14 6 -14 14c0 5 2 9 5 12c167 125 283 466 283 752v236c0 286 -116 627 -283 752c-3 3 -5 7 -5 12c0 8 6 14 14 14c3 0 6 -1 9 -2c175 -132 337 -475 337 -776v-236Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D463" d="M468 372c0 -52 -57 -383 -225 -383c-46 0 -134 16 -134 124c0 43 13 89 57 205c7 18 17 45 17 70c0 32 -17 32 -25 32c-29 0 -72 -23 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -12 -50 c-31 -83 -58 -156 -58 -212c0 -52 23 -87 74 -87c117 0 178 229 178 271c0 36 -13 62 -34 82c-11 11 -16 17 -16 30c0 22 24 48 49 48c18 0 44 -16 44 -70Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-20D7" d="M-56 616c0 -7 -5 -12 -11 -14c-36 -12 -65 -38 -81 -72c-2 -5 -7 -9 -13 -9c-9 0 -15 7 -15 15c0 2 0 4 1 6c10 23 26 43 45 59h-327c-8 0 -15 7 -15 15s7 15 15 15h327c-19 16 -35 36 -45 59c-1 2 -1 4 -1 6c0 8 6 15 15 15c6 0 11 -4 13 -9c16 -34 45 -60 81 -72 c6 -2 11 -7 11 -14Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE2-221A" d="M1020 1130c0 0 0 -5 -5 -20l-549 -1736c-8 -24 -9 -24 -42 -24l-230 802l-68 -80l-16 15l139 163l215 -750l513 1624c4 13 8 26 23 26c12 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-34" d="M471 165h-100v-87c0 -36 2 -47 76 -47h21v-31c-41 3 -94 3 -136 3s-94 0 -135 -3v31h21c74 0 76 11 76 47v87h-266v31l307 469c8 12 11 12 20 12c16 0 16 -6 16 -26v-455h100v-31zM300 196v373l-244 -373h244Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-33" d="M457 171c0 -102 -91 -193 -213 -193c-109 0 -202 66 -202 157c0 44 32 58 56 58c29 0 56 -20 56 -56c0 -38 -31 -60 -66 -55c35 -59 110 -76 153 -76c44 0 113 29 113 165c0 98 -37 166 -119 166h-44c-17 0 -24 0 -24 11c0 10 7 11 15 12c7 0 31 2 39 3c25 1 59 4 89 52 c26 44 28 102 28 114c0 90 -55 112 -96 112c-36 0 -102 -13 -133 -62c15 0 62 0 62 -50c0 -29 -20 -51 -51 -51c-29 0 -51 19 -51 52c0 76 76 136 177 136c96 0 184 -56 184 -138c0 -79 -58 -149 -140 -176c104 -21 167 -99 167 -181Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D461" d="M330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE3-28" d="M461 -459c0 -7 -6 -13 -13 -13c-3 0 -6 1 -8 3c-147 111 -284 390 -284 633v172c0 243 137 522 284 633c2 2 5 3 8 3c7 0 13 -6 13 -13c0 -4 -2 -8 -5 -10c-140 -105 -236 -383 -236 -613v-172c0 -230 96 -508 236 -613c3 -2 5 -6 5 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE3-29" d="M367 164c0 -243 -137 -522 -284 -633c-3 -2 -5 -3 -8 -3c-7 0 -13 6 -13 13c0 4 2 8 5 10c140 105 236 383 236 613v172c0 230 -96 508 -236 613c-3 2 -5 6 -5 10c0 7 6 13 13 13c3 0 5 -1 8 -3c147 -111 284 -390 284 -633v-172Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A7" d="M755 724c0 -11 -7 -21 -17 -24c-138 -51 -236 -202 -236 -325v-375h-102v375c0 151 151 312 320 373c3 1 6 2 9 2c14 0 26 -12 26 -26Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A9" d="M755 26c0 -14 -12 -26 -26 -26c-3 0 -6 1 -9 2c-169 61 -320 222 -320 373v375h102v-375c0 -123 98 -274 236 -325c10 -3 17 -13 17 -24Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A8" d="M502 1500v-375c0 -147 -120 -300 -265 -375c145 -75 265 -228 265 -375v-375h-102v375c0 137 -97 300 -236 351c-10 3 -17 13 -17 24s7 21 17 24c139 51 236 214 236 351v375h102Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE7-E003" d="M502 0h-102v748h102v-748Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<g transform="translate(0,2449)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A7" x="0" y="-760"></use>
|
||||
<g transform="translate(0,-1479.842930009555) scale(1,1.002431306081207)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE7-E003"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A8" x="0" y="-2950"></use>
|
||||
<g transform="translate(0,-3669.710173079922) scale(1,1.002431306081207)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE7-E003"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A9" x="0" y="-4390"></use>
|
||||
</g>
|
||||
<g transform="translate(1074,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,1649)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<g transform="translate(720,-150)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="505" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1862" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="2923" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-725)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<g transform="translate(720,-150)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="505" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1804" y="0"></use>
|
||||
<g transform="translate(2587,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="2712" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D451" x="1655" y="649"></use>
|
||||
<g transform="translate(60,-762)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D460" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D456" x="474" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="824" y="0"></use>
|
||||
<g transform="translate(1010,0)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNSIZE4-28"></use>
|
||||
<g transform="translate(425,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="490" height="60" x="0" y="146"></rect>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-3C6" x="104" y="874"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-32" x="175" y="-707"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNSIZE4-29" x="1635" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="6096" y="0"></use>
|
||||
<g transform="translate(6879,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="2839" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,877)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNSIZE2-221A" x="0" y="47"></use>
|
||||
<rect stroke="none" width="2009" height="42" x="710" y="811"></rect>
|
||||
<g transform="translate(710,0)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-20D7" x="475" y="93"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-32" x="603" y="616"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="603" y="-305"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2B" x="1058" y="0"></use>
|
||||
<g transform="translate(1302,0)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-20D7" x="475" y="93"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-32" x="603" y="616"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="603" y="-305"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(123,-762)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D460" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D456" x="474" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="824" y="0"></use>
|
||||
<g transform="translate(1010,0)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNSIZE4-28"></use>
|
||||
<g transform="translate(425,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="490" height="60" x="0" y="146"></rect>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-3C6" x="104" y="874"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-32" x="175" y="-707"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNSIZE4-29" x="1635" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="10514" y="0"></use>
|
||||
<g transform="translate(11297,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="477" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="84" y="638"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="84" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="12292" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="12658" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="13192" y="0"></use>
|
||||
<g transform="translate(13964,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-28"></use>
|
||||
<g transform="translate(528,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="576" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C6" x="84" y="856"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="155" y="-609"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-29" x="1344" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 17 KiB |
76
images/latex/7e2ad0e0c3f7657ad9065dae2a19843ea774fdf7.svg
Normal file
@@ -0,0 +1,76 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="46.167ex" height="5.833ex" style="vertical-align: -2.333ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1521.9 19877.3 2543.9" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D436" d="M760 695l-63 -255c-5 -18 -5 -20 -18 -20c-4 0 -15 0 -15 10s3 11 3 51c0 116 -59 193 -161 193c-89 0 -183 -50 -244 -121c-100 -117 -121 -279 -121 -336c0 -156 106 -208 196 -208c52 0 115 17 184 73c69 58 92 129 101 158c2 8 7 10 13 10c0 0 12 0 12 -10 c0 -3 -17 -94 -110 -176c-53 -46 -129 -86 -216 -86c-153 0 -271 109 -271 274c0 232 225 453 448 453c111 0 157 -75 166 -89l70 77c11 11 12 12 15 12c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D446" d="M645 695l-54 -219c-4 -17 -5 -20 -15 -20c-12 0 -12 10 -12 10c0 6 4 24 4 56c0 112 -61 155 -144 155c-95 0 -175 -85 -175 -166c0 -53 34 -82 61 -91l67 -18c89 -23 104 -27 127 -50c15 -14 49 -48 49 -117c0 -124 -118 -257 -254 -257c-58 0 -126 14 -169 72l-49 -57 c-12 -14 -13 -15 -18 -15c-6 0 -11 4 -11 10c0 3 56 231 60 235c3 3 5 4 10 4s12 -1 12 -11c0 0 -1 -3 -2 -7c-1 -6 -6 -30 -6 -54c0 -124 111 -146 175 -146c98 0 180 94 180 184c0 82 -55 97 -92 106l-107 28c-51 15 -104 61 -104 142c0 121 120 236 247 236 c65 0 117 -25 143 -72l48 57c12 14 13 15 18 15c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-22C5" d="M192 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-30" d="M460 320c0 -79 -5 -157 -37 -226c-44 -95 -120 -116 -174 -116c-49 0 -122 20 -165 101c-41 76 -45 166 -45 241c0 80 5 158 37 227c41 93 114 119 174 119c42 0 124 -16 170 -112c35 -74 40 -154 40 -234zM377 332c0 63 0 139 -10 195c-19 99 -85 117 -118 117 c-25 0 -100 -9 -119 -128c-8 -54 -8 -120 -8 -184c0 -59 0 -151 11 -211c18 -96 77 -121 116 -121c45 0 102 30 117 125c11 64 11 132 11 207Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE6-28" d="M682 -928c0 -10 -8 -18 -18 -18c-4 0 -8 2 -11 4c-222 167 -427 613 -427 1006v372c0 393 205 839 427 1006c3 2 7 4 11 4c10 0 18 -8 18 -18c0 -6 -3 -11 -7 -14c-213 -160 -361 -603 -361 -978v-372c0 -375 148 -818 361 -978c4 -3 7 -8 7 -14Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE6-29" d="M510 64c0 -393 -205 -839 -427 -1006c-3 -2 -7 -4 -11 -4c-10 0 -18 8 -18 18c0 6 3 11 7 14c213 160 361 603 361 978v372c0 375 -148 818 -361 978c-4 3 -7 8 -7 14c0 10 8 18 18 18c4 0 8 -2 11 -4c222 -167 427 -613 427 -1006v-372Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2C" d="M203 1c0 -117 -80 -194 -91 -194c-5 0 -10 4 -10 11c0 3 0 5 11 16c33 33 68 93 68 167c0 14 -2 15 -2 15s-2 -1 -5 -3c-10 -9 -23 -13 -35 -13c-33 0 -53 26 -53 53c0 28 20 53 53 53c39 0 64 -39 64 -105Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D438" d="M763 653l-20 -173c-2 -19 -3 -25 -14 -25c-9 0 -12 7 -12 12s1 12 1 18c4 27 4 29 4 53c0 82 -30 111 -152 111h-141c-44 0 -45 -4 -54 -39l-60 -241h94c92 0 110 23 131 99c3 12 5 18 14 18c7 0 12 -5 12 -11l-57 -234c-4 -15 -7 -20 -15 -20c-9 0 -13 6 -13 11 c0 3 1 6 3 11c7 30 7 42 7 49c0 25 0 46 -85 46h-99l-68 -273c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h146c171 0 208 67 273 215c2 6 4 12 13 12c12 0 12 -11 12 -11s-3 -9 -5 -14l-92 -216c-7 -16 -8 -17 -31 -17h-519c-19 0 -28 0 -28 12 c0 19 11 19 28 19c79 0 81 8 91 47l132 529c5 18 5 20 5 24c0 18 -28 18 -65 18c-19 0 -28 0 -28 11c0 20 10 20 30 20h505c25 0 30 0 27 -27Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44F" d="M415 282c0 -144 -123 -293 -241 -293c-74 0 -127 62 -127 157c0 35 4 51 16 101l82 326c5 21 14 55 14 62c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-74 -301c30 31 71 60 117 60c80 0 133 -69 133 -160zM343 326 c0 64 -27 94 -63 94c-26 0 -71 -15 -120 -80c-9 -11 -9 -13 -15 -35l-22 -92c-16 -63 -16 -82 -16 -101c0 -74 33 -101 67 -101c39 0 85 36 118 103c18 38 51 153 51 212Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3C6" d="M590 304c40 -158 -75 -315 -241 -315c-17 0 -25 1 -34 2c9 -142 12 -175 11 -183c-4 -23 -26 -26 -31 -26c-10 0 -30 6 -36 28c-1 5 0 7 0 20l12 168c-114 25 -198 98 -221 192c-24 96 16 241 44 241c10 0 14 -6 15 -10c0 0 1 -4 -5 -13c-43 -69 -38 -179 -31 -207 c18 -72 88 -128 201 -148c11 195 23 389 168 389c75 0 129 -60 148 -138zM568 282c-12 48 -53 102 -122 102c-89 0 -143 -96 -142 -224l7 -108c1 -3 2 -4 14 -4c8 -1 10 -1 18 -1c154 0 253 122 225 235Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D450" d="M430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1042" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D446" x="2103" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="2975" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="3981" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="4737" y="0"></use>
|
||||
<g transform="translate(5242,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE6-28"></use>
|
||||
<g transform="translate(908,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="0" y="-750"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE6-29" x="1569" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="8051" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="9165" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="10208" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D438" x="11268" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="12259" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="13264" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="13920" y="0"></use>
|
||||
<g transform="translate(14425,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE6-28"></use>
|
||||
<g transform="translate(908,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,708)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="783" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="1257" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="1607" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="2212" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="2606" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="3252" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(405,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="438" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="928" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1402" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="1796" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2442" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE6-29" x="4710" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
163
images/latex/9e3bc5e868dfbb5ddd67e6686d5c9e476addb3a9.svg
Normal file
@@ -0,0 +1,163 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="64.5ex" height="11.5ex" style="vertical-align: -5.167ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 0ex; margin-top: 1px;" viewBox="0 -2733.8 27745.2 4967.6" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-7B" d="M425 -238c0 -7 -5 -12 -12 -12c-105 0 -196 52 -196 125v250c0 58 -55 113 -130 113c-7 0 -12 5 -12 12s5 12 12 12c75 0 130 55 130 113v250c0 73 91 125 196 125c7 0 12 -5 12 -12s-5 -12 -12 -12c-75 0 -130 -49 -130 -101v-250c0 -58 -48 -104 -115 -125 c67 -21 115 -67 115 -125v-250c0 -52 55 -101 130 -101c7 0 12 -5 12 -12Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D447" d="M704 666c0 -3 -1 -13 -2 -17l-27 -174c-2 -15 -4 -23 -15 -23c-9 0 -12 7 -12 13c0 3 2 15 3 19c4 26 8 65 8 80c0 78 -45 82 -146 82c-21 0 -54 0 -63 -2c-12 -3 -16 -9 -23 -37l-133 -531c-4 -15 -4 -21 -4 -21c0 -16 8 -19 37 -22c26 -2 39 -2 64 -2c26 0 34 0 34 -11 c0 -20 -12 -20 -22 -20c-28 0 -58 2 -87 2l-83 1l-85 -1c-27 0 -55 -2 -82 -2c-6 0 -17 0 -17 12c0 19 6 19 42 19c107 0 110 11 119 48l134 534c1 3 4 15 4 21c0 8 0 12 -28 12h-39c-148 0 -174 -18 -228 -173c-6 -16 -7 -21 -17 -21c-7 0 -12 5 -12 11c0 0 5 16 6 18 l60 176c7 19 8 20 32 20h555c17 0 27 0 27 -11Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D465" d="M527 376c0 -40 -32 -58 -54 -58c-27 0 -38 19 -38 35c0 24 20 49 48 54c-21 13 -45 13 -50 13c-70 0 -93 -92 -99 -118l-34 -137c-11 -44 -17 -66 -17 -88c0 -34 16 -66 55 -66c32 0 100 24 133 131c2 7 4 11 13 11c3 0 12 0 12 -10c0 -25 -57 -154 -160 -154 c-60 0 -96 39 -108 76c-3 -6 -39 -76 -105 -76c-44 0 -94 20 -94 66c0 32 25 58 55 58c15 0 37 -8 37 -35c0 -28 -22 -49 -47 -54c21 -13 44 -13 50 -13c44 0 79 42 95 104c37 140 54 207 54 238c0 58 -35 67 -54 67c-34 0 -100 -25 -134 -131c-2 -9 -5 -11 -13 -11 c0 0 -12 0 -12 10c0 25 57 154 161 154c29 0 83 -10 108 -76c12 23 47 76 105 76c34 0 93 -14 93 -66Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-34" d="M471 165h-100v-87c0 -36 2 -47 76 -47h21v-31c-41 3 -94 3 -136 3s-94 0 -135 -3v31h21c74 0 76 11 76 47v87h-266v31l307 469c8 12 11 12 20 12c16 0 16 -6 16 -26v-455h100v-31zM300 196v373l-244 -373h244Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-33" d="M457 171c0 -102 -91 -193 -213 -193c-109 0 -202 66 -202 157c0 44 32 58 56 58c29 0 56 -20 56 -56c0 -38 -31 -60 -66 -55c35 -59 110 -76 153 -76c44 0 113 29 113 165c0 98 -37 166 -119 166h-44c-17 0 -24 0 -24 11c0 10 7 11 15 12c7 0 31 2 39 3c25 1 59 4 89 52 c26 44 28 102 28 114c0 90 -55 112 -96 112c-36 0 -102 -13 -133 -62c15 0 62 0 62 -50c0 -29 -20 -51 -51 -51c-29 0 -51 19 -51 52c0 76 76 136 177 136c96 0 184 -56 184 -138c0 -79 -58 -149 -140 -176c104 -21 167 -99 167 -181Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D450" d="M430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3C6" d="M590 304c40 -158 -75 -315 -241 -315c-17 0 -25 1 -34 2c9 -142 12 -175 11 -183c-4 -23 -26 -26 -31 -26c-10 0 -30 6 -36 28c-1 5 0 7 0 20l12 168c-114 25 -198 98 -221 192c-24 96 16 241 44 241c10 0 14 -6 15 -10c0 0 1 -4 -5 -13c-43 -69 -38 -179 -31 -207 c18 -72 88 -128 201 -148c11 195 23 389 168 389c75 0 129 -60 148 -138zM568 282c-12 48 -53 102 -122 102c-89 0 -143 -96 -142 -224l7 -108c1 -3 2 -4 14 -4c8 -1 10 -1 18 -1c154 0 253 122 225 235Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D466" d="M490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE6-28" d="M682 -928c0 -10 -8 -18 -18 -18c-4 0 -8 2 -11 4c-222 167 -427 613 -427 1006v372c0 393 205 839 427 1006c3 2 7 4 11 4c10 0 18 -8 18 -18c0 -6 -3 -11 -7 -14c-213 -160 -361 -603 -361 -978v-372c0 -375 148 -818 361 -978c4 -3 7 -8 7 -14Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE6-29" d="M510 64c0 -393 -205 -839 -427 -1006c-3 -2 -7 -4 -11 -4c-10 0 -18 8 -18 18c0 6 3 11 7 14c213 160 361 603 361 978v372c0 375 -148 818 -361 978c-4 3 -7 8 -7 14c0 10 8 18 18 18c4 0 8 -2 11 -4c222 -167 427 -613 427 -1006v-372Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D461" d="M330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE4-28" d="M539 -632c0 -8 -6 -14 -14 -14c-3 0 -6 1 -9 2c-175 132 -337 475 -337 776v236c0 301 162 644 337 776c3 1 6 2 9 2c8 0 14 -6 14 -14c0 -5 -2 -9 -5 -12c-167 -125 -283 -466 -283 -752v-236c0 -286 116 -627 283 -752c3 -3 5 -7 5 -12Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE4-29" d="M418 132c0 -301 -162 -644 -337 -776c-3 -1 -6 -2 -9 -2c-8 0 -14 6 -14 14c0 5 2 9 5 12c167 125 283 466 283 752v236c0 286 -116 627 -283 752c-3 3 -5 7 -5 12c0 8 6 14 14 14c3 0 6 -1 9 -2c175 -132 337 -475 337 -776v-236Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A7" d="M755 724c0 -11 -7 -21 -17 -24c-138 -51 -236 -202 -236 -325v-375h-102v375c0 151 151 312 320 373c3 1 6 2 9 2c14 0 26 -12 26 -26Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A9" d="M755 26c0 -14 -12 -26 -26 -26c-3 0 -6 1 -9 2c-169 61 -320 222 -320 373v375h102v-375c0 -123 98 -274 236 -325c10 -3 17 -13 17 -24Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A8" d="M502 1500v-375c0 -147 -120 -300 -265 -375c145 -75 265 -228 265 -375v-375h-102v375c0 137 -97 300 -236 351c-10 3 -17 13 -17 24s7 21 17 24c139 51 236 214 236 351v375h102Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE7-E003" d="M502 0h-102v748h102v-748Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<g transform="translate(167,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,2719)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A7" x="0" y="-760"></use>
|
||||
<g transform="translate(0,-1746.3105332031248) scale(1,1.3539716796874999)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE7-E003"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A8" x="0" y="-3220"></use>
|
||||
<g transform="translate(0,-4206.160783203125) scale(1,1.3539716796874999)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE7-E003"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A9" x="0" y="-4930"></use>
|
||||
</g>
|
||||
<g transform="translate(1074,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,1367)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D447" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="832" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(57,-1185)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D447" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="832" y="-213"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(1086,0)">
|
||||
<g transform="translate(0,1367)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
|
||||
<g transform="translate(1060,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="625" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="60" y="676"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="60" y="-707"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="2203" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="2597" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="3324" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="4330" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="4768" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="5258" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="5732" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="6126" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="6772" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="7166" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-1185)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
|
||||
<g transform="translate(1060,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="625" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="60" y="676"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="60" y="-707"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2203,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE6-28"></use>
|
||||
<g transform="translate(741,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="5193" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,777)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="727" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="1732" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="2237" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="2675" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="3165" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="3639" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="4033" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="4679" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(1165,-778)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="474" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="824" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1429" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="1823" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2469" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="6396" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="7401" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="7875" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="8225" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="8830" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="9224" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="9870" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE6-29" x="10264" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="13487" y="0"></use>
|
||||
<g transform="translate(14270,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="625" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="60" y="676"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="60" y="-707"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(15413,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE4-28"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="602" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1107" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="1473" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="2007" y="0"></use>
|
||||
<g transform="translate(2778,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE4-28"></use>
|
||||
<g transform="translate(602,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="766" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="60" y="747"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="130" y="-696"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE4-29" x="1608" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="5210" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="6216" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="6690" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="7040" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="7645" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="8039" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="8685" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE4-29" x="9079" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 16 KiB |
78
images/latex/a0009bec4d1d506181ac32d1e4bcc7279b37ec4d.svg
Normal file
@@ -0,0 +1,78 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="63.667ex" height="2.5ex" style="vertical-align: -0.667ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -792.9 27397.6 1085.9" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D446" d="M645 695l-54 -219c-4 -17 -5 -20 -15 -20c-12 0 -12 10 -12 10c0 6 4 24 4 56c0 112 -61 155 -144 155c-95 0 -175 -85 -175 -166c0 -53 34 -82 61 -91l67 -18c89 -23 104 -27 127 -50c15 -14 49 -48 49 -117c0 -124 -118 -257 -254 -257c-58 0 -126 14 -169 72l-49 -57 c-12 -14 -13 -15 -18 -15c-6 0 -11 4 -11 10c0 3 56 231 60 235c3 3 5 4 10 4s12 -1 12 -11c0 0 -1 -3 -2 -7c-1 -6 -6 -30 -6 -54c0 -124 111 -146 175 -146c98 0 180 94 180 184c0 82 -55 97 -92 106l-107 28c-51 15 -104 61 -104 142c0 121 120 236 247 236 c65 0 117 -25 143 -72l48 57c12 14 13 15 18 15c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2C" d="M203 1c0 -117 -80 -194 -91 -194c-5 0 -10 4 -10 11c0 3 0 5 11 16c33 33 68 93 68 167c0 14 -2 15 -2 15s-2 -1 -5 -3c-10 -9 -23 -13 -35 -13c-33 0 -53 26 -53 53c0 28 20 53 53 53c39 0 64 -39 64 -105Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-30" d="M460 320c0 -79 -5 -157 -37 -226c-44 -95 -120 -116 -174 -116c-49 0 -122 20 -165 101c-41 76 -45 166 -45 241c0 80 5 158 37 227c41 93 114 119 174 119c42 0 124 -16 170 -112c35 -74 40 -154 40 -234zM377 332c0 63 0 139 -10 195c-19 99 -85 117 -118 117 c-25 0 -100 -9 -119 -128c-8 -54 -8 -120 -8 -184c0 -59 0 -151 11 -211c18 -96 77 -121 116 -121c45 0 102 30 117 125c11 64 11 132 11 207Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D436" d="M760 695l-63 -255c-5 -18 -5 -20 -18 -20c-4 0 -15 0 -15 10s3 11 3 51c0 116 -59 193 -161 193c-89 0 -183 -50 -244 -121c-100 -117 -121 -279 -121 -336c0 -156 106 -208 196 -208c52 0 115 17 184 73c69 58 92 129 101 158c2 8 7 10 13 10c0 0 12 0 12 -10 c0 -3 -17 -94 -110 -176c-53 -46 -129 -86 -216 -86c-153 0 -271 109 -271 274c0 232 225 453 448 453c111 0 157 -75 166 -89l70 77c11 11 12 12 15 12c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2E" d="M192 53c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-35" d="M449 201c0 -127 -102 -223 -218 -223c-112 0 -181 97 -181 183c0 46 35 53 49 53c33 0 50 -25 50 -49s-17 -49 -50 -49c-11 0 -14 1 -17 2c17 -59 74 -112 147 -112c46 0 83 26 107 65c24 42 24 102 24 137c0 50 -2 89 -18 126c-8 18 -33 64 -85 64 c-81 0 -118 -54 -129 -70c-4 -6 -6 -9 -13 -9c-14 0 -14 8 -14 26v296c0 16 0 24 10 24c0 0 4 0 12 -3c47 -21 93 -28 133 -28c67 0 116 20 136 29c5 3 8 3 8 3c7 0 10 -5 10 -11c0 -13 -70 -104 -193 -104c-32 0 -65 7 -85 13v-195c36 35 79 51 127 51 c108 0 190 -100 190 -219Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-38" d="M457 168c0 -107 -95 -190 -208 -190c-105 0 -207 67 -207 173c0 99 86 155 144 184c-25 17 -62 42 -73 54c-42 47 -44 92 -44 110c0 93 81 167 181 167c91 0 180 -57 180 -149c0 -66 -49 -118 -121 -155c64 -40 80 -50 99 -71c38 -42 49 -87 49 -123zM386 517 c0 72 -64 124 -137 124c-71 0 -136 -42 -136 -103c0 -17 4 -51 50 -81l124 -80c60 35 99 83 99 140zM407 132c0 61 -47 91 -75 110l-123 78c-85 -47 -117 -111 -117 -169c0 -83 72 -145 158 -145c82 0 157 52 157 126Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D438" d="M763 653l-20 -173c-2 -19 -3 -25 -14 -25c-9 0 -12 7 -12 12s1 12 1 18c4 27 4 29 4 53c0 82 -30 111 -152 111h-141c-44 0 -45 -4 -54 -39l-60 -241h94c92 0 110 23 131 99c3 12 5 18 14 18c7 0 12 -5 12 -11l-57 -234c-4 -15 -7 -20 -15 -20c-9 0 -13 6 -13 11 c0 3 1 6 3 11c7 30 7 42 7 49c0 25 0 46 -85 46h-99l-68 -273c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h146c171 0 208 67 273 215c2 6 4 12 13 12c12 0 12 -11 12 -11s-3 -9 -5 -14l-92 -216c-7 -16 -8 -17 -31 -17h-519c-19 0 -28 0 -28 12 c0 19 11 19 28 19c79 0 81 8 91 47l132 529c5 18 5 20 5 24c0 18 -28 18 -65 18c-19 0 -28 0 -28 11c0 20 10 20 30 20h505c25 0 30 0 27 -27Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<g transform="translate(167,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,-21)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D446" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="927" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1988" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="2382" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="2887" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="3337" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="3842" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="4568" y="0"></use>
|
||||
<g transform="translate(5349,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="1018" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="6804" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="7865" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="8259" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="8764" y="0"></use>
|
||||
<g transform="translate(9214,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="505" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-35" x="788" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-35" x="1293" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="1798" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="2303" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-38" x="2808" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="12527" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="13253" y="0"></use>
|
||||
<g transform="translate(14034,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="1018" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="15489" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="16550" y="0"></use>
|
||||
<g transform="translate(16944,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="505" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-35" x="788" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-35" x="1293" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="1798" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="2303" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-38" x="2808" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="20257" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="20707" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="21212" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="21938" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D438" x="22719" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="23765" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="24826" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="25220" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="25725" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="26175" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="26680" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.4 KiB |
43
images/latex/a7c3eb36101731d97c32f2de3cefb250dac469de.svg
Normal file
@@ -0,0 +1,43 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="15.5ex" height="6ex" style="vertical-align: -2.5ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1549.3 6701 2598.7" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44F" d="M415 282c0 -144 -123 -293 -241 -293c-74 0 -127 62 -127 157c0 35 4 51 16 101l82 326c5 21 14 55 14 62c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-74 -301c30 31 71 60 117 60c80 0 133 -69 133 -160zM343 326 c0 64 -27 94 -63 94c-26 0 -71 -15 -120 -80c-9 -11 -9 -13 -15 -35l-22 -92c-16 -63 -16 -82 -16 -101c0 -74 33 -101 67 -101c39 0 85 36 118 103c18 38 51 153 51 212Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D450" d="M430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3C6" d="M590 304c40 -158 -75 -315 -241 -315c-17 0 -25 1 -34 2c9 -142 12 -175 11 -183c-4 -23 -26 -26 -31 -26c-10 0 -30 6 -36 28c-1 5 0 7 0 20l12 168c-114 25 -198 98 -221 192c-24 96 16 241 44 241c10 0 14 -6 15 -10c0 0 1 -4 -5 -13c-43 -69 -38 -179 -31 -207 c18 -72 88 -128 201 -148c11 195 23 389 168 389c75 0 129 -60 148 -138zM568 282c-12 48 -53 102 -122 102c-89 0 -143 -96 -142 -224l7 -108c1 -3 2 -4 14 -4c8 -1 10 -1 18 -1c154 0 253 122 225 235Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="711" y="0"></use>
|
||||
<g transform="translate(1494,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="4688" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,777)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="438" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="928" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1402" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="1796" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2442" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="3058" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="4063" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(912,-778)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="474" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="824" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1429" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="1823" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2469" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.0 KiB |
69
images/latex/aeb0f03c7e7ab953b42809b929b916e9eac29dea.svg
Normal file
@@ -0,0 +1,69 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="33.5ex" height="5.667ex" style="vertical-align: -2.333ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1473.9 14402.7 2447.9" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D436" d="M760 695l-63 -255c-5 -18 -5 -20 -18 -20c-4 0 -15 0 -15 10s3 11 3 51c0 116 -59 193 -161 193c-89 0 -183 -50 -244 -121c-100 -117 -121 -279 -121 -336c0 -156 106 -208 196 -208c52 0 115 17 184 73c69 58 92 129 101 158c2 8 7 10 13 10c0 0 12 0 12 -10 c0 -3 -17 -94 -110 -176c-53 -46 -129 -86 -216 -86c-153 0 -271 109 -271 274c0 232 225 453 448 453c111 0 157 -75 166 -89l70 77c11 11 12 12 15 12c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-5B" d="M256 -230c0 -11 -9 -20 -20 -20h-122v1000h122c11 0 20 -9 20 -20s-9 -20 -20 -20h-82v-920h82c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D453" d="M552 636c0 -38 -29 -60 -55 -60c-19 0 -37 12 -37 35c0 15 10 50 54 54c-19 18 -45 18 -49 18c-21 0 -38 -15 -47 -34c-6 -12 -20 -83 -24 -104c-11 -58 -10 -56 -21 -114h83c17 0 27 0 27 -11c0 -20 -10 -20 -30 -20h-86l-60 -317c-1 -7 -24 -128 -56 -191 c-18 -38 -58 -97 -113 -97c-41 0 -85 24 -85 69c0 38 29 60 55 60c19 0 37 -12 37 -35c0 -15 -9 -51 -55 -54c19 -18 44 -18 48 -18c52 0 69 91 87 188l75 395h-66c-19 0 -28 0 -28 12c0 19 11 19 30 19h69c24 126 27 136 33 157c30 99 93 117 127 117c41 0 87 -23 87 -69Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-5D" d="M164 -250h-122c-11 0 -20 9 -20 20s9 20 20 20h82v920h-82c-11 0 -20 9 -20 20s9 20 20 20h122v-1000Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE6-5B" d="M509 -921c0 -16 -13 -29 -29 -29h-247v2400h247c16 0 29 -13 29 -29s-13 -29 -29 -29h-189v-2284h189c16 0 29 -13 29 -29Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE6-5D" d="M295 1450v-2400h-247c-16 0 -29 13 -29 29s13 29 29 29h189v2284h-189c-16 0 -29 13 -29 29s13 29 29 29h247Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2C" d="M203 1c0 -117 -80 -194 -91 -194c-5 0 -10 4 -10 11c0 3 0 5 11 16c33 33 68 93 68 167c0 14 -2 15 -2 15s-2 -1 -5 -3c-10 -9 -23 -13 -35 -13c-33 0 -53 26 -53 53c0 28 20 53 53 53c39 0 64 -39 64 -105Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D464" d="M691 372c0 -48 -32 -182 -66 -260c-26 -60 -70 -123 -145 -123c-30 0 -99 6 -125 70c-40 -70 -87 -70 -104 -70c-75 0 -142 35 -142 126c0 38 12 84 56 202c7 17 18 45 18 70c0 32 -16 33 -25 33c-35 0 -74 -31 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10 c0 9 37 154 132 154c49 0 82 -37 82 -82c0 -20 -6 -34 -17 -64c-47 -123 -52 -162 -52 -194c0 -17 0 -91 80 -91c39 0 69 31 92 84c-1 5 -1 7 -1 18c0 18 2 36 9 66c7 26 54 217 57 224c7 20 25 28 37 28c15 0 29 -9 29 -27c0 -6 -10 -43 -15 -65l-42 -168 c-4 -14 -11 -45 -11 -73c0 -57 27 -87 74 -87c49 0 84 35 110 88c26 51 55 149 55 183c0 48 -25 74 -36 85c-9 8 -15 14 -15 27c0 22 25 48 50 48c17 0 44 -15 44 -70Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D461" d="M330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-210E" d="M546 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 20 5 32 13 55c24 61 62 170 62 224c0 36 -11 70 -54 70s-74 -19 -96 -35c-34 -27 -65 -83 -68 -92c-1 -6 -9 -39 -11 -45c-5 -23 -11 -45 -17 -67l-22 -90l-19 -76c-5 -14 -21 -26 -37 -26c-9 0 -29 5 -29 28 c0 6 0 8 4 22l145 576l3 20c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-78 -318c37 46 85 77 148 77c75 0 115 -42 115 -107c0 -58 -45 -177 -61 -220c-9 -22 -18 -46 -18 -71c0 -23 7 -33 24 -33c55 0 87 71 102 124 c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-34" d="M471 165h-100v-87c0 -36 2 -47 76 -47h21v-31c-41 3 -94 3 -136 3s-94 0 -135 -3v31h21c74 0 76 11 76 47v87h-266v31l307 469c8 12 11 12 20 12c16 0 16 -6 16 -26v-455h100v-31zM300 196v373l-244 -373h244Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-33" d="M457 171c0 -102 -91 -193 -213 -193c-109 0 -202 66 -202 157c0 44 32 58 56 58c29 0 56 -20 56 -56c0 -38 -31 -60 -66 -55c35 -59 110 -76 153 -76c44 0 113 29 113 165c0 98 -37 166 -119 166h-44c-17 0 -24 0 -24 11c0 10 7 11 15 12c7 0 31 2 39 3c25 1 59 4 89 52 c26 44 28 102 28 114c0 90 -55 112 -96 112c-36 0 -102 -13 -133 -62c15 0 62 0 62 -50c0 -29 -20 -51 -51 -51c-29 0 -51 19 -51 52c0 76 76 136 177 136c96 0 184 -56 184 -138c0 -79 -58 -149 -140 -176c104 -21 167 -99 167 -181Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3C6" d="M590 304c40 -158 -75 -315 -241 -315c-17 0 -25 1 -34 2c9 -142 12 -175 11 -183c-4 -23 -26 -26 -31 -26c-10 0 -30 6 -36 28c-1 5 0 7 0 20l12 168c-114 25 -198 98 -221 192c-24 96 16 241 44 241c10 0 14 -6 15 -10c0 0 1 -4 -5 -13c-43 -69 -38 -179 -31 -207 c18 -72 88 -128 201 -148c11 195 23 389 168 389c75 0 129 -60 148 -138zM568 282c-12 48 -53 102 -122 102c-89 0 -143 -96 -142 -224l7 -108c1 -3 2 -4 14 -4c8 -1 10 -1 18 -1c154 0 253 122 225 235Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE4-28" d="M539 -632c0 -8 -6 -14 -14 -14c-3 0 -6 1 -9 2c-175 132 -337 475 -337 776v236c0 301 162 644 337 776c3 1 6 2 9 2c8 0 14 -6 14 -14c0 -5 -2 -9 -5 -12c-167 -125 -283 -466 -283 -752v-236c0 -286 116 -627 283 -752c3 -3 5 -7 5 -12Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE4-29" d="M418 132c0 -301 -162 -644 -337 -776c-3 -1 -6 -2 -9 -2c-8 0 -14 6 -14 14c0 5 2 9 5 12c167 125 283 466 283 752v236c0 286 -116 627 -283 752c-3 3 -5 7 -5 12c0 8 6 14 14 14c3 0 6 -1 9 -2c175 -132 337 -475 337 -776v-236Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="1018" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1454" y="0"></use>
|
||||
<g transform="translate(2515,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE6-5B"></use>
|
||||
<g transform="translate(700,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="26" y="657"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D453" x="0" y="-743"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE6-5D" x="1413" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="4628" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D464" x="5410" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="6131" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="6481" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-210E" x="6847" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D453" x="7760" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="8595" y="0"></use>
|
||||
<g transform="translate(9378,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="625" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="60" y="676"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="60" y="-696"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="10521" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="10887" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="11421" y="0"></use>
|
||||
<g transform="translate(12192,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE4-28"></use>
|
||||
<g transform="translate(602,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="766" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="60" y="747"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="130" y="-707"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE4-29" x="1608" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 10 KiB |
88
images/latex/b49051569e754f994300fbaf004d1b4445b0941f.svg
Normal file
@@ -0,0 +1,88 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="40.5ex" height="10ex" style="vertical-align: -4.5ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -2413.3 17444 4326.7" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3C6" d="M590 304c40 -158 -75 -315 -241 -315c-17 0 -25 1 -34 2c9 -142 12 -175 11 -183c-4 -23 -26 -26 -31 -26c-10 0 -30 6 -36 28c-1 5 0 7 0 20l12 168c-114 25 -198 98 -221 192c-24 96 16 241 44 241c10 0 14 -6 15 -10c0 0 1 -4 -5 -13c-43 -69 -38 -179 -31 -207 c18 -72 88 -128 201 -148c11 195 23 389 168 389c75 0 129 -60 148 -138zM568 282c-12 48 -53 102 -122 102c-89 0 -143 -96 -142 -224l7 -108c1 -3 2 -4 14 -4c8 -1 10 -1 18 -1c154 0 253 122 225 235Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-34" d="M471 165h-100v-87c0 -36 2 -47 76 -47h21v-31c-41 3 -94 3 -136 3s-94 0 -135 -3v31h21c74 0 76 11 76 47v87h-266v31l307 469c8 12 11 12 20 12c16 0 16 -6 16 -26v-455h100v-31zM300 196v373l-244 -373h244Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-22C5" d="M192 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45F" d="M436 377c0 -36 -28 -59 -55 -59s-38 19 -38 35c0 26 22 50 52 55c0 0 -16 12 -42 12c-43 0 -72 -26 -80 -33c-24 -22 -52 -69 -56 -82l-32 -130c-4 -18 -38 -154 -40 -158c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43l58 231c13 52 16 63 16 84 c0 38 -14 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 3 13 63 31 97c9 18 28 57 74 57c47 0 83 -32 91 -77c19 28 63 77 128 77c51 0 83 -30 83 -65Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D450" d="M430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3B5" d="M420 81c4 -15 -31 -103 -163 -103c-106 0 -178 61 -194 126c-11 46 7 102 57 135c-4 3 -47 28 -57 71c-19 76 72 143 187 143c68 0 138 -38 143 -57c4 -14 -7 -27 -20 -27c-7 0 -10 2 -23 10c-47 28 -83 28 -99 28c-90 0 -179 -36 -163 -97c6 -27 28 -46 54 -58 c33 17 67 19 88 19c38 0 74 -3 80 -27c8 -31 -47 -31 -73 -31c-24 0 -53 0 -90 14c-53 -30 -68 -83 -59 -117c17 -71 106 -86 167 -86c120 0 135 37 143 60c1 3 3 7 8 7c6 0 12 -4 14 -10zM284 243c-19 5 -23 6 -48 6c-17 0 -38 -1 -59 -9c20 -5 32 -5 54 -5c38 0 40 1 53 8 Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE1-221A" d="M1020 830c0 -3 0 -5 -7 -18l-547 -1142c-10 -19 -11 -20 -42 -20l-228 531l-71 -54l-15 16l139 107l213 -496l516 1076c5 11 9 20 22 20c12 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE2-221A" d="M1020 1130c0 0 0 -5 -5 -20l-549 -1736c-8 -24 -9 -24 -42 -24l-230 802l-68 -80l-16 15l139 163l215 -750l513 1624c4 13 8 26 23 26c12 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-221A" d="M853 20c0 -5 -1 -6 -6 -17l-456 -944c-7 -15 -9 -19 -25 -19c-11 0 -13 1 -19 15l-198 435l-52 -39c-9 -8 -11 -8 -14 -8c-6 0 -10 4 -10 11c0 4 1 5 12 14l99 75c9 8 11 8 14 8c7 0 9 -6 13 -14l178 -392l423 876c6 12 9 19 21 19s20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-239B" d="M823 1474c0 -7 -3 -13 -9 -17c-255 -192 -435 -739 -435 -1207v-250h-102v250c0 490 245 1039 513 1241c3 2 7 4 12 4c11 0 21 -10 21 -21Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-239D" d="M823 21c0 -12 -10 -21 -21 -21c-5 0 -9 2 -12 4c-268 201 -513 751 -513 1241v250h102v-250c0 -469 180 -1015 435 -1208c6 -3 9 -9 9 -16Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-239C" d="M379 0h-102v498h102v-498Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-239E" d="M598 0h-102v250c0 468 -180 1015 -435 1207c-6 4 -9 10 -9 17c0 11 10 21 21 21c5 0 9 -2 12 -4c268 -202 513 -751 513 -1241v-250Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A0" d="M598 1245c0 -490 -245 -1040 -513 -1241c-3 -2 -7 -4 -12 -4c-11 0 -21 9 -21 21c0 7 3 13 9 16c255 193 435 739 435 1208v250h102v-250Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-239F" d="M598 498v-498h-102v498h102Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="923" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="1984" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="2711" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="3217" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="3751" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="4207" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="4645" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="5083" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="5573" y="0"></use>
|
||||
<g transform="translate(6213,0)">
|
||||
<g transform="translate(0,2399)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-239B" x="0" y="-1505"></use>
|
||||
<g transform="translate(0,-2807.370386100386) scale(1,2.6424613899613902)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-239C"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-239D" x="0" y="-4289"></use>
|
||||
</g>
|
||||
<g transform="translate(880,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="9230" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,1137)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE2-221A" x="0" y="42"></use>
|
||||
<rect stroke="none" width="8105" height="60" x="1005" y="1142"></rect>
|
||||
<g transform="translate(1005,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="727" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3B5" x="1732" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="2494" y="0"></use>
|
||||
<g transform="translate(3499,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE1-221A" x="0" y="6"></use>
|
||||
<rect stroke="none" width="3600" height="60" x="1005" y="806"></rect>
|
||||
<g transform="translate(1005,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3B5" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="540" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="934" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="1661" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3B5" x="2666" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="3206" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(3943,-929)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-221A" x="0" y="799"></use>
|
||||
<rect stroke="none" width="505" height="60" x="838" y="789"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="838" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(10350,2399)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-239E" x="0" y="-1505"></use>
|
||||
<g transform="translate(0,-2807.370386100386) scale(1,2.6424613899613902)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-239F"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A0" x="0" y="-4289"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.8 KiB |
56
images/latex/b70d86486bfa2d3b3810a026e45d3e5f0a9040cc.svg
Normal file
@@ -0,0 +1,56 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="25.833ex" height="5.833ex" style="vertical-align: -2.333ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1521.9 11124.1 2543.9" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D436" d="M760 695l-63 -255c-5 -18 -5 -20 -18 -20c-4 0 -15 0 -15 10s3 11 3 51c0 116 -59 193 -161 193c-89 0 -183 -50 -244 -121c-100 -117 -121 -279 -121 -336c0 -156 106 -208 196 -208c52 0 115 17 184 73c69 58 92 129 101 158c2 8 7 10 13 10c0 0 12 0 12 -10 c0 -3 -17 -94 -110 -176c-53 -46 -129 -86 -216 -86c-153 0 -271 109 -271 274c0 232 225 453 448 453c111 0 157 -75 166 -89l70 77c11 11 12 12 15 12c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D438" d="M763 653l-20 -173c-2 -19 -3 -25 -14 -25c-9 0 -12 7 -12 12s1 12 1 18c4 27 4 29 4 53c0 82 -30 111 -152 111h-141c-44 0 -45 -4 -54 -39l-60 -241h94c92 0 110 23 131 99c3 12 5 18 14 18c7 0 12 -5 12 -11l-57 -234c-4 -15 -7 -20 -15 -20c-9 0 -13 6 -13 11 c0 3 1 6 3 11c7 30 7 42 7 49c0 25 0 46 -85 46h-99l-68 -273c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h146c171 0 208 67 273 215c2 6 4 12 13 12c12 0 12 -11 12 -11s-3 -9 -5 -14l-92 -216c-7 -16 -8 -17 -31 -17h-519c-19 0 -28 0 -28 12 c0 19 11 19 28 19c79 0 81 8 91 47l132 529c5 18 5 20 5 24c0 18 -28 18 -65 18c-19 0 -28 0 -28 11c0 20 10 20 30 20h505c25 0 30 0 27 -27Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44F" d="M415 282c0 -144 -123 -293 -241 -293c-74 0 -127 62 -127 157c0 35 4 51 16 101l82 326c5 21 14 55 14 62c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-74 -301c30 31 71 60 117 60c80 0 133 -69 133 -160zM343 326 c0 64 -27 94 -63 94c-26 0 -71 -15 -120 -80c-9 -11 -9 -13 -15 -35l-22 -92c-16 -63 -16 -82 -16 -101c0 -74 33 -101 67 -101c39 0 85 36 118 103c18 38 51 153 51 212Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-22C5" d="M192 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3C6" d="M590 304c40 -158 -75 -315 -241 -315c-17 0 -25 1 -34 2c9 -142 12 -175 11 -183c-4 -23 -26 -26 -31 -26c-10 0 -30 6 -36 28c-1 5 0 7 0 20l12 168c-114 25 -198 98 -221 192c-24 96 16 241 44 241c10 0 14 -6 15 -10c0 0 1 -4 -5 -13c-43 -69 -38 -179 -31 -207 c18 -72 88 -128 201 -148c11 195 23 389 168 389c75 0 129 -60 148 -138zM568 282c-12 48 -53 102 -122 102c-89 0 -143 -96 -142 -224l7 -108c1 -3 2 -4 14 -4c8 -1 10 -1 18 -1c154 0 253 122 225 235Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D450" d="M430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE6-28" d="M682 -928c0 -10 -8 -18 -18 -18c-4 0 -8 2 -11 4c-222 167 -427 613 -427 1006v372c0 393 205 839 427 1006c3 2 7 4 11 4c10 0 18 -8 18 -18c0 -6 -3 -11 -7 -14c-213 -160 -361 -603 -361 -978v-372c0 -375 148 -818 361 -978c4 -3 7 -8 7 -14Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE6-29" d="M510 64c0 -393 -205 -839 -427 -1006c-3 -2 -7 -4 -11 -4c-10 0 -18 8 -18 18c0 6 3 11 7 14c213 160 361 603 361 978v372c0 375 -148 818 -361 978c-4 3 -7 8 -7 14c0 10 8 18 18 18c4 0 8 -2 11 -4c222 -167 427 -613 427 -1006v-372Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="1018" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1454" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D438" x="2515" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="3505" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="4511" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="5167" y="0"></use>
|
||||
<g transform="translate(5672,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE6-28"></use>
|
||||
<g transform="translate(908,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,708)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="783" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="1257" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="1607" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="2212" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="2606" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="3252" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(405,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="438" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="928" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1402" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="1796" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2442" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE6-29" x="4710" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.6 KiB |
83
images/latex/b85310895d0e8cb3a52ea0f9586c2221590224d5.svg
Normal file
@@ -0,0 +1,83 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="86.833ex" height="2.5ex" style="vertical-align: -0.667ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -792.9 37360.4 1085.9" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D450" d="M430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3C6" d="M590 304c40 -158 -75 -315 -241 -315c-17 0 -25 1 -34 2c9 -142 12 -175 11 -183c-4 -23 -26 -26 -31 -26c-10 0 -30 6 -36 28c-1 5 0 7 0 20l12 168c-114 25 -198 98 -221 192c-24 96 16 241 44 241c10 0 14 -6 15 -10c0 0 1 -4 -5 -13c-43 -69 -38 -179 -31 -207 c18 -72 88 -128 201 -148c11 195 23 389 168 389c75 0 129 -60 148 -138zM568 282c-12 48 -53 102 -122 102c-89 0 -143 -96 -142 -224l7 -108c1 -3 2 -4 14 -4c8 -1 10 -1 18 -1c154 0 253 122 225 235Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44F" d="M415 282c0 -144 -123 -293 -241 -293c-74 0 -127 62 -127 157c0 35 4 51 16 101l82 326c5 21 14 55 14 62c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-74 -301c30 31 71 60 117 60c80 0 133 -69 133 -160zM343 326 c0 64 -27 94 -63 94c-26 0 -71 -15 -120 -80c-9 -11 -9 -13 -15 -35l-22 -92c-16 -63 -16 -82 -16 -101c0 -74 33 -101 67 -101c39 0 85 36 118 103c18 38 51 153 51 212Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-22C5" d="M192 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2192" d="M943 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-766c-11 0 -20 9 -20 20s9 20 20 20h766c-30 20 -56 44 -78 72 c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<g transform="translate(167,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,-21)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="782" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="1843" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="2281" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="2771" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="3245" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="3639" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="4285" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="4901" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="5907" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="6563" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="7068" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="7851" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="8325" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="8675" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="9280" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="9674" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="10320" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2192" x="11324" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="12939" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="13666" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="14671" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="15109" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="15599" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="16073" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="16467" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="17113" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="17785" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="18846" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="19629" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="20285" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="20790" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="21264" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="21614" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="22219" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="22613" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="23259" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2192" x="24263" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="26100" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="27105" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="27832" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="28837" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="29275" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="29765" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="30239" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="30633" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="31279" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="31951" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="33012" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="33668" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="34173" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="34647" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="34997" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="35602" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="35996" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="36642" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.3 KiB |
53
images/latex/bc0fcba1b3029fcf4a39369939fae2114cf3710e.svg
Normal file
@@ -0,0 +1,53 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="29.667ex" height="4.5ex" style="vertical-align: -1.667ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1213.3 12793.8 1932.7" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D443" d="M754 532c0 -112 -139 -216 -281 -216h-170l-62 -250c-1 -6 -3 -11 -3 -17c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -13 -20 -20 -20c-21 0 -43 2 -65 2l-64 1l-127 -3c-3 0 -15 0 -15 12c0 19 11 19 28 19c79 0 81 8 91 47l134 537c3 12 4 15 4 19 c0 11 -6 14 -22 16c-12 1 -30 2 -43 2c-20 0 -29 0 -29 12c0 19 11 19 30 19h324c131 0 197 -74 197 -151zM661 556c0 69 -53 96 -136 96h-96c-43 0 -45 -3 -54 -38l-68 -272h141c44 0 104 8 154 53c39 36 59 122 59 161Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D465" d="M527 376c0 -40 -32 -58 -54 -58c-27 0 -38 19 -38 35c0 24 20 49 48 54c-21 13 -45 13 -50 13c-70 0 -93 -92 -99 -118l-34 -137c-11 -44 -17 -66 -17 -88c0 -34 16 -66 55 -66c32 0 100 24 133 131c2 7 4 11 13 11c3 0 12 0 12 -10c0 -25 -57 -154 -160 -154 c-60 0 -96 39 -108 76c-3 -6 -39 -76 -105 -76c-44 0 -94 20 -94 66c0 32 25 58 55 58c15 0 37 -8 37 -35c0 -28 -22 -49 -47 -54c21 -13 44 -13 50 -13c44 0 79 42 95 104c37 140 54 207 54 238c0 58 -35 67 -54 67c-34 0 -100 -25 -134 -131c-2 -9 -5 -11 -13 -11 c0 0 -12 0 -12 10c0 25 57 154 161 154c29 0 83 -10 108 -76c12 23 47 76 105 76c34 0 93 -14 93 -66Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D450" d="M430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3C6" d="M590 304c40 -158 -75 -315 -241 -315c-17 0 -25 1 -34 2c9 -142 12 -175 11 -183c-4 -23 -26 -26 -31 -26c-10 0 -30 6 -36 28c-1 5 0 7 0 20l12 168c-114 25 -198 98 -221 192c-24 96 16 241 44 241c10 0 14 -6 15 -10c0 0 1 -4 -5 -13c-43 -69 -38 -179 -31 -207 c18 -72 88 -128 201 -148c11 195 23 389 168 389c75 0 129 -60 148 -138zM568 282c-12 48 -53 102 -122 102c-89 0 -143 -96 -142 -224l7 -108c1 -3 2 -4 14 -4c8 -1 10 -1 18 -1c154 0 253 122 225 235Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2C" d="M203 1c0 -117 -80 -194 -91 -194c-5 0 -10 4 -10 11c0 3 0 5 11 16c33 33 68 93 68 167c0 14 -2 15 -2 15s-2 -1 -5 -3c-10 -9 -23 -13 -35 -13c-33 0 -53 26 -53 53c0 28 20 53 53 53c39 0 64 -39 64 -105Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D466" d="M490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="914" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1432" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="2493" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="2931" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="3421" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="3895" y="0"></use>
|
||||
<g transform="translate(4289,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="766" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="60" y="747"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="130" y="-696"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="5295" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="6021" y="0"></use>
|
||||
<g transform="translate(7135,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="914" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="8510" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="9570" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="10044" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="10394" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="10999" y="0"></use>
|
||||
<g transform="translate(11393,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="766" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="60" y="747"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="130" y="-696"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="12399" y="0"></use>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.0 KiB |
107
images/latex/c0f4622098262b66b7e7422707899c4f24b4c4cb.svg
Normal file
@@ -0,0 +1,107 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="51.167ex" height="5.833ex" style="vertical-align: -2.333ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1521.9 22056.6 2543.9" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D436" d="M760 695l-63 -255c-5 -18 -5 -20 -18 -20c-4 0 -15 0 -15 10s3 11 3 51c0 116 -59 193 -161 193c-89 0 -183 -50 -244 -121c-100 -117 -121 -279 -121 -336c0 -156 106 -208 196 -208c52 0 115 17 184 73c69 58 92 129 101 158c2 8 7 10 13 10c0 0 12 0 12 -10 c0 -3 -17 -94 -110 -176c-53 -46 -129 -86 -216 -86c-153 0 -271 109 -271 274c0 232 225 453 448 453c111 0 157 -75 166 -89l70 77c11 11 12 12 15 12c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-5B" d="M256 -230c0 -11 -9 -20 -20 -20h-122v1000h122c11 0 20 -9 20 -20s-9 -20 -20 -20h-82v-920h82c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D450" d="M430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3C6" d="M590 304c40 -158 -75 -315 -241 -315c-17 0 -25 1 -34 2c9 -142 12 -175 11 -183c-4 -23 -26 -26 -31 -26c-10 0 -30 6 -36 28c-1 5 0 7 0 20l12 168c-114 25 -198 98 -221 192c-24 96 16 241 44 241c10 0 14 -6 15 -10c0 0 1 -4 -5 -13c-43 -69 -38 -179 -31 -207 c18 -72 88 -128 201 -148c11 195 23 389 168 389c75 0 129 -60 148 -138zM568 282c-12 48 -53 102 -122 102c-89 0 -143 -96 -142 -224l7 -108c1 -3 2 -4 14 -4c8 -1 10 -1 18 -1c154 0 253 122 225 235Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D453" d="M552 636c0 -38 -29 -60 -55 -60c-19 0 -37 12 -37 35c0 15 10 50 54 54c-19 18 -45 18 -49 18c-21 0 -38 -15 -47 -34c-6 -12 -20 -83 -24 -104c-11 -58 -10 -56 -21 -114h83c17 0 27 0 27 -11c0 -20 -10 -20 -30 -20h-86l-60 -317c-1 -7 -24 -128 -56 -191 c-18 -38 -58 -97 -113 -97c-41 0 -85 24 -85 69c0 38 29 60 55 60c19 0 37 -12 37 -35c0 -15 -9 -51 -55 -54c19 -18 44 -18 48 -18c52 0 69 91 87 188l75 395h-66c-19 0 -28 0 -28 12c0 19 11 19 30 19h69c24 126 27 136 33 157c30 99 93 117 127 117c41 0 87 -23 87 -69Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-22C5" d="M192 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-5D" d="M164 -250h-122c-11 0 -20 9 -20 20s9 20 20 20h82v920h-82c-11 0 -20 9 -20 20s9 20 20 20h122v-1000Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE6-5B" d="M509 -921c0 -16 -13 -29 -29 -29h-247v2400h247c16 0 29 -13 29 -29s-13 -29 -29 -29h-189v-2284h189c16 0 29 -13 29 -29Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE6-5D" d="M295 1450v-2400h-247c-16 0 -29 13 -29 29s13 29 29 29h189v2284h-189c-16 0 -29 13 -29 29s13 29 29 29h247Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2C" d="M203 1c0 -117 -80 -194 -91 -194c-5 0 -10 4 -10 11c0 3 0 5 11 16c33 33 68 93 68 167c0 14 -2 15 -2 15s-2 -1 -5 -3c-10 -9 -23 -13 -35 -13c-33 0 -53 26 -53 53c0 28 20 53 53 53c39 0 64 -39 64 -105Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D464" d="M691 372c0 -48 -32 -182 -66 -260c-26 -60 -70 -123 -145 -123c-30 0 -99 6 -125 70c-40 -70 -87 -70 -104 -70c-75 0 -142 35 -142 126c0 38 12 84 56 202c7 17 18 45 18 70c0 32 -16 33 -25 33c-35 0 -74 -31 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10 c0 9 37 154 132 154c49 0 82 -37 82 -82c0 -20 -6 -34 -17 -64c-47 -123 -52 -162 -52 -194c0 -17 0 -91 80 -91c39 0 69 31 92 84c-1 5 -1 7 -1 18c0 18 2 36 9 66c7 26 54 217 57 224c7 20 25 28 37 28c15 0 29 -9 29 -27c0 -6 -10 -43 -15 -65l-42 -168 c-4 -14 -11 -45 -11 -73c0 -57 27 -87 74 -87c49 0 84 35 110 88c26 51 55 149 55 183c0 48 -25 74 -36 85c-9 8 -15 14 -15 27c0 22 25 48 50 48c17 0 44 -15 44 -70Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D461" d="M330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-210E" d="M546 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 20 5 32 13 55c24 61 62 170 62 224c0 36 -11 70 -54 70s-74 -19 -96 -35c-34 -27 -65 -83 -68 -92c-1 -6 -9 -39 -11 -45c-5 -23 -11 -45 -17 -67l-22 -90l-19 -76c-5 -14 -21 -26 -37 -26c-9 0 -29 5 -29 28 c0 6 0 8 4 22l145 576l3 20c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-78 -318c37 46 85 77 148 77c75 0 115 -42 115 -107c0 -58 -45 -177 -61 -220c-9 -22 -18 -46 -18 -71c0 -23 7 -33 24 -33c55 0 87 71 102 124 c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-34" d="M471 165h-100v-87c0 -36 2 -47 76 -47h21v-31c-41 3 -94 3 -136 3s-94 0 -135 -3v31h21c74 0 76 11 76 47v87h-266v31l307 469c8 12 11 12 20 12c16 0 16 -6 16 -26v-455h100v-31zM300 196v373l-244 -373h244Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-33" d="M457 171c0 -102 -91 -193 -213 -193c-109 0 -202 66 -202 157c0 44 32 58 56 58c29 0 56 -20 56 -56c0 -38 -31 -60 -66 -55c35 -59 110 -76 153 -76c44 0 113 29 113 165c0 98 -37 166 -119 166h-44c-17 0 -24 0 -24 11c0 10 7 11 15 12c7 0 31 2 39 3c25 1 59 4 89 52 c26 44 28 102 28 114c0 90 -55 112 -96 112c-36 0 -102 -13 -133 -62c15 0 62 0 62 -50c0 -29 -20 -51 -51 -51c-29 0 -51 19 -51 52c0 76 76 136 177 136c96 0 184 -56 184 -138c0 -79 -58 -149 -140 -176c104 -21 167 -99 167 -181Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE4-28" d="M539 -632c0 -8 -6 -14 -14 -14c-3 0 -6 1 -9 2c-175 132 -337 475 -337 776v236c0 301 162 644 337 776c3 1 6 2 9 2c8 0 14 -6 14 -14c0 -5 -2 -9 -5 -12c-167 -125 -283 -466 -283 -752v-236c0 -286 116 -627 283 -752c3 -3 5 -7 5 -12Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE4-29" d="M418 132c0 -301 -162 -644 -337 -776c-3 -1 -6 -2 -9 -2c-8 0 -14 6 -14 14c0 5 2 9 5 12c167 125 283 466 283 752v236c0 286 -116 627 -283 752c-3 3 -5 7 -5 12c0 8 6 14 14 14c3 0 6 -1 9 -2c175 -132 337 -475 337 -776v-236Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="1018" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1454" y="0"></use>
|
||||
<g transform="translate(2515,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE6-5B"></use>
|
||||
<g transform="translate(700,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,708)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="438" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="928" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1402" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="1796" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2442" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="3058" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D453" x="4063" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="4842" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="5347" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="5821" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="6171" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="6776" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="7170" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="7816" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="474" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="824" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1429" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="1823" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2469" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="3085" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D453" x="4090" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="4869" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="5374" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="5812" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="6302" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="6776" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="7170" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="7816" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE6-5D" x="9067" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="12282" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D464" x="13064" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="13785" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="14135" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-210E" x="14501" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D453" x="15414" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="16249" y="0"></use>
|
||||
<g transform="translate(17032,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="625" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="60" y="676"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="60" y="-696"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="18174" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="18540" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="19074" y="0"></use>
|
||||
<g transform="translate(19846,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE4-28"></use>
|
||||
<g transform="translate(602,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="766" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="60" y="747"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="130" y="-707"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE4-29" x="1608" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 14 KiB |
32
images/latex/c62661326e9ec0208c1d11591acc4909e589836f.svg
Normal file
@@ -0,0 +1,32 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="22.5ex" height="2.5ex" style="vertical-align: -0.667ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -771.9 9698.4 1043.9" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D442" d="M740 436c0 -239 -223 -458 -435 -458c-144 0 -256 101 -256 267c0 233 220 460 436 460c149 0 255 -108 255 -269zM651 475c0 149 -90 205 -172 205c-79 0 -177 -52 -246 -156c-77 -117 -91 -263 -91 -307c0 -132 70 -213 169 -213c84 0 166 59 214 120 c99 123 126 279 126 351Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D461" d="M330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D435" d="M756 545c0 -95 -105 -169 -209 -188c97 -11 155 -69 155 -141c0 -98 -118 -216 -276 -216h-357c-18 0 -27 0 -27 11c0 20 10 20 27 20c79 0 81 8 91 47l134 537c3 12 4 15 4 19c0 13 -9 14 -27 16c-17 2 -38 2 -38 2c-19 0 -28 0 -28 11c0 20 10 20 29 20h336 c120 0 186 -64 186 -138zM665 549c0 44 -21 103 -109 103h-129c-43 0 -45 -3 -54 -38l-62 -248h146c122 0 208 95 208 183zM609 227c0 43 -19 117 -115 117h-189l-69 -279c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h136c118 0 207 97 207 196Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D451" d="M516 683l-144 -578c-4 -17 -6 -24 -6 -48c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293 c45 0 74 -27 92 -64l60 237l3 20c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 13 6 18 14 19c17 2 112 11 127 11c13 0 13 -11 13 -11zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37 l50 196c1 5 3 11 3 17Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-22C5" d="M192 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D441" d="M881 672c0 -19 -12 -20 -17 -20c-80 -3 -98 -34 -108 -74l-140 -557c-5 -18 -5 -21 -16 -21c-9 0 -12 2 -19 19l-249 589c-5 10 -5 12 -9 18l-132 -528c-3 -11 -4 -16 -4 -23c0 -20 8 -42 66 -44c11 0 20 -1 20 -11c0 -20 -13 -20 -18 -20c-33 0 -69 3 -103 3 c-33 0 -68 -3 -100 -3c-8 0 -13 4 -13 11c0 19 11 20 17 20c81 3 98 35 108 75l134 537c0 9 -63 9 -68 9c-19 0 -28 0 -28 11c0 20 9 20 29 20h134c23 0 24 -1 32 -19l221 -522l112 445c1 3 3 18 3 21c0 22 -11 43 -68 44c-8 0 -18 0 -18 11c0 20 12 20 18 20 c33 0 68 -3 102 -3c33 0 68 3 101 3c13 0 13 -11 13 -11Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D442" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="768" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1162" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="1528" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="2199" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="3260" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="4024" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="4418" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="4784" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="5400" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D451" x="6406" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="7153" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D441" x="7658" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="8544" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="8938" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="9304" y="0"></use>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.9 KiB |
58
images/latex/c88f6bfdac5d20c87e772233bd824cf571a8ff6d.svg
Normal file
@@ -0,0 +1,58 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="27.667ex" height="5.833ex" style="vertical-align: -2.167ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1609.7 11881 2544.9" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-7C" d="M159 -230c0 -11 -9 -20 -20 -20s-20 9 -20 20v960c0 11 9 20 20 20s20 -9 20 -20v-960Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D453" d="M552 636c0 -38 -29 -60 -55 -60c-19 0 -37 12 -37 35c0 15 10 50 54 54c-19 18 -45 18 -49 18c-21 0 -38 -15 -47 -34c-6 -12 -20 -83 -24 -104c-11 -58 -10 -56 -21 -114h83c17 0 27 0 27 -11c0 -20 -10 -20 -30 -20h-86l-60 -317c-1 -7 -24 -128 -56 -191 c-18 -38 -58 -97 -113 -97c-41 0 -85 24 -85 69c0 38 29 60 55 60c19 0 37 -12 37 -35c0 -15 -9 -51 -55 -54c19 -18 44 -18 48 -18c52 0 69 91 87 188l75 395h-66c-19 0 -28 0 -28 12c0 19 11 19 30 19h69c24 126 27 136 33 157c30 99 93 117 127 117c41 0 87 -23 87 -69Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D465" d="M527 376c0 -40 -32 -58 -54 -58c-27 0 -38 19 -38 35c0 24 20 49 48 54c-21 13 -45 13 -50 13c-70 0 -93 -92 -99 -118l-34 -137c-11 -44 -17 -66 -17 -88c0 -34 16 -66 55 -66c32 0 100 24 133 131c2 7 4 11 13 11c3 0 12 0 12 -10c0 -25 -57 -154 -160 -154 c-60 0 -96 39 -108 76c-3 -6 -39 -76 -105 -76c-44 0 -94 20 -94 66c0 32 25 58 55 58c15 0 37 -8 37 -35c0 -28 -22 -49 -47 -54c21 -13 44 -13 50 -13c44 0 79 42 95 104c37 140 54 207 54 238c0 58 -35 67 -54 67c-34 0 -100 -25 -134 -131c-2 -9 -5 -11 -13 -11 c0 0 -12 0 -12 10c0 25 57 154 161 154c29 0 83 -10 108 -76c12 23 47 76 105 76c34 0 93 -14 93 -66Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2C" d="M203 1c0 -117 -80 -194 -91 -194c-5 0 -10 4 -10 11c0 3 0 5 11 16c33 33 68 93 68 167c0 14 -2 15 -2 15s-2 -1 -5 -3c-10 -9 -23 -13 -35 -13c-33 0 -53 26 -53 53c0 28 20 53 53 53c39 0 64 -39 64 -105Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D466" d="M490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE1-222B" d="M943 1268c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542c-54 -321 -119 -640 -196 -956c-71 -290 -128 -524 -280 -524c-61 0 -111 42 -111 93c0 35 25 50 49 50 c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261c33 139 62 306 88 459c110 654 246 1156 249 1167c55 204 111 313 187 313c55 0 109 -39 109 -93Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44F" d="M415 282c0 -144 -123 -293 -241 -293c-74 0 -127 62 -127 157c0 35 4 51 16 101l82 326c5 21 14 55 14 62c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-74 -301c30 31 71 60 117 60c80 0 133 -69 133 -160zM343 326 c0 64 -27 94 -63 94c-26 0 -71 -15 -120 -80c-9 -11 -9 -13 -15 -35l-22 -92c-16 -63 -16 -82 -16 -101c0 -74 33 -101 67 -101c39 0 85 36 118 103c18 38 51 153 51 212Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2032" d="M251 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE2-221A" d="M1020 1130c0 0 0 -5 -5 -20l-549 -1736c-8 -24 -9 -24 -42 -24l-230 802l-68 -80l-16 15l139 163l215 -750l513 1624c4 13 8 26 23 26c12 0 20 -9 20 -20Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="283" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D453" x="566" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1123" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D465" x="1517" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="2094" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D466" x="2543" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="3038" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="3432" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="3882" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="4443" y="0"></use>
|
||||
<g transform="translate(5503,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE1-222B" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="1497" y="1552"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="818" y="-1282"></use>
|
||||
</g>
|
||||
<g transform="translate(7136,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE2-221A" x="0" y="16"></use>
|
||||
<rect stroke="none" width="3739" height="60" x="1005" y="1116"></rect>
|
||||
<g transform="translate(1005,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D453" x="0" y="0"></use>
|
||||
<g transform="translate(575,351)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="316" y="0"></use>
|
||||
</g>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="700" y="-220"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="1478" y="0"></use>
|
||||
<g transform="translate(2483,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D453" x="0" y="0"></use>
|
||||
<g transform="translate(575,351)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="316" y="0"></use>
|
||||
</g>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="700" y="-220"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.8 KiB |
97
images/latex/d11c1b908e8005bc191cfbdaa5d4b3155b1dd326.svg
Normal file
@@ -0,0 +1,97 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="33.333ex" height="7.333ex" style="vertical-align: -3.167ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1846.5 14353.3 3193" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-7B" d="M425 -238c0 -7 -5 -12 -12 -12c-105 0 -196 52 -196 125v250c0 58 -55 113 -130 113c-7 0 -12 5 -12 12s5 12 12 12c75 0 130 55 130 113v250c0 73 91 125 196 125c7 0 12 -5 12 -12s-5 -12 -12 -12c-75 0 -130 -49 -130 -101v-250c0 -58 -48 -104 -115 -125 c67 -21 115 -67 115 -125v-250c0 -52 55 -101 130 -101c7 0 12 -5 12 -12Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D463" d="M468 372c0 -52 -57 -383 -225 -383c-46 0 -134 16 -134 124c0 43 13 89 57 205c7 18 17 45 17 70c0 32 -17 32 -25 32c-29 0 -72 -23 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -12 -50 c-31 -83 -58 -156 -58 -212c0 -52 23 -87 74 -87c117 0 178 229 178 271c0 36 -13 62 -34 82c-11 11 -16 17 -16 30c0 22 24 48 49 48c18 0 44 -16 44 -70Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-20D7" d="M-56 616c0 -7 -5 -12 -11 -14c-36 -12 -65 -38 -81 -72c-2 -5 -7 -9 -13 -9c-9 0 -15 7 -15 15c0 2 0 4 1 6c10 23 26 43 45 59h-327c-8 0 -15 7 -15 15s7 15 15 15h327c-19 16 -35 36 -45 59c-1 2 -1 4 -1 6c0 8 6 15 15 15c6 0 11 -4 13 -9c16 -34 45 -60 81 -72 c6 -2 11 -7 11 -14Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D465" d="M527 376c0 -40 -32 -58 -54 -58c-27 0 -38 19 -38 35c0 24 20 49 48 54c-21 13 -45 13 -50 13c-70 0 -93 -92 -99 -118l-34 -137c-11 -44 -17 -66 -17 -88c0 -34 16 -66 55 -66c32 0 100 24 133 131c2 7 4 11 13 11c3 0 12 0 12 -10c0 -25 -57 -154 -160 -154 c-60 0 -96 39 -108 76c-3 -6 -39 -76 -105 -76c-44 0 -94 20 -94 66c0 32 25 58 55 58c15 0 37 -8 37 -35c0 -28 -22 -49 -47 -54c21 -13 44 -13 50 -13c44 0 79 42 95 104c37 140 54 207 54 238c0 58 -35 67 -54 67c-34 0 -100 -25 -134 -131c-2 -9 -5 -11 -13 -11 c0 0 -12 0 -12 10c0 25 57 154 161 154c29 0 83 -10 108 -76c12 23 47 76 105 76c34 0 93 -14 93 -66Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D436" d="M760 695l-63 -255c-5 -18 -5 -20 -18 -20c-4 0 -15 0 -15 10s3 11 3 51c0 116 -59 193 -161 193c-89 0 -183 -50 -244 -121c-100 -117 -121 -279 -121 -336c0 -156 106 -208 196 -208c52 0 115 17 184 73c69 58 92 129 101 158c2 8 7 10 13 10c0 0 12 0 12 -10 c0 -3 -17 -94 -110 -176c-53 -46 -129 -86 -216 -86c-153 0 -271 109 -271 274c0 232 225 453 448 453c111 0 157 -75 166 -89l70 77c11 11 12 12 15 12c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2C" d="M203 1c0 -117 -80 -194 -91 -194c-5 0 -10 4 -10 11c0 3 0 5 11 16c33 33 68 93 68 167c0 14 -2 15 -2 15s-2 -1 -5 -3c-10 -9 -23 -13 -35 -13c-33 0 -53 26 -53 53c0 28 20 53 53 53c39 0 64 -39 64 -105Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D434" d="M721 20c0 -20 -12 -20 -18 -20c-25 0 -88 3 -113 3c-41 0 -84 -3 -125 -3c0 0 -14 0 -14 11c0 20 10 20 24 20c20 0 72 3 72 33c0 10 -14 146 -16 167h-251c-68 -116 -69 -116 -76 -128c-8 -14 -14 -25 -14 -37c0 -25 24 -33 47 -35c7 0 16 -1 16 -12 c0 -19 -13 -19 -19 -19c-32 0 -67 3 -100 3c-28 0 -59 -3 -86 -3c-8 0 -13 5 -13 11c0 19 9 19 21 20c44 3 83 17 123 84l348 584c6 10 10 17 26 17c17 0 17 -4 19 -24l61 -625c3 -29 3 -36 65 -36c13 0 23 0 23 -11zM528 262l-32 330l-197 -330h229Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-7D" d="M425 250c0 -7 -5 -12 -12 -12c-75 0 -130 -55 -130 -113v-250c0 -73 -91 -125 -196 -125c-7 0 -12 5 -12 12s5 12 12 12c75 0 130 49 130 101v250c0 58 48 104 115 125c-67 21 -115 67 -115 125v250c0 52 -55 101 -130 101c-7 0 -12 5 -12 12s5 12 12 12 c105 0 196 -52 196 -125v-250c0 -58 55 -113 130 -113c7 0 12 -5 12 -12Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-34" d="M471 165h-100v-87c0 -36 2 -47 76 -47h21v-31c-41 3 -94 3 -136 3s-94 0 -135 -3v31h21c74 0 76 11 76 47v87h-266v31l307 469c8 12 11 12 20 12c16 0 16 -6 16 -26v-455h100v-31zM300 196v373l-244 -373h244Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-33" d="M457 171c0 -102 -91 -193 -213 -193c-109 0 -202 66 -202 157c0 44 32 58 56 58c29 0 56 -20 56 -56c0 -38 -31 -60 -66 -55c35 -59 110 -76 153 -76c44 0 113 29 113 165c0 98 -37 166 -119 166h-44c-17 0 -24 0 -24 11c0 10 7 11 15 12c7 0 31 2 39 3c25 1 59 4 89 52 c26 44 28 102 28 114c0 90 -55 112 -96 112c-36 0 -102 -13 -133 -62c15 0 62 0 62 -50c0 -29 -20 -51 -51 -51c-29 0 -51 19 -51 52c0 76 76 136 177 136c96 0 184 -56 184 -138c0 -79 -58 -149 -140 -176c104 -21 167 -99 167 -181Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-22C5" d="M192 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D435" d="M756 545c0 -95 -105 -169 -209 -188c97 -11 155 -69 155 -141c0 -98 -118 -216 -276 -216h-357c-18 0 -27 0 -27 11c0 20 10 20 27 20c79 0 81 8 91 47l134 537c3 12 4 15 4 19c0 13 -9 14 -27 16c-17 2 -38 2 -38 2c-19 0 -28 0 -28 11c0 20 10 20 29 20h336 c120 0 186 -64 186 -138zM665 549c0 44 -21 103 -109 103h-129c-43 0 -45 -3 -54 -38l-62 -248h146c122 0 208 95 208 183zM609 227c0 43 -19 117 -115 117h-189l-69 -279c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h136c118 0 207 97 207 196Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D466" d="M490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE7-7B" d="M755 -1224c0 -14 -12 -26 -26 -26c-3 0 -6 1 -9 2c-169 61 -320 222 -320 373v750c0 137 -97 300 -236 351c-10 3 -17 13 -17 24s7 21 17 24c139 51 236 214 236 351v750c0 151 151 312 320 373c3 1 6 2 9 2c14 0 26 -12 26 -26c0 -11 -7 -21 -17 -24 c-138 -51 -236 -202 -236 -325v-750c0 -147 -120 -300 -265 -375c145 -75 265 -228 265 -375v-750c0 -123 98 -274 236 -325c10 -3 17 -13 17 -24Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE7-7B"></use>
|
||||
<g transform="translate(1074,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,895)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-20D7" x="476" y="48"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="692" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1275" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-7B" x="2336" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="2841" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="3606" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D434" x="4056" y="0"></use>
|
||||
<g transform="translate(4811,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-7D" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="714" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="6102" y="0"></use>
|
||||
<g transform="translate(6885,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="477" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="84" y="638"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="84" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="8102" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="8607" y="0"></use>
|
||||
<g transform="translate(9001,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="1080" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="10495" y="0"></use>
|
||||
<g transform="translate(11500,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="1018" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="12728" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-888)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-20D7" x="476" y="48"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="692" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1217" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-7B" x="2278" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="2783" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="3548" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D434" x="3998" y="0"></use>
|
||||
<g transform="translate(4753,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-7D" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="714" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="5986" y="0"></use>
|
||||
<g transform="translate(6769,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="477" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="84" y="638"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="84" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="7986" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="8491" y="0"></use>
|
||||
<g transform="translate(8885,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="1080" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="10321" y="0"></use>
|
||||
<g transform="translate(11326,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="1018" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="12496" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
67
images/latex/d2494003129cb1b9daf8238cce813997b6387197.svg
Normal file
@@ -0,0 +1,67 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="33.667ex" height="5.833ex" style="vertical-align: -2.167ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1589.9 14516.7 2532.8" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E2-LATINMODERNMAIN-7C" d="M159 -230c0 -11 -9 -20 -20 -20s-20 9 -20 20v960c0 11 9 20 20 20s20 -9 20 -20v-960Z"></path>
|
||||
<path stroke-width="10" id="E2-LATINMODERNNORMAL-1D435" d="M756 545c0 -95 -105 -169 -209 -188c97 -11 155 -69 155 -141c0 -98 -118 -216 -276 -216h-357c-18 0 -27 0 -27 11c0 20 10 20 27 20c79 0 81 8 91 47l134 537c3 12 4 15 4 19c0 13 -9 14 -27 16c-17 2 -38 2 -38 2c-19 0 -28 0 -28 11c0 20 10 20 29 20h336 c120 0 186 -64 186 -138zM665 549c0 44 -21 103 -109 103h-129c-43 0 -45 -3 -54 -38l-62 -248h146c122 0 208 95 208 183zM609 227c0 43 -19 117 -115 117h-189l-69 -279c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h136c118 0 207 97 207 196Z"></path>
|
||||
<path stroke-width="10" id="E2-LATINMODERNMAIN-2032" d="M251 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38Z"></path>
|
||||
<path stroke-width="10" id="E2-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E2-LATINMODERNNORMAL-1D461" d="M330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11Z"></path>
|
||||
<path stroke-width="10" id="E2-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E2-LATINMODERNSIZE2-7C" d="M164 -448c0 -14 -11 -24 -25 -24s-24 10 -24 24v1396c0 14 10 24 24 24s25 -10 25 -24v-1396Z"></path>
|
||||
<path stroke-width="10" id="E2-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E2-LATINMODERNSIZE1-222B" d="M943 1268c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542c-54 -321 -119 -640 -196 -956c-71 -290 -128 -524 -280 -524c-61 0 -111 42 -111 93c0 35 25 50 49 50 c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261c33 139 62 306 88 459c110 654 246 1156 249 1167c55 204 111 313 187 313c55 0 109 -39 109 -93Z"></path>
|
||||
<path stroke-width="10" id="E2-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
|
||||
<path stroke-width="10" id="E2-LATINMODERNMAIN-30" d="M460 320c0 -79 -5 -157 -37 -226c-44 -95 -120 -116 -174 -116c-49 0 -122 20 -165 101c-41 76 -45 166 -45 241c0 80 5 158 37 227c41 93 114 119 174 119c42 0 124 -16 170 -112c35 -74 40 -154 40 -234zM377 332c0 63 0 139 -10 195c-19 99 -85 117 -118 117 c-25 0 -100 -9 -119 -128c-8 -54 -8 -120 -8 -184c0 -59 0 -151 11 -211c18 -96 77 -121 116 -121c45 0 102 30 117 125c11 64 11 132 11 207Z"></path>
|
||||
<path stroke-width="10" id="E2-LATINMODERNMAIN-2033" d="M251 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38zM451 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38Z"></path>
|
||||
<path stroke-width="10" id="E2-LATINMODERNNORMAL-1D465" d="M527 376c0 -40 -32 -58 -54 -58c-27 0 -38 19 -38 35c0 24 20 49 48 54c-21 13 -45 13 -50 13c-70 0 -93 -92 -99 -118l-34 -137c-11 -44 -17 -66 -17 -88c0 -34 16 -66 55 -66c32 0 100 24 133 131c2 7 4 11 13 11c3 0 12 0 12 -10c0 -25 -57 -154 -160 -154 c-60 0 -96 39 -108 76c-3 -6 -39 -76 -105 -76c-44 0 -94 20 -94 66c0 32 25 58 55 58c15 0 37 -8 37 -35c0 -28 -22 -49 -47 -54c21 -13 44 -13 50 -13c44 0 79 42 95 104c37 140 54 207 54 238c0 58 -35 67 -54 67c-34 0 -100 -25 -134 -131c-2 -9 -5 -11 -13 -11 c0 0 -12 0 -12 10c0 25 57 154 161 154c29 0 83 -10 108 -76c12 23 47 76 105 76c34 0 93 -14 93 -66Z"></path>
|
||||
<path stroke-width="10" id="E2-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
|
||||
<path stroke-width="10" id="E2-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E2-LATINMODERNNORMAL-1D466" d="M490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27Z"></path>
|
||||
<path stroke-width="10" id="E2-LATINMODERNSIZE2-221A" d="M1020 1130c0 0 0 -5 -5 -20l-549 -1736c-8 -24 -9 -24 -42 -24l-230 802l-68 -80l-16 15l139 163l215 -750l513 1624c4 13 8 26 23 26c12 0 20 -9 20 -20Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E2-LATINMODERNSIZE2-7C"></use>
|
||||
<use xlink:href="#E2-LATINMODERNMAIN-7C" x="283" y="0"></use>
|
||||
<g transform="translate(566,0)">
|
||||
<use xlink:href="#E2-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E2-LATINMODERNMAIN-2032" x="1080" y="583"></use>
|
||||
</g>
|
||||
<use xlink:href="#E2-LATINMODERNMAIN-28" x="1653" y="0"></use>
|
||||
<use xlink:href="#E2-LATINMODERNNORMAL-1D461" x="2047" y="0"></use>
|
||||
<use xlink:href="#E2-LATINMODERNMAIN-29" x="2413" y="0"></use>
|
||||
<use xlink:href="#E2-LATINMODERNSIZE2-7C" x="2807" y="0"></use>
|
||||
<use xlink:href="#E2-LATINMODERNMAIN-7C" x="3257" y="0"></use>
|
||||
<use xlink:href="#E2-LATINMODERNMAIN-3D" x="3817" y="0"></use>
|
||||
<g transform="translate(4878,0)">
|
||||
<use xlink:href="#E2-LATINMODERNSIZE1-222B" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E2-LATINMODERNMAIN-31" x="1497" y="1552"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E2-LATINMODERNMAIN-30" x="818" y="-1282"></use>
|
||||
</g>
|
||||
<g transform="translate(6561,0)">
|
||||
<use xlink:href="#E2-LATINMODERNSIZE2-221A" x="0" y="-28"></use>
|
||||
<rect stroke="none" width="6950" height="60" x="1005" y="1072"></rect>
|
||||
<g transform="translate(1005,0)">
|
||||
<use xlink:href="#E2-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E2-LATINMODERNMAIN-2033" x="1080" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E2-LATINMODERNNORMAL-1D465" x="1080" y="-350"></use>
|
||||
<use xlink:href="#E2-LATINMODERNMAIN-28" x="1272" y="0"></use>
|
||||
<use xlink:href="#E2-LATINMODERNNORMAL-1D461" x="1666" y="0"></use>
|
||||
<g transform="translate(2032,0)">
|
||||
<use xlink:href="#E2-LATINMODERNMAIN-29" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E2-LATINMODERNMAIN-32" x="557" y="583"></use>
|
||||
</g>
|
||||
<use xlink:href="#E2-LATINMODERNMAIN-2B" x="3105" y="0"></use>
|
||||
<g transform="translate(4110,0)">
|
||||
<use xlink:href="#E2-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E2-LATINMODERNMAIN-2033" x="1080" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E2-LATINMODERNNORMAL-1D466" x="1080" y="-350"></use>
|
||||
</g>
|
||||
<use xlink:href="#E2-LATINMODERNMAIN-28" x="5339" y="0"></use>
|
||||
<use xlink:href="#E2-LATINMODERNNORMAL-1D461" x="5733" y="0"></use>
|
||||
<g transform="translate(6099,0)">
|
||||
<use xlink:href="#E2-LATINMODERNMAIN-29" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E2-LATINMODERNMAIN-32" x="557" y="583"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.3 KiB |
95
images/latex/d8a8760275419b09e8709d03934eb7fc248d4890.svg
Normal file
@@ -0,0 +1,95 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="63.667ex" height="4.333ex" style="vertical-align: -1.667ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1196 27387.7 1892.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D446" d="M645 695l-54 -219c-4 -17 -5 -20 -15 -20c-12 0 -12 10 -12 10c0 6 4 24 4 56c0 112 -61 155 -144 155c-95 0 -175 -85 -175 -166c0 -53 34 -82 61 -91l67 -18c89 -23 104 -27 127 -50c15 -14 49 -48 49 -117c0 -124 -118 -257 -254 -257c-58 0 -126 14 -169 72l-49 -57 c-12 -14 -13 -15 -18 -15c-6 0 -11 4 -11 10c0 3 56 231 60 235c3 3 5 4 10 4s12 -1 12 -11c0 0 -1 -3 -2 -7c-1 -6 -6 -30 -6 -54c0 -124 111 -146 175 -146c98 0 180 94 180 184c0 82 -55 97 -92 106l-107 28c-51 15 -104 61 -104 142c0 121 120 236 247 236 c65 0 117 -25 143 -72l48 57c12 14 13 15 18 15c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2C" d="M203 1c0 -117 -80 -194 -91 -194c-5 0 -10 4 -10 11c0 3 0 5 11 16c33 33 68 93 68 167c0 14 -2 15 -2 15s-2 -1 -5 -3c-10 -9 -23 -13 -35 -13c-33 0 -53 26 -53 53c0 28 20 53 53 53c39 0 64 -39 64 -105Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-30" d="M460 320c0 -79 -5 -157 -37 -226c-44 -95 -120 -116 -174 -116c-49 0 -122 20 -165 101c-41 76 -45 166 -45 241c0 80 5 158 37 227c41 93 114 119 174 119c42 0 124 -16 170 -112c35 -74 40 -154 40 -234zM377 332c0 63 0 139 -10 195c-19 99 -85 117 -118 117 c-25 0 -100 -9 -119 -128c-8 -54 -8 -120 -8 -184c0 -59 0 -151 11 -211c18 -96 77 -121 116 -121c45 0 102 30 117 125c11 64 11 132 11 207Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D436" d="M760 695l-63 -255c-5 -18 -5 -20 -18 -20c-4 0 -15 0 -15 10s3 11 3 51c0 116 -59 193 -161 193c-89 0 -183 -50 -244 -121c-100 -117 -121 -279 -121 -336c0 -156 106 -208 196 -208c52 0 115 17 184 73c69 58 92 129 101 158c2 8 7 10 13 10c0 0 12 0 12 -10 c0 -3 -17 -94 -110 -176c-53 -46 -129 -86 -216 -86c-153 0 -271 109 -271 274c0 232 225 453 448 453c111 0 157 -75 166 -89l70 77c11 11 12 12 15 12c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-34" d="M471 165h-100v-87c0 -36 2 -47 76 -47h21v-31c-41 3 -94 3 -136 3s-94 0 -135 -3v31h21c74 0 76 11 76 47v87h-266v31l307 469c8 12 11 12 20 12c16 0 16 -6 16 -26v-455h100v-31zM300 196v373l-244 -373h244Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-221A" d="M853 20c0 -5 -1 -6 -6 -17l-456 -944c-7 -15 -9 -19 -25 -19c-11 0 -13 1 -19 15l-198 435l-52 -39c-9 -8 -11 -8 -14 -8c-6 0 -10 4 -10 11c0 4 1 5 12 14l99 75c9 8 11 8 14 8c7 0 9 -6 13 -14l178 -392l423 876c6 12 9 19 21 19s20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-33" d="M457 171c0 -102 -91 -193 -213 -193c-109 0 -202 66 -202 157c0 44 32 58 56 58c29 0 56 -20 56 -56c0 -38 -31 -60 -66 -55c35 -59 110 -76 153 -76c44 0 113 29 113 165c0 98 -37 166 -119 166h-44c-17 0 -24 0 -24 11c0 10 7 11 15 12c7 0 31 2 39 3c25 1 59 4 89 52 c26 44 28 102 28 114c0 90 -55 112 -96 112c-36 0 -102 -13 -133 -62c15 0 62 0 62 -50c0 -29 -20 -51 -51 -51c-29 0 -51 19 -51 52c0 76 76 136 177 136c96 0 184 -56 184 -138c0 -79 -58 -149 -140 -176c104 -21 167 -99 167 -181Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE4-28" d="M539 -632c0 -8 -6 -14 -14 -14c-3 0 -6 1 -9 2c-175 132 -337 475 -337 776v236c0 301 162 644 337 776c3 1 6 2 9 2c8 0 14 -6 14 -14c0 -5 -2 -9 -5 -12c-167 -125 -283 -466 -283 -752v-236c0 -286 116 -627 283 -752c3 -3 5 -7 5 -12Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE4-29" d="M418 132c0 -301 -162 -644 -337 -776c-3 -1 -6 -2 -9 -2c-8 0 -14 6 -14 14c0 5 2 9 5 12c167 125 283 466 283 752v236c0 286 -116 627 -283 752c-3 3 -5 7 -5 12c0 8 6 14 14 14c3 0 6 -1 9 -2c175 -132 337 -475 337 -776v-236Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D438" d="M763 653l-20 -173c-2 -19 -3 -25 -14 -25c-9 0 -12 7 -12 12s1 12 1 18c4 27 4 29 4 53c0 82 -30 111 -152 111h-141c-44 0 -45 -4 -54 -39l-60 -241h94c92 0 110 23 131 99c3 12 5 18 14 18c7 0 12 -5 12 -11l-57 -234c-4 -15 -7 -20 -15 -20c-9 0 -13 6 -13 11 c0 3 1 6 3 11c7 30 7 42 7 49c0 25 0 46 -85 46h-99l-68 -273c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h146c171 0 208 67 273 215c2 6 4 12 13 12c12 0 12 -11 12 -11s-3 -9 -5 -14l-92 -216c-7 -16 -8 -17 -31 -17h-519c-19 0 -28 0 -28 12 c0 19 11 19 28 19c79 0 81 8 91 47l132 529c5 18 5 20 5 24c0 18 -28 18 -65 18c-19 0 -28 0 -28 11c0 20 10 20 30 20h505c25 0 30 0 27 -27Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<g transform="translate(167,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,-27)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D446" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="927" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1988" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="2382" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="2887" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="3337" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="3842" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="4568" y="0"></use>
|
||||
<g transform="translate(5349,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="1018" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="6804" y="0"></use>
|
||||
<g transform="translate(7865,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE4-28"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="602" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="1107" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="1556" y="0"></use>
|
||||
<g transform="translate(2061,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="1980" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,581)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-221A" x="0" y="776"></use>
|
||||
<rect stroke="none" width="357" height="42" x="592" y="542"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="838" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2212" x="1343" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="2126" y="0"></use>
|
||||
</g>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="1147" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE4-29" x="4282" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="13248" y="0"></use>
|
||||
<g transform="translate(14029,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="1018" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="15484" y="0"></use>
|
||||
<g transform="translate(16545,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE4-28"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="602" y="0"></use>
|
||||
<g transform="translate(1107,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="1980" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,581)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-221A" x="0" y="776"></use>
|
||||
<rect stroke="none" width="357" height="42" x="592" y="542"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="838" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2212" x="1343" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="2126" y="0"></use>
|
||||
</g>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="1147" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="3327" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="3777" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE4-29" x="4282" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="21928" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D438" x="22709" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="23755" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="24816" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="25210" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="25715" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="26165" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="26670" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.7 KiB |
214
images/latex/ecc5f81ecfb31640da20a1d175e60a9e6eba0d47.svg
Normal file
@@ -0,0 +1,214 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="36.667ex" height="29.5ex" style="vertical-align: -14.167ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -6617.4 15760.1 12734.8" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3C6" d="M590 304c40 -158 -75 -315 -241 -315c-17 0 -25 1 -34 2c9 -142 12 -175 11 -183c-4 -23 -26 -26 -31 -26c-10 0 -30 6 -36 28c-1 5 0 7 0 20l12 168c-114 25 -198 98 -221 192c-24 96 16 241 44 241c10 0 14 -6 15 -10c0 0 1 -4 -5 -13c-43 -69 -38 -179 -31 -207 c18 -72 88 -128 201 -148c11 195 23 389 168 389c75 0 129 -60 148 -138zM568 282c-12 48 -53 102 -122 102c-89 0 -143 -96 -142 -224l7 -108c1 -3 2 -4 14 -4c8 -1 10 -1 18 -1c154 0 253 122 225 235Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44F" d="M415 282c0 -144 -123 -293 -241 -293c-74 0 -127 62 -127 157c0 35 4 51 16 101l82 326c5 21 14 55 14 62c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-74 -301c30 31 71 60 117 60c80 0 133 -69 133 -160zM343 326 c0 64 -27 94 -63 94c-26 0 -71 -15 -120 -80c-9 -11 -9 -13 -15 -35l-22 -92c-16 -63 -16 -82 -16 -101c0 -74 33 -101 67 -101c39 0 85 36 118 103c18 38 51 153 51 212Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-22C5" d="M192 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D450" d="M430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2E" d="M192 53c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<g transform="translate(167,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="198" y="5803"></use>
|
||||
<g transform="translate(0,3710)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="449" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,756)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="449" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2198)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="449" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="198" y="-5069"></use>
|
||||
</g>
|
||||
<g transform="translate(722,0)">
|
||||
<g transform="translate(0,5803)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="1338" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="1812" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="2162" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="2767" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="3161" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="3807" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="4423" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="5429" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="6085" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="6590" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="7028" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="7518" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="7992" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="8386" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="9032" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,3710)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="1338" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="1812" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="2162" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="2767" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="3161" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="3807" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="4423" y="0"></use>
|
||||
<g transform="translate(5206,0)">
|
||||
<g transform="translate(342,0)">
|
||||
<rect stroke="none" width="5471" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,777)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="783" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="1510" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="2515" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="2953" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="3443" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="3917" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="4311" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="4957" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(1304,-778)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="474" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="824" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1429" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="1823" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2469" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="11362" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="11867" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="12305" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="12795" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="13269" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="13663" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="14309" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,756)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="1338" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="1812" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="2162" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="2767" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="3161" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="3807" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="4423" y="0"></use>
|
||||
<g transform="translate(5206,0)">
|
||||
<g transform="translate(342,0)">
|
||||
<rect stroke="none" width="8259" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,777)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="783" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="1221" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="1711" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="2185" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="2579" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="3225" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="3841" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="4846" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="5284" y="0"></use>
|
||||
<g transform="translate(5774,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="670" y="513"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="6705" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="7099" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="7745" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(2698,-778)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="474" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="824" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1429" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="1823" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2469" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(0,-2198)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
|
||||
<g transform="translate(1060,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="12024" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,777)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="474" y="0"></use>
|
||||
<g transform="translate(824,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="855" y="513"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1886" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="2280" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2926" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="3542" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="4547" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="4985" y="0"></use>
|
||||
<g transform="translate(5475,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="670" y="513"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="6406" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="6800" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="7446" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="8062" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="9068" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="9506" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="9996" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="10470" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="10864" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="11510" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(4580,-778)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="474" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="824" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1429" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="1823" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2469" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(0,-5069)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
|
||||
<g transform="translate(1060,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="4688" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,777)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="727" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="1732" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="2170" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="2660" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="3134" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="3528" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="4174" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(912,-778)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="474" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="824" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1429" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="1823" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2469" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 16 KiB |
25
images/latex/f42dfae5e080278d4d9c88e676d31dff74860cf5.svg
Normal file
@@ -0,0 +1,25 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="16.167ex" height="2.5ex" style="vertical-align: -0.667ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -771.9 6931 1043.9" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D442" d="M740 436c0 -239 -223 -458 -435 -458c-144 0 -256 101 -256 267c0 233 220 460 436 460c149 0 255 -108 255 -269zM651 475c0 149 -90 205 -172 205c-79 0 -177 -52 -246 -156c-77 -117 -91 -263 -91 -307c0 -132 70 -213 169 -213c84 0 166 59 214 120 c99 123 126 279 126 351Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D461" d="M330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D435" d="M756 545c0 -95 -105 -169 -209 -188c97 -11 155 -69 155 -141c0 -98 -118 -216 -276 -216h-357c-18 0 -27 0 -27 11c0 20 10 20 27 20c79 0 81 8 91 47l134 537c3 12 4 15 4 19c0 13 -9 14 -27 16c-17 2 -38 2 -38 2c-19 0 -28 0 -28 11c0 20 10 20 29 20h336 c120 0 186 -64 186 -138zM665 549c0 44 -21 103 -109 103h-129c-43 0 -45 -3 -54 -38l-62 -248h146c122 0 208 95 208 183zM609 227c0 43 -19 117 -115 117h-189l-69 -279c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h136c118 0 207 97 207 196Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D451" d="M516 683l-144 -578c-4 -17 -6 -24 -6 -48c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293 c45 0 74 -27 92 -64l60 237l3 20c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 13 6 18 14 19c17 2 112 11 127 11c13 0 13 -11 13 -11zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37 l50 196c1 5 3 11 3 17Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D442" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="768" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1162" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="1528" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="2199" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="3260" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="4024" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="4418" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="4784" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="5400" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D451" x="6406" y="0"></use>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.9 KiB |
321
images/latex/f97514c85d33669d0f08f949122c5b77e8b695a3.svg
Normal file
@@ -0,0 +1,321 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="81.5ex" height="15.333ex" style="vertical-align: -7.167ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -3547.2 35114.3 6594.3" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D438" d="M763 653l-20 -173c-2 -19 -3 -25 -14 -25c-9 0 -12 7 -12 12s1 12 1 18c4 27 4 29 4 53c0 82 -30 111 -152 111h-141c-44 0 -45 -4 -54 -39l-60 -241h94c92 0 110 23 131 99c3 12 5 18 14 18c7 0 12 -5 12 -11l-57 -234c-4 -15 -7 -20 -15 -20c-9 0 -13 6 -13 11 c0 3 1 6 3 11c7 30 7 42 7 49c0 25 0 46 -85 46h-99l-68 -273c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h146c171 0 208 67 273 215c2 6 4 12 13 12c12 0 12 -11 12 -11s-3 -9 -5 -14l-92 -216c-7 -16 -8 -17 -31 -17h-519c-19 0 -28 0 -28 12 c0 19 11 19 28 19c79 0 81 8 91 47l132 529c5 18 5 20 5 24c0 18 -28 18 -65 18c-19 0 -28 0 -28 11c0 20 10 20 30 20h505c25 0 30 0 27 -27Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2032" d="M251 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D465" d="M527 376c0 -40 -32 -58 -54 -58c-27 0 -38 19 -38 35c0 24 20 49 48 54c-21 13 -45 13 -50 13c-70 0 -93 -92 -99 -118l-34 -137c-11 -44 -17 -66 -17 -88c0 -34 16 -66 55 -66c32 0 100 24 133 131c2 7 4 11 13 11c3 0 12 0 12 -10c0 -25 -57 -154 -160 -154 c-60 0 -96 39 -108 76c-3 -6 -39 -76 -105 -76c-44 0 -94 20 -94 66c0 32 25 58 55 58c15 0 37 -8 37 -35c0 -28 -22 -49 -47 -54c21 -13 44 -13 50 -13c44 0 79 42 95 104c37 140 54 207 54 238c0 58 -35 67 -54 67c-34 0 -100 -25 -134 -131c-2 -9 -5 -11 -13 -11 c0 0 -12 0 -12 10c0 25 57 154 161 154c29 0 83 -10 108 -76c12 23 47 76 105 76c34 0 93 -14 93 -66Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3C6" d="M590 304c40 -158 -75 -315 -241 -315c-17 0 -25 1 -34 2c9 -142 12 -175 11 -183c-4 -23 -26 -26 -31 -26c-10 0 -30 6 -36 28c-1 5 0 7 0 20l12 168c-114 25 -198 98 -221 192c-24 96 16 241 44 241c10 0 14 -6 15 -10c0 0 1 -4 -5 -13c-43 -69 -38 -179 -31 -207 c18 -72 88 -128 201 -148c11 195 23 389 168 389c75 0 129 -60 148 -138zM568 282c-12 48 -53 102 -122 102c-89 0 -143 -96 -142 -224l7 -108c1 -3 2 -4 14 -4c8 -1 10 -1 18 -1c154 0 253 122 225 235Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2C" d="M203 1c0 -117 -80 -194 -91 -194c-5 0 -10 4 -10 11c0 3 0 5 11 16c33 33 68 93 68 167c0 14 -2 15 -2 15s-2 -1 -5 -3c-10 -9 -23 -13 -35 -13c-33 0 -53 26 -53 53c0 28 20 53 53 53c39 0 64 -39 64 -105Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D466" d="M490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D450" d="M430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-7C" d="M159 -230c0 -11 -9 -20 -20 -20s-20 9 -20 20v960c0 11 9 20 20 20s20 -9 20 -20v-960Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE1-221A" d="M1020 830c0 -3 0 -5 -7 -18l-547 -1142c-10 -19 -11 -20 -42 -20l-228 531l-71 -54l-15 16l139 107l213 -496l516 1076c5 11 9 20 22 20c12 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-7B" d="M425 -238c0 -7 -5 -12 -12 -12c-105 0 -196 52 -196 125v250c0 58 -55 113 -130 113c-7 0 -12 5 -12 12s5 12 12 12c75 0 130 55 130 113v250c0 73 91 125 196 125c7 0 12 -5 12 -12s-5 -12 -12 -12c-75 0 -130 -49 -130 -101v-250c0 -58 -48 -104 -115 -125 c67 -21 115 -67 115 -125v-250c0 -52 55 -101 130 -101c7 0 12 -5 12 -12Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D436" d="M760 695l-63 -255c-5 -18 -5 -20 -18 -20c-4 0 -15 0 -15 10s3 11 3 51c0 116 -59 193 -161 193c-89 0 -183 -50 -244 -121c-100 -117 -121 -279 -121 -336c0 -156 106 -208 196 -208c52 0 115 17 184 73c69 58 92 129 101 158c2 8 7 10 13 10c0 0 12 0 12 -10 c0 -3 -17 -94 -110 -176c-53 -46 -129 -86 -216 -86c-153 0 -271 109 -271 274c0 232 225 453 448 453c111 0 157 -75 166 -89l70 77c11 11 12 12 15 12c9 0 11 -7 11 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-22C5" d="M192 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-34" d="M471 165h-100v-87c0 -36 2 -47 76 -47h21v-31c-41 3 -94 3 -136 3s-94 0 -135 -3v31h21c74 0 76 11 76 47v87h-266v31l307 469c8 12 11 12 20 12c16 0 16 -6 16 -26v-455h100v-31zM300 196v373l-244 -373h244Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-33" d="M457 171c0 -102 -91 -193 -213 -193c-109 0 -202 66 -202 157c0 44 32 58 56 58c29 0 56 -20 56 -56c0 -38 -31 -60 -66 -55c35 -59 110 -76 153 -76c44 0 113 29 113 165c0 98 -37 166 -119 166h-44c-17 0 -24 0 -24 11c0 10 7 11 15 12c7 0 31 2 39 3c25 1 59 4 89 52 c26 44 28 102 28 114c0 90 -55 112 -96 112c-36 0 -102 -13 -133 -62c15 0 62 0 62 -50c0 -29 -20 -51 -51 -51c-29 0 -51 19 -51 52c0 76 76 136 177 136c96 0 184 -56 184 -138c0 -79 -58 -149 -140 -176c104 -21 167 -99 167 -181Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D461" d="M330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE3-28" d="M461 -459c0 -7 -6 -13 -13 -13c-3 0 -6 1 -8 3c-147 111 -284 390 -284 633v172c0 243 137 522 284 633c2 2 5 3 8 3c7 0 13 -6 13 -13c0 -4 -2 -8 -5 -10c-140 -105 -236 -383 -236 -613v-172c0 -230 96 -508 236 -613c3 -2 5 -6 5 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE3-29" d="M367 164c0 -243 -137 -522 -284 -633c-3 -2 -5 -3 -8 -3c-7 0 -13 6 -13 13c0 4 2 8 5 10c140 105 236 383 236 613v172c0 230 -96 508 -236 613c-3 2 -5 6 -5 10c0 7 6 13 13 13c3 0 5 -1 8 -3c147 -111 284 -390 284 -633v-172Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A7" d="M755 724c0 -11 -7 -21 -17 -24c-138 -51 -236 -202 -236 -325v-375h-102v375c0 151 151 312 320 373c3 1 6 2 9 2c14 0 26 -12 26 -26Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A9" d="M755 26c0 -14 -12 -26 -26 -26c-3 0 -6 1 -9 2c-169 61 -320 222 -320 373v375h102v-375c0 -123 98 -274 236 -325c10 -3 17 -13 17 -24Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A8" d="M502 1500v-375c0 -147 -120 -300 -265 -375c145 -75 265 -228 265 -375v-375h-102v375c0 137 -97 300 -236 351c-10 3 -17 13 -17 24s7 21 17 24c139 51 236 214 236 351v375h102Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE7-E003" d="M502 0h-102v748h102v-748Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<g transform="translate(167,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,2602)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D438" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="1096" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="1050" y="-350"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1528" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="2589" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="3372" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="3846" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="4196" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="4801" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="5195" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="5841" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="6567" y="0"></use>
|
||||
<g transform="translate(7349,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D438" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="1096" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="1050" y="-350"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="8820" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="9880" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="10318" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="10808" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="11282" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="11676" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="12322" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="13048" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="13830" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="14113" y="0"></use>
|
||||
<g transform="translate(14396,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D438" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="1096" y="513"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="15495" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="15778" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="16339" y="0"></use>
|
||||
<g transform="translate(17400,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE1-221A" x="0" y="10"></use>
|
||||
<rect stroke="none" width="9411" height="60" x="1005" y="810"></rect>
|
||||
<g transform="translate(1005,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="394" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="1177" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="1651" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="2001" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="2606" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="3000" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="3646" y="0"></use>
|
||||
<g transform="translate(4040,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="557" y="408"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="5113" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="6118" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="6556" y="0"></use>
|
||||
<g transform="translate(7046,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="670" y="408"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="7977" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="8371" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="9017" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="28094" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="29155" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="29992" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-865)">
|
||||
<g transform="translate(0,2668)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A7" x="0" y="-760"></use>
|
||||
<g transform="translate(0,-1695.41794213626) scale(1,1.286831058227256)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE7-E003"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A8" x="0" y="-3169"></use>
|
||||
<g transform="translate(0,-4103.704194854792) scale(1,1.286831058227256)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE7-E003"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A9" x="0" y="-4827"></use>
|
||||
</g>
|
||||
<g transform="translate(1074,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,1335)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="1018" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D465" x="1177" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="2031" y="0"></use>
|
||||
<g transform="translate(3092,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D438" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="1050" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="4565" y="0"></use>
|
||||
<g transform="translate(5571,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<g transform="translate(720,-150)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="505" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="7320" y="0"></use>
|
||||
<g transform="translate(7603,0)">
|
||||
<g transform="translate(342,0)">
|
||||
<rect stroke="none" width="1720" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(396,631)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D438" x="0" y="0"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-2032" x="955" y="463"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="915" y="-305"></use>
|
||||
</g>
|
||||
<g transform="translate(60,-646)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-7C" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-7C" x="283" y="0"></use>
|
||||
<g transform="translate(400,0)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D438" x="0" y="0"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-2032" x="955" y="463"></use>
|
||||
</g>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-7C" x="1698" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-7C" x="1981" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="10064" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="11125" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="11563" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="12053" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="12527" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="12921" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="13567" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="14183" y="0"></use>
|
||||
<g transform="translate(15188,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<g transform="translate(720,-150)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="505" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="16937" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="17443" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="17917" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="18267" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="18872" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="19266" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="19912" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="20583" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="21644" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="22082" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="22572" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="23046" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="23440" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="24086" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="24702" y="0"></use>
|
||||
<g transform="translate(25485,0)">
|
||||
<g transform="translate(342,0)">
|
||||
<rect stroke="none" width="477" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="84" y="638"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="84" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="26425" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="26791" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="27325" y="0"></use>
|
||||
<g transform="translate(28096,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-28"></use>
|
||||
<g transform="translate(528,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="576" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C6" x="84" y="856"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="155" y="-609"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-29" x="1344" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="30191" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="30697" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="31171" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="31521" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="32126" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="32520" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="33166" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-1339)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="1018" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D466" x="1177" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1949" y="0"></use>
|
||||
<g transform="translate(3010,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D438" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="1050" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="4425" y="0"></use>
|
||||
<g transform="translate(5431,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<g transform="translate(720,-150)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="505" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="7180" y="0"></use>
|
||||
<g transform="translate(7463,0)">
|
||||
<g transform="translate(342,0)">
|
||||
<rect stroke="none" width="1720" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(420,742)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D438" x="0" y="0"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-2032" x="955" y="463"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="915" y="-305"></use>
|
||||
</g>
|
||||
<g transform="translate(60,-646)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-7C" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-7C" x="283" y="0"></use>
|
||||
<g transform="translate(400,0)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D438" x="0" y="0"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-2032" x="955" y="463"></use>
|
||||
</g>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-7C" x="1698" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-7C" x="1981" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="9924" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="10985" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="11459" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="11809" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="12414" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="12808" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="13454" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="14070" y="0"></use>
|
||||
<g transform="translate(15075,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<g transform="translate(720,-150)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="505" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="16824" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="17330" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="17768" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="18258" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="18732" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="19126" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="19772" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="20443" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="21504" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="21978" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="22328" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="22933" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="23327" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="23973" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="24589" y="0"></use>
|
||||
<g transform="translate(25372,0)">
|
||||
<g transform="translate(342,0)">
|
||||
<rect stroke="none" width="477" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="84" y="638"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="84" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="26312" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="26678" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="27212" y="0"></use>
|
||||
<g transform="translate(27983,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-28"></use>
|
||||
<g transform="translate(528,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="576" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C6" x="84" y="856"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="155" y="-609"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE3-29" x="1344" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="30078" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="30584" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="31022" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="31512" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="31986" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="32380" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="33026" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 27 KiB |
253
images/latex/fd8fba88b596108794afc089566c5fd1e61c99e4.svg
Normal file
@@ -0,0 +1,253 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="61.5ex" height="21.167ex" style="vertical-align: -10ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -4822.8 26480 9145.7" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D451" d="M516 683l-144 -578c-4 -17 -6 -24 -6 -48c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293 c45 0 74 -27 92 -64l60 237l3 20c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 13 6 18 14 19c17 2 112 11 127 11c13 0 13 -11 13 -11zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37 l50 196c1 5 3 11 3 17Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D465" d="M527 376c0 -40 -32 -58 -54 -58c-27 0 -38 19 -38 35c0 24 20 49 48 54c-21 13 -45 13 -50 13c-70 0 -93 -92 -99 -118l-34 -137c-11 -44 -17 -66 -17 -88c0 -34 16 -66 55 -66c32 0 100 24 133 131c2 7 4 11 13 11c3 0 12 0 12 -10c0 -25 -57 -154 -160 -154 c-60 0 -96 39 -108 76c-3 -6 -39 -76 -105 -76c-44 0 -94 20 -94 66c0 32 25 58 55 58c15 0 37 -8 37 -35c0 -28 -22 -49 -47 -54c21 -13 44 -13 50 -13c44 0 79 42 95 104c37 140 54 207 54 238c0 58 -35 67 -54 67c-34 0 -100 -25 -134 -131c-2 -9 -5 -11 -13 -11 c0 0 -12 0 -12 10c0 25 57 154 161 154c29 0 83 -10 108 -76c12 23 47 76 105 76c34 0 93 -14 93 -66Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3C6" d="M590 304c40 -158 -75 -315 -241 -315c-17 0 -25 1 -34 2c9 -142 12 -175 11 -183c-4 -23 -26 -26 -31 -26c-10 0 -30 6 -36 28c-1 5 0 7 0 20l12 168c-114 25 -198 98 -221 192c-24 96 16 241 44 241c10 0 14 -6 15 -10c0 0 1 -4 -5 -13c-43 -69 -38 -179 -31 -207 c18 -72 88 -128 201 -148c11 195 23 389 168 389c75 0 129 -60 148 -138zM568 282c-12 48 -53 102 -122 102c-89 0 -143 -96 -142 -224l7 -108c1 -3 2 -4 14 -4c8 -1 10 -1 18 -1c154 0 253 122 225 235Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D447" d="M704 666c0 -3 -1 -13 -2 -17l-27 -174c-2 -15 -4 -23 -15 -23c-9 0 -12 7 -12 13c0 3 2 15 3 19c4 26 8 65 8 80c0 78 -45 82 -146 82c-21 0 -54 0 -63 -2c-12 -3 -16 -9 -23 -37l-133 -531c-4 -15 -4 -21 -4 -21c0 -16 8 -19 37 -22c26 -2 39 -2 64 -2c26 0 34 0 34 -11 c0 -20 -12 -20 -22 -20c-28 0 -58 2 -87 2l-83 1l-85 -1c-27 0 -55 -2 -82 -2c-6 0 -17 0 -17 12c0 19 6 19 42 19c107 0 110 11 119 48l134 534c1 3 4 15 4 21c0 8 0 12 -28 12h-39c-148 0 -174 -18 -228 -173c-6 -16 -7 -21 -17 -21c-7 0 -12 5 -12 11c0 0 5 16 6 18 l60 176c7 19 8 20 32 20h555c17 0 27 0 27 -11Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D443" d="M754 532c0 -112 -139 -216 -281 -216h-170l-62 -250c-1 -6 -3 -11 -3 -17c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -13 -20 -20 -20c-21 0 -43 2 -65 2l-64 1l-127 -3c-3 0 -15 0 -15 12c0 19 11 19 28 19c79 0 81 8 91 47l134 537c3 12 4 15 4 19 c0 11 -6 14 -22 16c-12 1 -30 2 -43 2c-20 0 -29 0 -29 12c0 19 11 19 30 19h324c131 0 197 -74 197 -151zM661 556c0 69 -53 96 -136 96h-96c-43 0 -45 -3 -54 -38l-68 -272h141c44 0 104 8 154 53c39 36 59 122 59 161Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-34" d="M471 165h-100v-87c0 -36 2 -47 76 -47h21v-31c-41 3 -94 3 -136 3s-94 0 -135 -3v31h21c74 0 76 11 76 47v87h-266v31l307 469c8 12 11 12 20 12c16 0 16 -6 16 -26v-455h100v-31zM300 196v373l-244 -373h244Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-33" d="M457 171c0 -102 -91 -193 -213 -193c-109 0 -202 66 -202 157c0 44 32 58 56 58c29 0 56 -20 56 -56c0 -38 -31 -60 -66 -55c35 -59 110 -76 153 -76c44 0 113 29 113 165c0 98 -37 166 -119 166h-44c-17 0 -24 0 -24 11c0 10 7 11 15 12c7 0 31 2 39 3c25 1 59 4 89 52 c26 44 28 102 28 114c0 90 -55 112 -96 112c-36 0 -102 -13 -133 -62c15 0 62 0 62 -50c0 -29 -20 -51 -51 -51c-29 0 -51 19 -51 52c0 76 76 136 177 136c96 0 184 -56 184 -138c0 -79 -58 -149 -140 -176c104 -21 167 -99 167 -181Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D450" d="M430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE4-28" d="M539 -632c0 -8 -6 -14 -14 -14c-3 0 -6 1 -9 2c-175 132 -337 475 -337 776v236c0 301 162 644 337 776c3 1 6 2 9 2c8 0 14 -6 14 -14c0 -5 -2 -9 -5 -12c-167 -125 -283 -466 -283 -752v-236c0 -286 116 -627 283 -752c3 -3 5 -7 5 -12Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE4-29" d="M418 132c0 -301 -162 -644 -337 -776c-3 -1 -6 -2 -9 -2c-8 0 -14 6 -14 14c0 5 2 9 5 12c167 125 283 466 283 752v236c0 286 -116 627 -283 752c-3 3 -5 7 -5 12c0 8 6 14 14 14c3 0 6 -1 9 -2c175 -132 337 -475 337 -776v-236Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2C" d="M203 1c0 -117 -80 -194 -91 -194c-5 0 -10 4 -10 11c0 3 0 5 11 16c33 33 68 93 68 167c0 14 -2 15 -2 15s-2 -1 -5 -3c-10 -9 -23 -13 -35 -13c-33 0 -53 26 -53 53c0 28 20 53 53 53c39 0 64 -39 64 -105Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D466" d="M490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D461" d="M330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-21D3" d="M576 147c0 -8 -4 -15 -11 -18c-53 -27 -100 -64 -139 -108c-47 -54 -88 -116 -107 -188c-2 -5 -7 -9 -13 -9s-11 4 -13 9c-19 72 -60 134 -107 188c-39 44 -86 81 -139 108c-7 3 -11 10 -11 18c0 11 9 20 20 20c3 0 6 -1 9 -2c46 -24 88 -54 124 -89v607c0 11 9 20 20 20 s20 -9 20 -20v-651c32 -40 58 -84 77 -132c19 48 45 92 77 132v651c0 11 9 20 20 20s20 -9 20 -20v-607c36 35 78 65 124 89c3 1 6 2 9 2c11 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE2-221A" d="M1020 1130c0 0 0 -5 -5 -20l-549 -1736c-8 -24 -9 -24 -42 -24l-230 802l-68 -80l-16 15l139 163l215 -750l513 1624c4 13 8 26 23 26c12 0 20 -9 20 -20Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-2E" d="M192 53c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSIZE4-221A" d="M1020 1730l-554 -2954c-5 -26 -11 -26 -42 -26l-231 1343l-68 -132s-14 12 -14 16c0 0 1 3 6 13l132 260l216 -1255h1l512 2725c3 17 6 30 22 30c12 0 20 -9 20 -20Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<g transform="translate(167,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,3456)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D451" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="742" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1033" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="1427" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2073" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(57,1087)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D451" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="742" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="975" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="1369" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2015" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(508,-2765)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D451" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="525" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="919" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="1565" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2456,0)">
|
||||
<g transform="translate(0,3456)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
|
||||
<g transform="translate(1338,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D447" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="832" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="2657" y="0"></use>
|
||||
<g transform="translate(3663,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="914" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="5095" y="0"></use>
|
||||
<g transform="translate(5878,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="625" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="60" y="676"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="60" y="-707"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="7021" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="7415" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="8142" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="9148" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="9586" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="10076" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="10550" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="10944" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="11590" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="11984" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="12600" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="13605" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="14043" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="14533" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="15007" y="0"></use>
|
||||
<g transform="translate(15401,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="766" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="60" y="747"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="130" y="-696"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="16407" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="17079" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="18140" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="18645" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="19119" y="0"></use>
|
||||
<g transform="translate(19469,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="855" y="583"></use>
|
||||
</g>
|
||||
<g transform="translate(20697,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE4-28"></use>
|
||||
<g transform="translate(602,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="766" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="60" y="747"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="130" y="-707"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE4-29" x="1608" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="23406" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,1087)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
|
||||
<g transform="translate(1338,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D447" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="832" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="2599" y="0"></use>
|
||||
<g transform="translate(3605,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="914" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="4979" y="0"></use>
|
||||
<g transform="translate(5762,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="625" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="60" y="676"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="60" y="-707"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(6905,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE4-28"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="602" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1107" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="1473" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="2007" y="0"></use>
|
||||
<g transform="translate(2778,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE4-28"></use>
|
||||
<g transform="translate(602,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="766" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="60" y="747"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="130" y="-696"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE4-29" x="1608" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="5210" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="6216" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="6690" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="7040" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="7645" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="8039" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="8685" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE4-29" x="9079" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="16808" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="17814" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="18288" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="18638" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="19243" y="0"></use>
|
||||
<g transform="translate(19637,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="766" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="60" y="747"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="130" y="-696"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="20643" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="21369" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-729)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-21D3" x="277" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2765)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
|
||||
<g transform="translate(1338,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE2-221A" x="0" y="-13"></use>
|
||||
<rect stroke="none" width="3242" height="60" x="1005" y="1087"></rect>
|
||||
<g transform="translate(1005,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D451" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="742" y="497"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="742" y="-220"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="1255" y="0"></use>
|
||||
<g transform="translate(2260,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D451" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="742" y="497"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="742" y="-220"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="5863" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="7256" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="7706" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="8155" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="9215" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="10276" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="10781" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="11255" y="0"></use>
|
||||
<g transform="translate(11605,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="855" y="583"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="12667" y="0"></use>
|
||||
<g transform="translate(13061,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="766" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C6" x="60" y="747"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="130" y="-696"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="14067" y="0"></use>
|
||||
<g transform="translate(14461,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE4-221A" x="0" y="-285"></use>
|
||||
<rect stroke="none" width="3823" height="60" x="1005" y="1415"></rect>
|
||||
<g transform="translate(1005,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="3583" height="60" x="0" y="220"></rect>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="1539" y="676"></use>
|
||||
<g transform="translate(60,-945)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="438" y="0"></use>
|
||||
<g transform="translate(928,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="670" y="408"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1859" y="0"></use>
|
||||
<g transform="translate(2253,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="576" height="60" x="0" y="220"></rect>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C6" x="84" y="856"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="155" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="3069" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 22 KiB |
17
lib/p-loader.js
Normal file
@@ -0,0 +1,17 @@
|
||||
var blockLoader = require("block-loader");
|
||||
|
||||
var options = {
|
||||
start: "<p>",
|
||||
end: "</p>",
|
||||
|
||||
/**
|
||||
* JSX curly brace replacement.
|
||||
*/
|
||||
process: function fixPreBlocks(p) {
|
||||
var replaced = p.replace(options.start,'').replace(options.end,'');
|
||||
if(replaced.indexOf("\\[")>-1) return p;
|
||||
return options.start + replaced.replace(/([{}])/g,"{'$1'}") + options.end;
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = blockLoader(options);
|
19
lib/textarea-loader.js
Normal file
@@ -0,0 +1,19 @@
|
||||
var blockLoader = require("block-loader");
|
||||
|
||||
var options = {
|
||||
start: "<textarea",
|
||||
end: "</textarea>",
|
||||
|
||||
/**
|
||||
* We want to be able to stick arbitrary text in a <textarea>
|
||||
*/
|
||||
process: function fixPreBlocks(textarea) {
|
||||
var fpos = textarea.indexOf('>');
|
||||
var start = textarea.substring(0,fpos+1);
|
||||
var replaced = textarea.replace(start,'').replace(options.end,'').replace(/"/g,'\\"').replace(/\n/g,'\\n');
|
||||
var rewritten = start.substring(0,fpos) + ' defaultValue={"' + replaced +'"}/>';
|
||||
return rewritten;
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = blockLoader(options);
|
@@ -1,12 +1,26 @@
|
||||
var webpack = require('webpack');
|
||||
|
||||
// Hot Reload server when we're in dev mode,
|
||||
// otherwise build it the normal way.
|
||||
// Bundle entry point
|
||||
var entry = ['./components/App.jsx'];
|
||||
if(!process.argv.indexOf("--prod")) {
|
||||
|
||||
// Necessary webpack loaders for converting our content:
|
||||
var webpackLoaders = [
|
||||
'babel-loader',
|
||||
__dirname + '/lib/latex-loader',
|
||||
__dirname + '/lib/pre-loader',
|
||||
__dirname + '/lib/p-loader'
|
||||
];
|
||||
|
||||
// Dev mode: make certain concessions to speed up dev work:
|
||||
if(process.argv.indexOf("--prod") === -1) {
|
||||
// use the webpack hot Reload server:
|
||||
entry.push('webpack/hot/dev-server');
|
||||
|
||||
// allow textareas in dev mode:
|
||||
webpackLoaders.push(__dirname + '/lib/textarea-loader');
|
||||
}
|
||||
|
||||
// And the final config that webpack will read in.
|
||||
module.exports = {
|
||||
entry: entry,
|
||||
output: {
|
||||
@@ -20,11 +34,7 @@ module.exports = {
|
||||
{
|
||||
test: /.jsx?$/,
|
||||
include: /components/,
|
||||
loaders: [
|
||||
'babel-loader',
|
||||
__dirname + '/lib/latex-loader',
|
||||
__dirname + '/lib/pre-loader'
|
||||
]
|
||||
loaders: webpackLoaders
|
||||
}
|
||||
]
|
||||
},
|
||||
|