catmull
@@ -343,6 +343,28 @@ var Graphic = React.createClass({
|
||||
}
|
||||
},
|
||||
|
||||
drawGrid: function(xcount, ycount, offset) {
|
||||
var w = this.defaultWidth,
|
||||
h = this.defaultHeight,
|
||||
xstep = w/xcount,
|
||||
ox = xstep/2,
|
||||
ystep = h/ycount,
|
||||
oy = ystep/2,
|
||||
x, xv, y, yv, p1, p2;
|
||||
for (x=0; x<xcount; x++) {
|
||||
xv = ox + (x*xstep);
|
||||
p1 = {x:xv, y:0};
|
||||
p2 = {x:xv, y:h};
|
||||
this.drawLine(p1, p2, offset);
|
||||
}
|
||||
for (y=0; y<ycount; y++) {
|
||||
yv = oy + (y*ystep);
|
||||
p1 = {x:0, y:yv};
|
||||
p2 = {x:w, y:yv};
|
||||
this.drawLine(p1, p2, offset);
|
||||
}
|
||||
},
|
||||
|
||||
drawHull: function(curve, t, offset) {
|
||||
var hull = typeof curve === "array" ? curve : curve.hull(t);
|
||||
if(hull.length === 6) {
|
||||
|
@@ -7,7 +7,7 @@ var abs = Math.abs;
|
||||
var ABC = React.createClass({
|
||||
getDefaultProps: function() {
|
||||
return {
|
||||
title: "The 'ABC' curve identity"
|
||||
title: "The projection identity"
|
||||
};
|
||||
},
|
||||
|
||||
@@ -69,7 +69,7 @@ var ABC = React.createClass({
|
||||
|
||||
api.setFill("black");
|
||||
api.text("A", {x:10 + A.x, y: A.y});
|
||||
api.text("B", {x:10 + B.x, y: B.y});
|
||||
api.text("B (t = " + api.utils.round(api.t,2) + ")", {x:10 + B.x, y: B.y});
|
||||
api.text("C", {x:10 + C.x, y: C.y});
|
||||
|
||||
var d1 = utils.dist(A, B);
|
||||
@@ -80,6 +80,59 @@ var ABC = React.createClass({
|
||||
}
|
||||
},
|
||||
|
||||
setCT: function(evt,api) {
|
||||
api.t = evt.offsetX / api.getPanelWidth();
|
||||
},
|
||||
|
||||
drawCTgraph: function(api) {
|
||||
api.reset();
|
||||
api.setColor("black");
|
||||
var w = api.getPanelWidth();
|
||||
var h = api.getPanelHeight();
|
||||
var pad = 20;
|
||||
var fwh = w - 2*pad;
|
||||
api.drawAxes(pad, "t",0,1, "u",0,1);
|
||||
api.setColor("blue");
|
||||
var uPoint = function(t) {
|
||||
var value = api.u(t),
|
||||
res = { x: pad + t*fwh, y: pad + value*fwh };
|
||||
return res;
|
||||
}
|
||||
api.drawFunction(uPoint);
|
||||
if (api.t) {
|
||||
var v = api.u(api.t),
|
||||
v1 = api.utils.round(v,3),
|
||||
v2 = api.utils.round(1-v,3),
|
||||
up = uPoint(api.t);
|
||||
api.drawLine({x:up.x,y:pad}, up);
|
||||
api.drawLine({x:pad,y:up.y}, up);
|
||||
api.drawCircle(up,3);
|
||||
api.setFill("blue");
|
||||
api.text(" t = " + api.utils.round(api.t,3), {x:up.x+10, y:up.y-7});
|
||||
api.text("u(t) = " + api.utils.round(v,3), {x:up.x+10, y:up.y+7});
|
||||
api.setFill("black");
|
||||
api.text("C = "+v1+" * start + "+v2+" * end", {x:w/2 - pad, y:pad+fwh});
|
||||
}
|
||||
},
|
||||
|
||||
drawQCT: function(api) {
|
||||
api.u = api.u || function(t) {
|
||||
var top = (t-1) * (t-1),
|
||||
bottom = 2*t*t - 2*t + 1;
|
||||
return top/bottom;
|
||||
};
|
||||
this.drawCTgraph(api);
|
||||
},
|
||||
|
||||
drawCCT: function(api) {
|
||||
api.u = api.u || function(t) {
|
||||
var top = (1-t) * (1-t) * (1-t),
|
||||
bottom = t*t*t + top;
|
||||
return top/bottom;
|
||||
};
|
||||
this.drawCTgraph(api);
|
||||
},
|
||||
|
||||
render: function() {
|
||||
return (
|
||||
<section>
|
||||
@@ -92,16 +145,15 @@ var ABC = React.createClass({
|
||||
|
||||
<p>How does that work? Succinctly: we run de Casteljau's algorithm in reverse!</p>
|
||||
|
||||
<p>Let's start out with a pre-existing curve, defined by <i>start</i>, two control points, and <i>end</i>. We can
|
||||
mould this curve by picking a point somewhere on the curve, at some <i>t</i> value, and the moving it to a new
|
||||
location and reconstructing the curve that goes through <i>start</i>, our new point with the original tangent,
|
||||
and <i>end</i>. In order to see how and why we can do this, let's look at some identity information for Bézier
|
||||
curves. There's actually a hidden goldmine of identities that we can exploit when doing Bézier operations, and
|
||||
this will only scratch the surface. But, in a good way!</p>
|
||||
<p>In order to run de Casteljau's algorithm in reverse, we need a few basic things: a start and end point, a point
|
||||
on the curve that want to be moving around, which has an associated <i>t</i> value, and a point we've not explicitly
|
||||
talked about before, and as far as I know has no explicit name, but lives one iteration higher in the de Casteljau
|
||||
process then our on-curve point does. I like to call it "A" for reasons that will become obvious.</p>
|
||||
|
||||
<p>In the following graphic, click anywhere on the curves to see the identity information that we'll
|
||||
be using to run de Casteljau in reverse (you can manipulate the curve even after picking a point.
|
||||
Note the "ratio" value when you do so: does it change?):</p>
|
||||
<p>So let's use graphics instead of text to see where this "A" is, because text only gets us so far: in the
|
||||
following graphic, click anywhere on the curves to see the identity information that we'll be using to run
|
||||
de Casteljau in reverse (you can manipulate the curve even after picking a point. Note the "ratio" value
|
||||
when you do so: does it change?):</p>
|
||||
|
||||
<div className="figure">
|
||||
<Graphic inline={true} preset="abc" title="Projections in a quadratic Bézier curve"
|
||||
@@ -110,52 +162,81 @@ var ABC = React.createClass({
|
||||
setup={this.setupCubic} draw={this.draw} onClick={this.onClick} />
|
||||
</div>
|
||||
|
||||
<p>So, what exactly do we see in these graphics? First off, there's the three points <i>A</i>, <i>B</i> and <i>C</i>.</p>
|
||||
<p>Clicking anywhere on the curves shows us three things:</p>
|
||||
|
||||
<p>Point <i>B</i> is our "on curve" point, A is the first "strut" point when running de Casteljau's
|
||||
algorithm in reverse; for quadratic curves, this happens to also be the curve's control point. For cubic
|
||||
curves, it's the "top of the triangle" for the struts that lead to point <i>B</i>. Point <i>C</i>, finally,
|
||||
is the intersection of the line that goes through <i>A</i> and <i>B</i> and the baseline,
|
||||
between our start and end points.</p>
|
||||
<ol>
|
||||
<li>our on-curve point; let's call that <b>B</b>,</li>
|
||||
<li>a point at the tip of B's "hat", on de Casteljau step up; let's call that <b>A</b>, and</li>
|
||||
<li>a point that we get by projecting B onto the start--end baseline; let's call that <b>C</b>.</li>
|
||||
</ol>
|
||||
|
||||
<p>There is some important identity information here: as long as we don't pick a new <i>t</i> coordinate,
|
||||
the location of point <i>C</i> on the line <i>start-end</i> represents a fixed ratio distance. We can drag
|
||||
around the control points as much as we like, that point won't move at all, and if we can drag around
|
||||
the start or end point, C will stay at the same ratio-value. For instance, if it was located midway between
|
||||
start and end, it'll stay midway between start and end, even if the line segment between start and end
|
||||
becomes longer or shorter.</p>
|
||||
<p>These three values ABC hide an important identity formula for quadratic and cubic Bézier curves:
|
||||
for any point on the curve with some <i>t</i> value, the ratio distance of C along baseline is fixed:
|
||||
if some <i>t</i> value sets up a C that is 20% away from the start and 80% away from the end, then it
|
||||
doesn't matter where the start, end, or control points are: for that <i>t</i> value, C will <em>always</em> lie
|
||||
at 20% from the start and 80% from the end point. Go ahead, pick an on-curve point in either graphic
|
||||
and then move all the other points around: if you only move the control points, start and end won't move,
|
||||
and so neither will C, and if you move either start or end point, C will move but its relative position
|
||||
will not change. The following function stays true:</p>
|
||||
|
||||
<p>We can also see that the distances for the lines <i>d1 = A-B</i> and <i>d2 = B-C</i> may vary, but the
|
||||
ratio between them, <i>d1/d2</i>, is a constant value. We can drag any of the start, end, or control points
|
||||
around as much as we like, but that value also stays the same.</p>
|
||||
<p>\[
|
||||
C = u \cdot P_{start} + (1-u) \cdot P_{end}
|
||||
\]</p>
|
||||
|
||||
<p>So that just leaves finding A.</p>
|
||||
|
||||
<div className="note">
|
||||
<p>In fact, because the distance ratio is a fixed value for each point <i>B</i>, which we get by picking
|
||||
some <i>t</i> value on our curve, the distance ratio is actually an identity function for Bézier curves.
|
||||
If we were to plot all the ratio values for all possible <i>t</i> values for quadratic and cubic curves,
|
||||
we'd see two very interesting functions: asymptotic at <i>t=0</i> and <i>t=1</i>, tending towards positive
|
||||
infinity, with a zero-derivative minimum at <i>t=0.5</i>.</p>
|
||||
<p>While that relation is fixed, the function <i>u(t)</i> differs depending on whether we're working
|
||||
with quadratic or cubic curves:</p>
|
||||
|
||||
<p>Since these are ratios, we can actually express the ratio values as a function of <i>t</i>. I actually
|
||||
failed at coming up with the precise functions, but thanks to some help from
|
||||
<a href="http://mathoverflow.net/questions/122257/finding-the-formula-for-Bézier-curve-ratios-hull-point-point-baseline">Boris
|
||||
Zbarsky</a> we can see that the ratio functions are actually remarkably simple:</p>
|
||||
<p>\[\begin{align}
|
||||
& u(t)_{quadratic} = \frac{(t-1)^2}{2t^2 - 2t + 1} \\
|
||||
& u(t)_{cubic} = \frac{(1-t)^3}{t^3 + (1-t)^3}
|
||||
\end{align}\]</p>
|
||||
|
||||
<table style={{width:"100%", border:0}}>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<p>Quadratic curves:\[
|
||||
ratio(t)_2 = \left | \frac{2t^2 - 2t}{2t^2 - 2t + 1} \right |
|
||||
\]</p>
|
||||
</td><td>
|
||||
<p>Cubic curves: \[
|
||||
ratio(t)_3 = \left | \frac{t^3 + (1-t)^3 - 1}{t^3 + (1-t)^3} \right |
|
||||
\]</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p>So, if we know the start and end coordinates, and we know the <i>t</i> value, we know C:</p>
|
||||
|
||||
<div className="figure">
|
||||
<Graphic inline={true} preset="abc" title="Quadratic value of C for t" draw={this.drawQCT} onMouseMove={this.setCT}/>
|
||||
<Graphic inline={true} preset="abc" title="Cubic value of C for t" draw={this.drawCCT} onMouseMove={this.setCT}/>
|
||||
</div>
|
||||
|
||||
<p>Mouse-over the graphs to see the expression for C, given the <i>t</i> value at the mouse pointer.</p>
|
||||
</div>
|
||||
|
||||
<p>There's also another important bit of information that is inherent to the ABC values: while the distances
|
||||
between A and B, and B and C, are dynamic (based on where we put B), the <em>ratio</em> between the two
|
||||
distances is stable: given some <i>t</i> value, the following always holds:</p>
|
||||
|
||||
<p>\[
|
||||
ratio(t) = \frac{distance(B,C)}{distance(A,B)} = Constant
|
||||
\]</p>
|
||||
|
||||
<p>This leads to a pretty powerful bit of knowledge: merely by knowing the <i>t</i> value of some on curve
|
||||
point, we know where C has to be (as per the above note), and because we know B and C, and thus have the
|
||||
distance between them, we know where A has to be:</p>
|
||||
|
||||
<p>\[
|
||||
A = B - \frac{C - B}{ratio(t)} = B + \frac{B - C}{ratio(t)}
|
||||
\]</p>
|
||||
|
||||
<p>And that's it, all values found.</p>
|
||||
|
||||
<div className="note">
|
||||
<p>Much like the <i>u(t)</i> function in the above note, the <i>ratio(t)</i> function depends
|
||||
on whether we're looking at quadratic or cubic curves. Their form is intrinsically related to
|
||||
the <i>u(t)</i> function in that they both come rolling out of the same function evalution,
|
||||
explained over on <a href="http://mathoverflow.net/questions/122257/finding-the-formula-for-Bézier-curve-ratios-hull-point-point-baseline">MathOverflow</a> by
|
||||
Boris Zbarsky and myself. The ratio functions are the "s(t)" functions from the answers there,
|
||||
while the "u(t)" functions have the same name both here and on MathOverflow.</p>
|
||||
|
||||
<p>\[
|
||||
ratio(t)_{quadratic} = \left | \frac{2t^2 - 2t}{2t^2 - 2t + 1} \right |
|
||||
\]</p>
|
||||
|
||||
<p>\[
|
||||
ratio(t)_{cubic} = \left | \frac{t^3 + (1-t)^3 - 1}{t^3 + (1-t)^3} \right |
|
||||
\]</p>
|
||||
|
||||
<p>Unfortunately, this trick only works for quadratic and cubic curves. Once we hit higher order curves,
|
||||
things become a lot less predictable; the "fixed point <i>C</i>" is no longer fixed, moving around as we
|
||||
@@ -163,6 +244,11 @@ var ABC = React.createClass({
|
||||
lie on that line before the start, or after the end, and there are no simple ratios that we can exploit.</p>
|
||||
</div>
|
||||
|
||||
<p>So: if we know B and its corresponding <i>t</i> value, then we know all the ABC values, which
|
||||
—together with a start and end coordinate— gives us the necessary information to reconstruct a curve's
|
||||
"de Casteljau skeleton", which means that two points and a value between 0 and 1, we can come up with
|
||||
a curve. And that opens up possibilities: curve manipulation by dragging an on-curve point, curve fitting
|
||||
of "a bunch of coordinates", these are useful things, and we'll look at both in the next sections.</p>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
|
417
components/sections/catmullconv/index.js
Normal file
@@ -0,0 +1,417 @@
|
||||
var React = require("react");
|
||||
var Graphic = require("../../Graphic.jsx");
|
||||
var SectionHeader = require("../../SectionHeader.jsx");
|
||||
|
||||
var CatmullRomConversion = React.createClass({
|
||||
getDefaultProps: function() {
|
||||
return {
|
||||
title: "Bézier curves and Catmull-Rom curves"
|
||||
};
|
||||
},
|
||||
|
||||
render: function() {
|
||||
return (
|
||||
<section>
|
||||
<SectionHeader {...this.props} />
|
||||
|
||||
<p>Taking an excursion to different splines, the other common design curve is
|
||||
the <a href="https://en.wikipedia.org/wiki/Cubic_Hermite_spline#Catmull.E2.80.93Rom_spline">Catmull-Rom
|
||||
spline</a>. Now, a Catmull-Rom spline is a form of cubic Hermite spline, and as it so happens
|
||||
the cubic Bézier curve is also a cubic Hermite spline, so maybe... maybe we can convert one
|
||||
into the other, and back, with some simple substitutions?</p>
|
||||
|
||||
<p>Unlike Bézier curves, Catmull-Rom splines pass through each point used to define the curve,
|
||||
except the first and last, which makes sense if you read the "natural language" description
|
||||
for how a Catmull-Rom spline works: a Catmull-Rom spline is a curve that, at each point
|
||||
P<sub>x</sub>, has a tangent along the line P<sub>x-1</sub> to P<sub>x+1</sub>. The curve
|
||||
runs from points P<sub>2</sub> to P<sub>n-1</sub>, and has a "tension" that determines
|
||||
how fast the curve passes through each point. The lower the tension, the faster the curve
|
||||
goes through each point, and the bigger its local tangent is.</p>
|
||||
|
||||
<p>I'll be showing the conversion to and from Catmull-Rom curves for the tension that the
|
||||
Processing language uses for its Catmull-Rom algorithm.</p>
|
||||
|
||||
<p>We start with showing the Catmull-Rom matrix form:</p>
|
||||
|
||||
<p>\[
|
||||
CatmullRom(t) =
|
||||
\begin{bmatrix}
|
||||
1 & t & t^2 & t^3
|
||||
\end{bmatrix}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
1 & 0 & 0 & 0 \\
|
||||
0 & 0 & 1 & 0 \\
|
||||
-3 & 3 & -2 & -1 \\
|
||||
2 & -2 & 1 & 1
|
||||
\end{bmatrix}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
V_1 \\ V_2 \\ V'_1 \\ V'_2
|
||||
\end{bmatrix}
|
||||
\]
|
||||
</p>
|
||||
|
||||
<p>However, there's something funny going on here: the coordinate column matrix looks weird.
|
||||
The reason is that Catmull-Rom curves are actually curve segments that are described by two
|
||||
points, and two tangents; the curve leaves a point V1 (if we have four coordinates instead,
|
||||
this is coordinate 2), arriving at a point V2 (coordinate 3), with the curve departing V1
|
||||
with a tangent vector V'1 (equal to the tangent from coordinate 1 to coordinate 3) and
|
||||
arriving at V2 with tangent vector V'2 (equal to the tangent from coordinate 2 to coordinate
|
||||
4). So if we want to express this as a matrix form based on four coordinates, we get this
|
||||
representation instead:</p>
|
||||
|
||||
<p>\[
|
||||
\begin{bmatrix}
|
||||
V_1 \\ V_2 \\ V'_1 \\ V'_2
|
||||
\end{bmatrix}
|
||||
=
|
||||
T
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
P_1 \\ P_2 \\ P_3 \\ P_4
|
||||
\end{bmatrix}
|
||||
=
|
||||
\begin{bmatrix}
|
||||
P_2 \\ P_3 \\ \frac{P_3 - P_1}{2} \\ \frac{P_4 - P_2}{2}
|
||||
\end{bmatrix}
|
||||
\ \Rightarrow \
|
||||
T
|
||||
=
|
||||
\frac{1}{2}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
0 & 2 & 0 & 0 \\
|
||||
0 & 0 & 2 & 0 \\
|
||||
-1 & 0 & 1 & 0 \\
|
||||
0 & -1 & 0 & 1
|
||||
\end{bmatrix}
|
||||
\]</p>
|
||||
|
||||
<div className="note">
|
||||
<h2>Where did that 2 come from?</h2>
|
||||
|
||||
<p>Catmull-Rom splines are based on the concept of tension: the higher the tensions,
|
||||
the shorter the tangents at the departure and arrival points. The basic Catmull-Rom
|
||||
curve arrives and departs with tangents equal to half the distance between the two
|
||||
adjacent points, so that's where that 2 came from.</p>
|
||||
|
||||
<p>However, the "real" matrix is this:</p>
|
||||
|
||||
<p>\[
|
||||
T
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
P_1 \\ P_2 \\ P_3 \\ P_4
|
||||
\end{bmatrix}
|
||||
=
|
||||
\begin{bmatrix}
|
||||
P_2 \\ P_3 \\ \frac{P_3 - P_1}{2 \cdot τ} \\ \frac{P_4 - P_2}{2 \cdot τ}
|
||||
\end{bmatrix}
|
||||
\Rightarrow \
|
||||
T
|
||||
=
|
||||
\frac{1}{2}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
0 & 2 & 0 & 0 \\
|
||||
0 & 0 & 2 & 0 \\
|
||||
-τ & 0 & τ & 0 \\
|
||||
0 & -τ & 0 & τ
|
||||
\end{bmatrix}
|
||||
\]</p>
|
||||
|
||||
<p>This bakes in the tension factor τ explicitly.</p>
|
||||
</div>
|
||||
|
||||
<p>Plugging this into the "two coordinates and two tangent vectors" matrix form,
|
||||
we get:</p>
|
||||
|
||||
<p>\[
|
||||
\begin{bmatrix}
|
||||
1 & t & t^2 & t^3
|
||||
\end{bmatrix}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
1 & 0 & 0 & 0 \\
|
||||
0 & 0 & 1 & 0 \\
|
||||
-3 & 3 & -2 & -1 \\
|
||||
2 & -2 & 1 & 1
|
||||
\end{bmatrix}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
V_1 \\ V_2 \\ V'_1 \\ V'_2
|
||||
\end{bmatrix}
|
||||
\]</p>
|
||||
|
||||
<p>\[
|
||||
=
|
||||
\begin{bmatrix}
|
||||
1 & t & t^2 & t^3
|
||||
\end{bmatrix}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
1 & 0 & 0 & 0 \\
|
||||
0 & 0 & 1 & 0 \\
|
||||
-3 & 3 & -2 & -1 \\
|
||||
2 & -2 & 1 & 1
|
||||
\end{bmatrix}
|
||||
\cdot
|
||||
\left (
|
||||
\frac{1}{2}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
0 & 2 & 0 & 0 \\
|
||||
0 & 0 & 2 & 0 \\
|
||||
-τ & 0 & τ & 0 \\
|
||||
0 & -τ & 0 & τ
|
||||
\end{bmatrix}
|
||||
\right )
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
P_1 \\ P_2 \\ P_3 \\ P_4
|
||||
\end{bmatrix}
|
||||
\]</p>
|
||||
|
||||
<p>\[
|
||||
=
|
||||
\begin{bmatrix}
|
||||
1 & t & t^2 & t^3
|
||||
\end{bmatrix}
|
||||
\cdot
|
||||
\frac{1}{2}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
0 & 2 & 0 & 0 \\
|
||||
-τ & 0 & τ & 0 \\
|
||||
2τ & τ-6 & -2(τ-3) & -τ \\
|
||||
-τ & 4-τ & τ-4 & τ
|
||||
\end{bmatrix}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
P_1 \\ P_2 \\ P_3 \\ P_4
|
||||
\end{bmatrix}
|
||||
\]</p>
|
||||
|
||||
<p>So let's find out which transformation matrix we need in order to convert from Catmull-Rom to Bézier:</p>
|
||||
|
||||
<p>\[
|
||||
\begin{bmatrix}
|
||||
1 & t & t^2 & t^3
|
||||
\end{bmatrix}
|
||||
\cdot
|
||||
\frac{1}{2}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
0 & 2 & 0 & 0 \\
|
||||
-τ & 0 & τ & 0 \\
|
||||
2τ & τ-6 & -2(τ-3) & -τ \\
|
||||
-τ & 4-τ & τ-4 & τ
|
||||
\end{bmatrix}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
P_1 \\ P_2 \\ P_3 \\ P_4
|
||||
\end{bmatrix}
|
||||
=
|
||||
\begin{bmatrix}
|
||||
1 & t & t^2 & t^3
|
||||
\end{bmatrix}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
1 & 0 & 0 & 0 \\
|
||||
-3 & 3 & 0 & 0 \\
|
||||
3 & -6 & 3 & 0 \\
|
||||
-1 & 3 & -3 & 1
|
||||
\end{bmatrix}
|
||||
\cdot
|
||||
A
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
P_1 \\ P_2 \\ P_3 \\ P_4
|
||||
\end{bmatrix}
|
||||
\]</p>
|
||||
|
||||
<p>The difference is somewhere in the actual hermite matrix, since the <em>t</em> and coordinate
|
||||
values are identical, so let's solve that matrix equasion:</p>
|
||||
|
||||
<p>\[
|
||||
\frac{1}{2}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
0 & 2 & 0 & 0 \\
|
||||
-τ & 0 & τ & 0 \\
|
||||
2τ & τ-6 & -2(τ-3) & -τ \\
|
||||
-τ & 4-τ & τ-4 & τ
|
||||
\end{bmatrix}
|
||||
=
|
||||
\begin{bmatrix}
|
||||
1 & 0 & 0 & 0 \\
|
||||
-3 & 3 & 0 & 0 \\
|
||||
3 & -6 & 3 & 0 \\
|
||||
-1 & 3 & -3 & 1
|
||||
\end{bmatrix}
|
||||
\cdot
|
||||
A
|
||||
\]</p>
|
||||
|
||||
<p>We left-multiply both sides by the inverse of the Bézier matrix, to get rid of the
|
||||
Bézier matrix on the right side of the equals sign:</p>
|
||||
|
||||
<p>\[
|
||||
{
|
||||
\begin{bmatrix}
|
||||
1 & 0 & 0 & 0 \\
|
||||
-3 & 3 & 0 & 0 \\
|
||||
3 & -6 & 3 & 0 \\
|
||||
-1 & 3 & -3 & 1
|
||||
\end{bmatrix}
|
||||
}^{-1}
|
||||
\cdot
|
||||
\frac{1}{2}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
0 & 2 & 0 & 0 \\
|
||||
-τ & 0 & τ & 0 \\
|
||||
2τ & τ-6 & -2(τ-3) & -τ \\
|
||||
-τ & 4-τ & τ-4 & τ
|
||||
\end{bmatrix}
|
||||
=
|
||||
{
|
||||
\begin{bmatrix}
|
||||
1 & 0 & 0 & 0 \\
|
||||
-3 & 3 & 0 & 0 \\
|
||||
3 & -6 & 3 & 0 \\
|
||||
-1 & 3 & -3 & 1
|
||||
\end{bmatrix}
|
||||
}^{-1}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
1 & 0 & 0 & 0 \\
|
||||
-3 & 3 & 0 & 0 \\
|
||||
3 & -6 & 3 & 0 \\
|
||||
-1 & 3 & -3 & 1
|
||||
\end{bmatrix}
|
||||
\cdot
|
||||
A
|
||||
\ =\
|
||||
I \cdot A
|
||||
\ =\
|
||||
A
|
||||
\]
|
||||
</p>
|
||||
|
||||
<p>Which gives us:</p>
|
||||
|
||||
<p>\[
|
||||
\frac{1}{6}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
0 & 6 & 0 & 0 \\
|
||||
-τ & 6 & τ & 0 \\
|
||||
0 & τ & 0 & -τ \\
|
||||
0 & 0 & 6 & 0
|
||||
\end{bmatrix}
|
||||
=
|
||||
A
|
||||
\]</p>
|
||||
|
||||
<p>Multiplying this <strong><em>A</em></strong> with our coordinates
|
||||
will give us a proper Bézier matrix expression again:</p>
|
||||
|
||||
<p>\[
|
||||
\begin{bmatrix}
|
||||
1 & t & t^2 & t^3
|
||||
\end{bmatrix}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
1 & 0 & 0 & 0 \\
|
||||
-3 & 3 & 0 & 0 \\
|
||||
3 & -6 & 3 & 0 \\
|
||||
-1 & 3 & -3 & 1
|
||||
\end{bmatrix}
|
||||
\cdot
|
||||
\frac{1}{6}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
0 & 6 & 0 & 0 \\
|
||||
-τ & 6 & τ & 0 \\
|
||||
0 & τ & 0 & -τ \\
|
||||
0 & 0 & 6 & 0
|
||||
\end{bmatrix}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
P_1 \\ P_2 \\ P_3 \\ P_4
|
||||
\end{bmatrix}
|
||||
\]</p>
|
||||
|
||||
<p>\[
|
||||
=
|
||||
\begin{bmatrix}
|
||||
1 & t & t^2 & t^3
|
||||
\end{bmatrix}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
1 & 0 & 0 & 0 \\
|
||||
-3 & 3 & 0 & 0 \\
|
||||
3 & -6 & 3 & 0 \\
|
||||
-1 & 3 & -3 & 1
|
||||
\end{bmatrix}
|
||||
\cdot
|
||||
\begin{bmatrix}
|
||||
P_2 \\
|
||||
P_2 + \frac{P_3-P_1}{6 \cdot τ} \\
|
||||
P_3 - \frac{P_4-P_2}{6 \cdot τ} \\
|
||||
P_3
|
||||
\end{bmatrix}
|
||||
\]</p>
|
||||
|
||||
<p>So a Catmull-Rom to Bézier conversion, based on coordinates, requires turning
|
||||
the Catmull-Rom coordinates on the left into the Bézier coordinates on the right
|
||||
(with τ being our tension factor):</p>
|
||||
|
||||
<p>\[
|
||||
\begin{bmatrix}
|
||||
P_1 \\
|
||||
P_2 \\
|
||||
P_3 \\
|
||||
P_4
|
||||
\end{bmatrix}_{CatmullRom}
|
||||
\Rightarrow
|
||||
\begin{bmatrix}
|
||||
P_2 \\
|
||||
P_2 + \frac{P_3-P_1}{6 \cdot τ} \\
|
||||
P_3 - \frac{P_4-P_2}{6 \cdot τ} \\
|
||||
P_3
|
||||
\end{bmatrix}_{Bézier}
|
||||
\]</p>
|
||||
|
||||
<p>And the other way around, a Bézier to Catmull-Rom conversion requires turning
|
||||
the Bézier coordinates on the left this time into the Catmull-Rom coordinates
|
||||
on the right. Note that there is no tension this time, because Bézier curves
|
||||
don't have any. Converting from Bézier to Catmull-Rom is simply a default-tension
|
||||
Catmull-Rom curve:</p>
|
||||
|
||||
<p>\[
|
||||
\begin{bmatrix}
|
||||
P_1 \\
|
||||
P_2 \\
|
||||
P_3 \\
|
||||
P_4
|
||||
\end{bmatrix}_{Bézier}
|
||||
\Rightarrow
|
||||
\begin{bmatrix}
|
||||
P_4 + 6 \cdot (P_1 - P_2) \\
|
||||
P_1 \\
|
||||
P_4 \\
|
||||
P_1 + 6 \cdot (P_4 - P_3)
|
||||
\end{bmatrix}_{CatmullRom}
|
||||
\]</p>
|
||||
|
||||
<p>Done. We can now draw the curves we want using either Bézier curves or Catmull-Rom
|
||||
splines, the choice mostly being which drawing algorithms we have natively available.</p>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
module.exports = CatmullRomConversion;
|
184
components/sections/catmullmoulding/index.js
Normal file
@@ -0,0 +1,184 @@
|
||||
var React = require("react");
|
||||
var Graphic = require("../../Graphic.jsx");
|
||||
var SectionHeader = require("../../SectionHeader.jsx");
|
||||
|
||||
var CatmullRomMoulding = React.createClass({
|
||||
getDefaultProps: function() {
|
||||
return {
|
||||
title: "Creating a Catmull-Rom curve from three points"
|
||||
};
|
||||
},
|
||||
|
||||
setup: function(api) {
|
||||
api.setPanelCount(3);
|
||||
api.lpts = [
|
||||
{x:56, y:153},
|
||||
{x:144,y:83},
|
||||
{x:188,y:185}
|
||||
];
|
||||
api.distance = 0;
|
||||
},
|
||||
|
||||
onKeyDown: function(evt, api) {
|
||||
if (evt.key === "ArrowUp") {
|
||||
evt.preventDefault();
|
||||
api.distance += 1;
|
||||
} else if (evt.key === "ArrowDown") {
|
||||
evt.preventDefault();
|
||||
api.distance -= 1;
|
||||
}
|
||||
},
|
||||
|
||||
convert: function(p1, p2, p3, p4) {
|
||||
var t = 0.5;
|
||||
return [
|
||||
p2,
|
||||
{
|
||||
x: p2.x + (p3.x-p1.x)/(6*t),
|
||||
y: p2.y + (p3.y-p1.y)/(6*t),
|
||||
},
|
||||
{
|
||||
x: p3.x - (p4.x-p2.x)/(6*t),
|
||||
y: p3.y - (p4.y-p2.y)/(6*t),
|
||||
},
|
||||
p3
|
||||
];
|
||||
},
|
||||
|
||||
draw: function(api) {
|
||||
api.reset();
|
||||
api.setColor("lightblue");
|
||||
api.drawGrid(10,10);
|
||||
|
||||
var pts = api.lpts;
|
||||
api.setColor("black");
|
||||
api.setFill("black");
|
||||
pts.forEach((p,pos) => {
|
||||
api.drawCircle(p, 3);
|
||||
api.text("point "+(pos+1), p, {x:10, y:7});
|
||||
});
|
||||
|
||||
var w = api.getPanelWidth();
|
||||
var h = api.getPanelHeight();
|
||||
var offset = {x:w, y:0};
|
||||
api.setColor("lightblue");
|
||||
api.drawGrid(10,10,offset);
|
||||
api.setColor("black");
|
||||
api.drawLine({x:0,y:0}, {x:0,y:h}, offset);
|
||||
|
||||
pts.forEach((p,pos) => {
|
||||
api.drawCircle(p, 3, offset);
|
||||
});
|
||||
var p1 = pts[0], p2 = pts[1], p3 = pts[2];
|
||||
var dx = p3.x - p1.x,
|
||||
dy = p3.y - p1.y,
|
||||
m = Math.sqrt(dx*dx + dy*dy);
|
||||
dx /= m;
|
||||
dy /= m;
|
||||
api.drawLine(p1, p3, offset);
|
||||
|
||||
var p0 = {
|
||||
x: p1.x + (p3.x - p2.x) - api.distance * dx,
|
||||
y: p1.y + (p3.y - p2.y) - api.distance * dy
|
||||
};
|
||||
var p4 = {
|
||||
x: p1.x + (p3.x - p2.x) + api.distance * dx,
|
||||
y: p1.y + (p3.y - p2.y) + api.distance * dy
|
||||
};
|
||||
var center = api.utils.lli4(p1,p3,p2,{
|
||||
x: (p0.x + p4.x)/2,
|
||||
y: (p0.y + p4.y)/2
|
||||
});
|
||||
api.setColor("blue");
|
||||
api.drawCircle(center, 3, offset);
|
||||
api.drawLine(pts[1],center, offset);
|
||||
api.setColor("#666");
|
||||
api.drawLine(center, p0, offset);
|
||||
api.drawLine(center, p4, offset);
|
||||
|
||||
api.setFill("blue");
|
||||
api.text("p0", p0, {x:-20 + offset.x, y:offset.y + 2});
|
||||
api.text("p4", p4, {x:+10 + offset.x, y:offset.y + 2});
|
||||
|
||||
// virtual point p0
|
||||
api.setColor("red");
|
||||
api.drawCircle(p0, 3, offset);
|
||||
api.drawLine(p2, p0, offset);
|
||||
api.drawLine(p1, {
|
||||
x: p1.x + (p2.x - p0.x)/5,
|
||||
y: p1.y + (p2.y - p0.y)/5
|
||||
}, offset);
|
||||
|
||||
// virtual point p4
|
||||
api.setColor("#00FF00");
|
||||
api.drawCircle(p4, 3, offset);
|
||||
api.drawLine(p2, p4, offset);
|
||||
api.drawLine(p3, {
|
||||
x: p3.x + (p4.x - p2.x)/5,
|
||||
y: p3.y + (p4.y - p2.y)/5
|
||||
}, offset);
|
||||
|
||||
// Catmull-Rom curve for p0-p1-p2-p3-p4
|
||||
var c1 = new api.Bezier(this.convert(p0,p1,p2,p3)),
|
||||
c2 = new api.Bezier(this.convert(p1,p2,p3,p4));
|
||||
api.setColor("lightgrey");
|
||||
api.drawCurve(c1, offset);
|
||||
api.drawCurve(c2, offset);
|
||||
|
||||
|
||||
offset.x += w;
|
||||
api.setColor("lightblue");
|
||||
api.drawGrid(10,10,offset);
|
||||
api.setColor("black");
|
||||
api.drawLine({x:0,y:0}, {x:0,y:h}, offset);
|
||||
|
||||
api.drawCurve(c1, offset);
|
||||
api.drawCurve(c2, offset);
|
||||
api.drawPoints(c1.points, offset);
|
||||
api.drawPoints(c2.points, offset);
|
||||
api.setColor("lightgrey");
|
||||
api.drawLine(c1.points[0], c1.points[1], offset);
|
||||
api.drawLine(c1.points[2], c2.points[1], offset);
|
||||
api.drawLine(c2.points[2], c2.points[3], offset);
|
||||
},
|
||||
|
||||
render: function() {
|
||||
return (
|
||||
<section>
|
||||
<SectionHeader {...this.props} />
|
||||
|
||||
<p>Now, we saw how to fit a Bézier curve to three points, but if Catmull-Rom curves go through points,
|
||||
why can't we just use those to do curve fitting, instead?</p>
|
||||
|
||||
<p>As a matter of fact, we can, but there's a difference between the kind of curve fitting we did in the
|
||||
previous section, and the kind of curve fitting that we can do with Catmull-Rom curves. In the previous
|
||||
section we came up with a single curve that goes through three points. There was a decent amount of
|
||||
maths and computation involved, and the end result was three or four coordinates that described a
|
||||
single curve, depending on whether we were fitting a quadratic or cubic curve.</p>
|
||||
|
||||
<p>Using Catmull-Rom curves, we need virtually no computation, but even though we end up with one Catmull-Rom
|
||||
curve of <i>n</i> points, in order to draw the equivalent curve using cubic Bézier curves we need a
|
||||
massive <i>3n-1</i> points (and that's without double-counting points that are shared by consecutive
|
||||
cubic curves).</p>
|
||||
|
||||
|
||||
<p>In the following graphic, on the left we see three points that we want to draw a Catmull-Rom curve through
|
||||
(which we can move around freely, by the way), with in the second panel some of the "interesting" Catmull-Rom
|
||||
information: in black there's the baseline start--end, which will act as tangent orientation for the curve at
|
||||
point p2. We also see a virtual point p0 and p4, which are initially just point p2 reflected over the baseline.
|
||||
However, by using the up and down cursor key we can offset these points parallel to the baseline. Why would
|
||||
we want to do this? Because the line p0--p2 acts as departure tangent at p1, and the line p2--p4 acts as
|
||||
arrival tangent at p3. Play around with the graphic a bit to get an idea of what all of that meant:</p>
|
||||
|
||||
<Graphic preset="threepanel" title="Catmull-Rom curve fitting" setup={this.setup} draw={this.draw} onKeyDown={this.onKeyDown}/>
|
||||
|
||||
<p>As should be obvious by now, Catmull-Rom curves are great for "fitting a curvature to some points", but if we want
|
||||
to convert that curve to Bézier form we're going to end up with a lot of separate (but visually joined) Bézier curves.
|
||||
Depending on what we want to do, that'll be either unnecessary work, or exactly what we want: which it is depends
|
||||
entirely on you.</p>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
module.exports = CatmullRomMoulding;
|
@@ -34,14 +34,14 @@ module.exports = {
|
||||
|
||||
abc: require("./abc"),
|
||||
moulding: require("./moulding"),
|
||||
pointcurves: require("./pointcurves")
|
||||
pointcurves: require("./pointcurves"),
|
||||
|
||||
catmullconv: require("./catmullconv"),
|
||||
catmullmoulding: require("./catmullmoulding")
|
||||
};
|
||||
|
||||
|
||||
/*
|
||||
catmullconv: require("./catmullconv"),
|
||||
catmullmoulding: require("./catmullmoulding"),
|
||||
|
||||
polybezier: require("./polybezier"),
|
||||
shapes: require("./shapes"),
|
||||
|
||||
@@ -56,9 +56,6 @@ module.exports = {
|
||||
*/
|
||||
|
||||
/*
|
||||
|
||||
Bézier curves and Catmull-Rom curves
|
||||
Creating a Catmull-Rom curve from three points
|
||||
Forming poly-Bézier curves
|
||||
Boolean shape operations
|
||||
Projecting a point onto a Bézier curve
|
||||
|
@@ -234,7 +234,7 @@ var Moulding = React.createClass({
|
||||
we can compute the ABC ratio for this configuration, and we know that our new point A' should like at a distance:</p>
|
||||
|
||||
<p>\[
|
||||
A' = B' + \frac{B' - C}{ratio} = B' - \frac{C - B'}{ratio}
|
||||
A' = B' - \frac{C - B'}{ratio} = B' + \frac{B - C}{ratio}
|
||||
\]</p>
|
||||
|
||||
<p>For quadratic curves, this means we're done, since the new point A' is equivalent to the new quadratic control point.
|
||||
@@ -249,7 +249,9 @@ var Moulding = React.createClass({
|
||||
curve. Given A', B', and the endpoints e1 and e2 of the strut line relative to B', we can now compute where the new control points
|
||||
should be. Remember that B' lies on line e1--e2 at a distance <i>t</i>, because that's how Bézier curves work. In the same manner,
|
||||
we know the distance A--e1 is only line-interval [0,t] of the full segment, and A--e2 is only line-interval [t,1], so constructing
|
||||
the new control points is fairly easy:</p>
|
||||
the new control points is fairly easy.</p>
|
||||
|
||||
<p>First, we construct the one-level-of-de-Casteljau-up points:</p>
|
||||
|
||||
<p>\[
|
||||
\left \{ \begin{align}
|
||||
@@ -258,6 +260,8 @@ var Moulding = React.createClass({
|
||||
\end{align} \right .
|
||||
\]</p>
|
||||
|
||||
<p>And then we can compute the new control points:</p>
|
||||
|
||||
<p>\[
|
||||
\left \{ \begin{align}
|
||||
C1' &= v1 + \frac{v1 - start}{t} \\
|
||||
|
@@ -12,7 +12,11 @@ var PointCurves = React.createClass({
|
||||
},
|
||||
|
||||
setup: function(api) {
|
||||
api.lpts = [];
|
||||
api.lpts = [
|
||||
{x:56, y:153},
|
||||
{x:144,y:83},
|
||||
{x:188,y:185}
|
||||
];
|
||||
},
|
||||
|
||||
onClick: function(evt, api) {
|
||||
@@ -209,8 +213,8 @@ var PointCurves = React.createClass({
|
||||
<p>In each graphic, the blue parts are the values that we "just have" simply by setting up
|
||||
our three points, combined with our decision on which <i>t</i> value to use (and construction line
|
||||
orientation and length for cubic curves). There are of course many ways to determine a combination
|
||||
of <i>t</i> and tangent values that lead to a more "aesthetic" curve, but this will be left as an
|
||||
exercise to the reader, since there are many, and aesthetics are often quite personal.</p>
|
||||
of <i>t</i> and tangent values that lead to a more "æsthetic" curve, but this will be left as an
|
||||
exercise to the reader, since there are many, and æsthetics are often quite personal.</p>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
|
78
images/latex/0612c961898c470efe9e455ebb2f9a0fac7423cd.svg
Normal file
@@ -0,0 +1,78 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="33.5ex" height="6.167ex" style="vertical-align: -2.5ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1632.2 14422.9 2690.5" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<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-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-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-1D462" d="M543 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-43 0 -78 26 -89 67c-17 -22 -53 -67 -119 -67c-54 0 -123 25 -123 120c0 49 21 111 58 210c6 15 17 44 17 68c0 32 -16 33 -25 33c-38 0 -76 -37 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10 c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -17 -63c-26 -69 -54 -148 -54 -204c0 -37 10 -82 62 -82c73 0 113 80 114 84l75 301c8 34 34 35 39 35c15 0 29 -9 29 -27c0 -6 -10 -44 -15 -67c-4 -15 -14 -53 -17 -68l-28 -108c-8 -35 -20 -82 -20 -104 c0 -33 10 -46 31 -46c42 0 61 68 75 124c3 14 4 18 14 18c3 0 12 0 12 -10Z"></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-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-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-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-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-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-LATINMODERNSIZE5-7C" d="M172 -969c0 -18 -15 -32 -33 -32s-32 14 -32 32v2438c0 18 14 32 32 32s33 -14 33 -32v-2438Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="456" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="990" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="1356" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="1706" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="2196" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="2590" y="0"></use>
|
||||
<g transform="translate(2956,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="0" y="0"></use>
|
||||
<g transform="translate(394,-154)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D450" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D462" x="437" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="1014" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D456" x="1448" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D450" x="1798" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="5309" y="0"></use>
|
||||
<g transform="translate(6370,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE5-7C"></use>
|
||||
<g transform="translate(283,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="7246" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,777)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="517" y="513"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="1045" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="2050" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="2444" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="3171" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="4176" y="0"></use>
|
||||
<g transform="translate(4542,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="557" y="513"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="5616" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="6621" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(926,-787)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="517" y="408"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="1045" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="2050" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="2444" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="3171" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="4176" y="0"></use>
|
||||
<g transform="translate(4542,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="557" y="408"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE5-7C" x="7769" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.2 KiB |
161
images/latex/0d6db1a4d430965f0d71bb687662c05d59574a55.svg
Normal file
@@ -0,0 +1,161 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="67ex" height="12.667ex" style="vertical-align: -5.833ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -2984.6 28862.6 5469.1" 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-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-1D45A" d="M848 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 20 4 31 13 55c20 53 62 167 62 224c0 36 -11 70 -54 70c-109 0 -162 -120 -165 -133l-60 -241c-8 -32 -14 -57 -45 -57c-15 0 -29 9 -29 27c0 5 9 39 13 59c9 33 10 39 20 76l28 116c8 30 15 58 15 83 c0 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 43l58 231c13 52 16 63 16 84c0 38 -15 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23 c0 0 -12 0 -12 10c0 3 13 62 31 97c9 18 28 57 74 57c45 0 87 -30 92 -87c17 23 66 87 156 87c25 0 57 -5 82 -26c28 -24 31 -58 32 -71c37 53 88 97 163 97s115 -42 115 -107c0 -57 -42 -168 -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-LATINMODERNNORMAL-1D462" d="M543 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-43 0 -78 26 -89 67c-17 -22 -53 -67 -119 -67c-54 0 -123 25 -123 120c0 49 21 111 58 210c6 15 17 44 17 68c0 32 -16 33 -25 33c-38 0 -76 -37 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10 c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -17 -63c-26 -69 -54 -148 -54 -204c0 -37 10 -82 62 -82c73 0 113 80 114 84l75 301c8 34 34 35 39 35c15 0 29 -9 29 -27c0 -6 -10 -44 -15 -67c-4 -15 -14 -53 -17 -68l-28 -108c-8 -35 -20 -82 -20 -104 c0 -33 10 -46 31 -46c42 0 61 68 75 124c3 14 4 18 14 18c3 0 12 0 12 -10Z"></path>
|
||||
<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-LATINMODERNNORMAL-1D445" d="M646 553c0 99 -111 99 -182 99c-20 0 -52 0 -61 -1c-19 -3 -22 -13 -28 -37l-65 -261h112c90 0 143 32 169 58c39 39 55 108 55 142zM755 93c0 -14 -35 -115 -120 -115c-13 0 -133 0 -133 108c0 20 9 57 16 85c6 23 14 54 14 69c0 35 -18 91 -109 91h-119l-66 -265 c-1 -6 -3 -11 -3 -17c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -12 -20 -20 -20l-127 3l-126 -3s-14 0 -14 11c0 20 9 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 9 20 29 20h285 c131 0 221 -64 221 -150c0 -101 -119 -171 -220 -193c27 -10 94 -41 94 -118c0 -14 -2 -33 -4 -47c-4 -32 -10 -83 -10 -114c0 -39 7 -61 40 -61c23 0 66 17 91 91c2 7 4 14 13 14c0 0 12 0 12 -12Z"></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-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-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-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>
|
||||
<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-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-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-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-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-LATINMODERNSYMBOLS-23A1" d="M647 1470c0 -17 -13 -30 -30 -30h-236v-1440h-60v1500h296c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A3" d="M647 30c0 -17 -13 -30 -30 -30h-296v1500h60v-1440h236c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A2" d="M381 0h-60v1000h60v-1000Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A4" d="M346 0h-60v1440h-236c-17 0 -30 13 -30 30s13 30 30 30h296v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A6" d="M346 0h-296c-17 0 -30 13 -30 30s13 30 30 30h236v1440h60v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A5" d="M346 1000v-1000h-60v1000h60Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D449" d="M769 671c0 0 -1 -18 -13 -19c-37 -2 -79 -5 -128 -83l-360 -573c-8 -13 -12 -18 -28 -18c-13 0 -17 3 -20 23l-79 617c-3 25 -4 34 -60 34c-16 0 -25 0 -25 12c0 19 12 19 19 19c17 0 36 -2 54 -2s37 -1 55 -1c41 0 84 3 124 3c6 0 14 -2 14 -11c0 -20 -11 -20 -25 -20 c-46 0 -69 -13 -69 -30l68 -529l307 488s15 23 15 38c0 21 -19 31 -46 33c-7 0 -16 1 -16 12c0 19 13 19 19 19c32 0 66 -3 99 -3c27 0 56 3 82 3c8 0 13 -4 13 -12Z"></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>
|
||||
</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-LATINMODERNNORMAL-1D44E" x="765" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1299" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45A" x="1665" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D462" x="2548" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D459" x="3125" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D459" x="3428" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D445" x="3731" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="4495" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45A" x="4985" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="5868" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="6262" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="6628" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="7299" y="0"></use>
|
||||
<g transform="translate(8360,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-5B"></use>
|
||||
<g transform="translate(450,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="-11" y="-71"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1494" y="-71"></use>
|
||||
<g transform="translate(2860,0)">
|
||||
<g transform="translate(0,-71)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="513"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(4683,0)">
|
||||
<g transform="translate(0,-71)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="517" y="513"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-5D" x="6123" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="14989" y="0"></use>
|
||||
<g transform="translate(15494,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="391" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(2277,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-750"></use>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(4565,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="391" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="391" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(6853,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="391" y="-2150"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(9147,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="25536" y="0"></use>
|
||||
<g transform="translate(26041,0)">
|
||||
<g transform="translate(0,2970)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3946.741906691984) scale(1,2.4522197095960236)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5432"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(54,2170)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D449" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="831" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(54,770)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D449" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="831" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-630)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D449" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="1173" y="67"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="831" y="-444"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D449" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="1173" y="67"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="831" y="-444"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2148,2970)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3946.741906691984) scale(1,2.4522197095960236)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5432"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 15 KiB |
170
images/latex/0de30af03e8ee0c0cc8a05b396561dde8ea9f30c.svg
Normal file
@@ -0,0 +1,170 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="40.167ex" height="14.833ex" style="vertical-align: -6.833ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -3403.4 17324.9 6357" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<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-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-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-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-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-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-LATINMODERNSYMBOLS-23A1" d="M647 1470c0 -17 -13 -30 -30 -30h-236v-1440h-60v1500h296c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A3" d="M647 30c0 -17 -13 -30 -30 -30h-296v1500h60v-1440h236c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A2" d="M381 0h-60v1000h60v-1000Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A4" d="M346 0h-60v1440h-236c-17 0 -30 13 -30 30s13 30 30 30h296v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A6" d="M346 0h-296c-17 0 -30 13 -30 30s13 30 30 30h236v1440h60v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A5" d="M346 1000v-1000h-60v1000h60Z"></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-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-1D45A" d="M848 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 20 4 31 13 55c20 53 62 167 62 224c0 36 -11 70 -54 70c-109 0 -162 -120 -165 -133l-60 -241c-8 -32 -14 -57 -45 -57c-15 0 -29 9 -29 27c0 5 9 39 13 59c9 33 10 39 20 76l28 116c8 30 15 58 15 83 c0 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 43l58 231c13 52 16 63 16 84c0 38 -15 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23 c0 0 -12 0 -12 10c0 3 13 62 31 97c9 18 28 57 74 57c45 0 87 -30 92 -87c17 23 66 87 156 87c25 0 57 -5 82 -26c28 -24 31 -58 32 -71c37 53 88 97 163 97s115 -42 115 -107c0 -57 -42 -168 -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-LATINMODERNNORMAL-1D462" d="M543 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-43 0 -78 26 -89 67c-17 -22 -53 -67 -119 -67c-54 0 -123 25 -123 120c0 49 21 111 58 210c6 15 17 44 17 68c0 32 -16 33 -25 33c-38 0 -76 -37 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10 c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -17 -63c-26 -69 -54 -148 -54 -204c0 -37 10 -82 62 -82c73 0 113 80 114 84l75 301c8 34 34 35 39 35c15 0 29 -9 29 -27c0 -6 -10 -44 -15 -67c-4 -15 -14 -53 -17 -68l-28 -108c-8 -35 -20 -82 -20 -104 c0 -33 10 -46 31 -46c42 0 61 68 75 124c3 14 4 18 14 18c3 0 12 0 12 -10Z"></path>
|
||||
<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-LATINMODERNNORMAL-1D445" d="M646 553c0 99 -111 99 -182 99c-20 0 -52 0 -61 -1c-19 -3 -22 -13 -28 -37l-65 -261h112c90 0 143 32 169 58c39 39 55 108 55 142zM755 93c0 -14 -35 -115 -120 -115c-13 0 -133 0 -133 108c0 20 9 57 16 85c6 23 14 54 14 69c0 35 -18 91 -109 91h-119l-66 -265 c-1 -6 -3 -11 -3 -17c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -12 -20 -20 -20l-127 3l-126 -3s-14 0 -14 11c0 20 9 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 9 20 29 20h285 c131 0 221 -64 221 -150c0 -101 -119 -171 -220 -193c27 -10 94 -41 94 -118c0 -14 -2 -33 -4 -47c-4 -32 -10 -83 -10 -114c0 -39 7 -61 40 -61c23 0 66 17 91 91c2 7 4 14 13 14c0 0 12 0 12 -12Z"></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-21D2" d="M939 250c0 -6 -4 -11 -9 -13c-72 -19 -134 -60 -188 -107c-44 -39 -81 -86 -108 -139c-3 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-607c-11 0 -20 9 -20 20s9 20 20 20h651c40 32 84 58 132 77c-48 19 -92 45 -132 77h-651 c-11 0 -20 9 -20 20s9 20 20 20h607c-35 36 -65 78 -89 124c-1 3 -2 6 -2 9c0 11 9 20 20 20c8 0 15 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 188 -107c5 -2 9 -7 9 -13Z"></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-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-36" d="M457 204c0 -132 -95 -226 -206 -226c-93 0 -209 71 -209 338c0 221 135 350 263 350c83 0 127 -48 127 -108c0 -39 -30 -48 -46 -48c-22 0 -46 15 -46 46c0 45 40 45 55 45c-22 34 -64 40 -88 40c-51 0 -175 -36 -175 -289v-24c20 48 57 99 125 99 c111 0 200 -96 200 -223zM367 205c0 49 0 100 -18 137c-31 62 -77 62 -93 62c-90 0 -122 -100 -122 -178c0 -18 0 -98 18 -145c6 -15 36 -75 99 -75c23 0 69 5 99 65c17 36 17 86 17 134Z"></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-3C4" d="M459 407c9 -34 -27 -34 -40 -34h-168l18 -342c1 -15 3 -43 -30 -43c-22 0 -33 16 -36 27c-1 4 0 25 1 37l18 321h-83c-21 0 -78 0 -108 -77c-4 -8 -5 -12 -13 -12c-12 0 -14 10 -14 10c-2 6 14 54 38 90c32 47 71 47 91 47h280c19 0 40 0 46 -24Z"></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-LATINMODERNLATIN-E9" d="M415 119c0 -19 -45 -130 -167 -130c-115 0 -220 97 -220 231c0 125 92 228 208 228c125 0 179 -97 179 -196c0 -21 -3 -21 -25 -21h-279c0 -36 0 -102 30 -150c23 -37 63 -67 113 -67c10 0 100 0 135 103c2 8 4 14 13 14c5 0 13 -2 13 -12zM349 252 c0 39 -10 174 -113 174c-34 0 -118 -25 -124 -174h237zM346 662c0 -12 -8 -23 -17 -30l-152 -122l-17 18l120 153c4 6 15 17 30 17c18 0 36 -18 36 -36Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D467" d="M467 432c0 -4 -22 -52 -117 -145c-36 -36 -98 -90 -98 -90c-36 -31 -65 -56 -119 -114c9 3 27 3 27 3c21 0 36 -4 70 -17c21 -7 39 -13 59 -13c33 0 97 19 120 84c3 7 5 13 14 13c8 0 12 -5 12 -10c0 -27 -58 -154 -157 -154c-29 0 -47 16 -64 37c-25 29 -35 38 -58 38 c-32 0 -62 -27 -85 -62c-6 -11 -8 -13 -16 -13c0 0 -12 0 -12 10c0 7 35 64 103 131l90 84c19 16 103 88 139 131c-26 0 -37 0 -77 15c-23 8 -42 15 -63 15c-8 0 -66 -1 -85 -47c-2 -6 -4 -11 -13 -11s-12 6 -12 11c0 21 46 114 121 114c33 0 50 -20 69 -43 c15 -17 27 -32 51 -32s45 16 75 64c5 9 8 11 15 11c0 0 11 0 11 -10Z"></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-1D452" d="M430 107c0 -12 -84 -118 -227 -118c-98 0 -157 79 -157 181c0 175 151 272 262 272c69 0 107 -41 107 -85c0 -14 -5 -73 -75 -103c-50 -21 -124 -23 -153 -23h-53c-15 -61 -16 -92 -16 -104c0 -32 9 -116 87 -116c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13z M382 357c0 34 -27 63 -74 63c-26 0 -129 -15 -168 -167h41c41 0 201 0 201 104Z"></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>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,2050)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,650)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="914" y="-213"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2099,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(2771,-2386)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="765" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1299" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45A" x="1665" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D462" x="2548" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D459" x="3125" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D459" x="3428" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D445" x="3730" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="4495" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45A" x="4985" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-21D2" x="7298" y="0"></use>
|
||||
<g transform="translate(8581,0)">
|
||||
<g transform="translate(0,3389)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-4776.225707977737) scale(1,3.2734907999779583)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-6269"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(1888,2589)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,892)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="914" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="1326" y="0"></use>
|
||||
<g transform="translate(2109,0)">
|
||||
<g transform="translate(342,0)">
|
||||
<rect stroke="none" width="2309" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,607)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-33" x="796" y="-252"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2212" x="1156" y="0"></use>
|
||||
<g transform="translate(1371,0)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-31" x="796" y="-252"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(687,-423)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-36" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-22C5" x="505" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C4" x="788" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(0,-1045)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="914" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="1326" y="0"></use>
|
||||
<g transform="translate(2109,0)">
|
||||
<g transform="translate(342,0)">
|
||||
<rect stroke="none" width="2309" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,601)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-34" x="796" y="-263"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2212" x="1156" y="0"></use>
|
||||
<g transform="translate(1371,0)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-32" x="796" y="-252"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(687,-423)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-36" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-22C5" x="505" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C4" x="788" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(1888,-2690)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="914" y="-213"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(5876,3389)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-4776.225707977737) scale(1,3.2734907999779583)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-6269"></use>
|
||||
</g>
|
||||
<g transform="translate(6548,-2925)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNLATIN-E9" x="764" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D467" x="1213" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D456" x="1684" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D452" x="2034" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="2506" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 19 KiB |
66
images/latex/11e1af98e69d9fe7033e2c0ef7c37709211ddbad.svg
Normal file
@@ -0,0 +1,66 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="34.5ex" height="5.667ex" style="vertical-align: -2.5ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1405.4 14835 2454.8" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<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-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-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-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-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-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>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D434" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1032" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="2093" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="3079" y="0"></use>
|
||||
<g transform="translate(3862,0)">
|
||||
<g transform="translate(342,0)">
|
||||
<rect stroke="none" width="3470" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(356,676)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="987" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="1992" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(60,-778)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="456" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="990" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="1356" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="1706" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="2196" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="2590" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2956" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="8072" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="9133" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="10119" y="0"></use>
|
||||
<g transform="translate(10902,0)">
|
||||
<g transform="translate(342,0)">
|
||||
<rect stroke="none" width="3470" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(356,676)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="986" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="1991" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(60,-778)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="456" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="990" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="1356" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="1706" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="2196" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="2590" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2956" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.6 KiB |
77
images/latex/1685622f062da4ca1ecaaf639fc99fc6005a219f.svg
Normal file
@@ -0,0 +1,77 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="32.167ex" height="6ex" style="vertical-align: -2.333ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1531.3 13869.5 2556.3" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<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-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-LATINMODERNNORMAL-1D45E" d="M452 431l-138 -556c-2 -9 -4 -15 -4 -22c0 -9 0 -16 48 -16c16 0 26 0 26 -11c0 -20 -13 -20 -18 -20c-33 0 -69 3 -103 3c-33 0 -68 -3 -100 -3c-13 0 -13 11 -13 11c0 20 10 20 23 20c56 1 64 5 72 33l45 179c-36 -36 -75 -60 -118 -60c-73 0 -132 62 -132 160 c0 145 123 293 241 293c32 0 71 -16 93 -70c17 29 57 69 68 69c7 0 10 -6 10 -10zM360 332c0 7 -14 88 -79 88c-41 0 -93 -42 -124 -116c-17 -42 -46 -151 -46 -199c0 -17 4 -94 64 -94c56 0 112 64 127 92c3 4 58 223 58 229Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D462" d="M543 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-43 0 -78 26 -89 67c-17 -22 -53 -67 -119 -67c-54 0 -123 25 -123 120c0 49 21 111 58 210c6 15 17 44 17 68c0 32 -16 33 -25 33c-38 0 -76 -37 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10 c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -17 -63c-26 -69 -54 -148 -54 -204c0 -37 10 -82 62 -82c73 0 113 80 114 84l75 301c8 34 34 35 39 35c15 0 29 -9 29 -27c0 -6 -10 -44 -15 -67c-4 -15 -14 -53 -17 -68l-28 -108c-8 -35 -20 -82 -20 -104 c0 -33 10 -46 31 -46c42 0 61 68 75 124c3 14 4 18 14 18c3 0 12 0 12 -10Z"></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-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-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-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-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-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-LATINMODERNSIZE5-7C" d="M172 -969c0 -18 -15 -32 -33 -32s-32 14 -32 32v2438c0 18 14 32 32 32s33 -14 33 -32v-2438Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="456" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="990" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="1356" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="1706" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="2196" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="2590" y="0"></use>
|
||||
<g transform="translate(2956,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="0" y="0"></use>
|
||||
<g transform="translate(394,-154)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45E" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D462" x="456" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="1034" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D451" x="1568" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="2093" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="2549" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="3083" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D456" x="3449" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D450" x="3799" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="6723" y="0"></use>
|
||||
<g transform="translate(7784,0)">
|
||||
<use xlink:href="#E1-LATINMODERNSIZE5-7C"></use>
|
||||
<g transform="translate(283,0)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="5278" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(926,676)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="0" y="0"></use>
|
||||
<g transform="translate(505,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="513"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="1550" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="2555" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="3060" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(60,-787)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="0" y="0"></use>
|
||||
<g transform="translate(505,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="408"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="1550" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="2555" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="3060" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="3648" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="4653" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSIZE5-7C" x="5801" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.6 KiB |
164
images/latex/2c5ee5f197dbf27d95b2e941ef8a5358ace5531f.svg
Normal file
@@ -0,0 +1,164 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="63.5ex" height="12.333ex" style="vertical-align: -5.667ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -2892.9 27364.4 5285.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-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-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-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-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-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-3C4" d="M459 407c9 -34 -27 -34 -40 -34h-168l18 -342c1 -15 3 -43 -30 -43c-22 0 -33 16 -36 27c-1 4 0 25 1 37l18 321h-83c-21 0 -78 0 -108 -77c-4 -8 -5 -12 -13 -12c-12 0 -14 10 -14 10c-2 6 14 54 38 90c32 47 71 47 91 47h280c19 0 40 0 46 -24Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-36" d="M457 204c0 -132 -95 -226 -206 -226c-93 0 -209 71 -209 338c0 221 135 350 263 350c83 0 127 -48 127 -108c0 -39 -30 -48 -46 -48c-22 0 -46 15 -46 46c0 45 40 45 55 45c-22 34 -64 40 -88 40c-51 0 -175 -36 -175 -289v-24c20 48 57 99 125 99 c111 0 200 -96 200 -223zM367 205c0 49 0 100 -18 137c-31 62 -77 62 -93 62c-90 0 -122 -100 -122 -178c0 -18 0 -98 18 -145c6 -15 36 -75 99 -75c23 0 69 5 99 65c17 36 17 86 17 134Z"></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-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-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-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-LATINMODERNSYMBOLS-23A1" d="M647 1470c0 -17 -13 -30 -30 -30h-236v-1440h-60v1500h296c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A3" d="M647 30c0 -17 -13 -30 -30 -30h-296v1500h60v-1440h236c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A2" d="M381 0h-60v1000h60v-1000Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A4" d="M346 0h-60v1440h-236c-17 0 -30 13 -30 30s13 30 30 30h296v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A6" d="M346 0h-296c-17 0 -30 13 -30 30s13 30 30 30h236v1440h60v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A5" d="M346 1000v-1000h-60v1000h60Z"></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-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>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 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>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="1087" y="0"></use>
|
||||
<g transform="translate(1592,0)">
|
||||
<g transform="translate(0,2879)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3765.2745098039213) scale(1,2.272549019607843)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5248"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="2079"></use>
|
||||
<g transform="translate(0,679)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="783" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(139,-721)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="505" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2179)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2307,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="881" y="2079"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="881" y="679"></use>
|
||||
<g transform="translate(0,-721)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="757" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-36" x="1762" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2179)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="727" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="1732" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(5574,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="1919" y="2079"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="1904" y="679"></use>
|
||||
<g transform="translate(0,-721)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="783" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1288" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="1682" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="2439" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="3444" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="3949" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(1038,-2179)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="757" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="1762" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(10918,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="2079"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="679"></use>
|
||||
<g transform="translate(0,-721)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="391" y="-2179"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(13242,2879)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3765.2745098039213) scale(1,2.272549019607843)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5248"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="15784" y="0"></use>
|
||||
<g transform="translate(16845,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="391" y="2050"></use>
|
||||
<g transform="translate(0,650)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-750"></use>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2277,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-36" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(4565,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-750"></use>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(6853,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="-750"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="0" y="-2150"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(8364,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="26104" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D434" x="26609" y="0"></use>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
118
images/latex/340f632d4dc149e9099e47dc63a77e6b959042d2.svg
Normal file
@@ -0,0 +1,118 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="27.833ex" height="12.667ex" style="vertical-align: -5.833ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -2994 12008.1 5488" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D462" d="M543 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-43 0 -78 26 -89 67c-17 -22 -53 -67 -119 -67c-54 0 -123 25 -123 120c0 49 21 111 58 210c6 15 17 44 17 68c0 32 -16 33 -25 33c-38 0 -76 -37 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10 c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -17 -63c-26 -69 -54 -148 -54 -204c0 -37 10 -82 62 -82c73 0 113 80 114 84l75 301c8 34 34 35 39 35c15 0 29 -9 29 -27c0 -6 -10 -44 -15 -67c-4 -15 -14 -53 -17 -68l-28 -108c-8 -35 -20 -82 -20 -104 c0 -33 10 -46 31 -46c42 0 61 68 75 124c3 14 4 18 14 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-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-LATINMODERNNORMAL-1D45E" d="M452 431l-138 -556c-2 -9 -4 -15 -4 -22c0 -9 0 -16 48 -16c16 0 26 0 26 -11c0 -20 -13 -20 -18 -20c-33 0 -69 3 -103 3c-33 0 -68 -3 -100 -3c-13 0 -13 11 -13 11c0 20 10 20 23 20c56 1 64 5 72 33l45 179c-36 -36 -75 -60 -118 -60c-73 0 -132 62 -132 160 c0 145 123 293 241 293c32 0 71 -16 93 -70c17 29 57 69 68 69c7 0 10 -6 10 -10zM360 332c0 7 -14 88 -79 88c-41 0 -93 -42 -124 -116c-17 -42 -46 -151 -46 -199c0 -17 4 -94 64 -94c56 0 112 64 127 92c3 4 58 223 58 229Z"></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-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-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-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-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-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-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>
|
||||
<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-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>
|
||||
</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,1361)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D462" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="577" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="971" y="0"></use>
|
||||
<g transform="translate(1337,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="0" y="0"></use>
|
||||
<g transform="translate(394,-154)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45E" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D462" x="456" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="1034" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D451" x="1568" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="2093" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="2549" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="3083" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D456" x="3449" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D450" x="3799" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="5104" y="0"></use>
|
||||
<g transform="translate(5887,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="5278" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(967,777)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="394" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="982" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="1987" y="0"></use>
|
||||
<g transform="translate(2492,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="513"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(60,-787)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="0" y="0"></use>
|
||||
<g transform="translate(505,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="408"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="1550" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="2555" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="3060" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="3648" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="4653" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(0,-1436)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D462" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="577" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="971" y="0"></use>
|
||||
<g transform="translate(1337,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="0" y="0"></use>
|
||||
<g transform="translate(394,-154)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D450" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D462" x="437" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="1014" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D456" x="1448" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D450" x="1798" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="3690" y="0"></use>
|
||||
<g transform="translate(4473,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="5514" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(1085,777)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="394" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="1121" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="2126" y="0"></use>
|
||||
<g transform="translate(2492,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="557" y="513"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(60,-787)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="517" y="408"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="1045" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="2050" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="2444" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="3171" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="4176" y="0"></use>
|
||||
<g transform="translate(4542,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="557" y="408"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
192
images/latex/3db5be270e6a82cfe8fa78c5989f07c233eb6f5e.svg
Normal file
@@ -0,0 +1,192 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="70.5ex" height="12.167ex" style="vertical-align: -5.5ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -2863.9 30363.2 5227.9" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<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-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-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-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-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-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-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-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-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-36" d="M457 204c0 -132 -95 -226 -206 -226c-93 0 -209 71 -209 338c0 221 135 350 263 350c83 0 127 -48 127 -108c0 -39 -30 -48 -46 -48c-22 0 -46 15 -46 46c0 45 40 45 55 45c-22 34 -64 40 -88 40c-51 0 -175 -36 -175 -289v-24c20 48 57 99 125 99 c111 0 200 -96 200 -223zM367 205c0 49 0 100 -18 137c-31 62 -77 62 -93 62c-90 0 -122 -100 -122 -178c0 -18 0 -98 18 -145c6 -15 36 -75 99 -75c23 0 69 5 99 65c17 36 17 86 17 134Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A1" d="M647 1470c0 -17 -13 -30 -30 -30h-236v-1440h-60v1500h296c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A3" d="M647 30c0 -17 -13 -30 -30 -30h-296v1500h60v-1440h236c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A2" d="M381 0h-60v1000h60v-1000Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A4" d="M346 0h-60v1440h-236c-17 0 -30 13 -30 30s13 30 30 30h296v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A6" d="M346 0h-296c-17 0 -30 13 -30 30s13 30 30 30h236v1440h60v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A5" d="M346 1000v-1000h-60v1000h60Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-3C4" d="M459 407c9 -34 -27 -34 -40 -34h-168l18 -342c1 -15 3 -43 -30 -43c-22 0 -33 16 -36 27c-1 4 0 25 1 37l18 321h-83c-21 0 -78 0 -108 -77c-4 -8 -5 -12 -13 -12c-12 0 -14 10 -14 10c-2 6 14 54 38 90c32 47 71 47 91 47h280c19 0 40 0 46 -24Z"></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-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-5B"></use>
|
||||
<g transform="translate(450,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="-11" y="-71"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1494" y="-71"></use>
|
||||
<g transform="translate(2860,0)">
|
||||
<g transform="translate(0,-71)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="513"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(4683,0)">
|
||||
<g transform="translate(0,-71)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="517" y="513"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-5D" x="6123" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="6628" y="0"></use>
|
||||
<g transform="translate(7134,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="391" y="2050"></use>
|
||||
<g transform="translate(0,650)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-750"></use>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2277,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-36" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(4565,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-750"></use>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(6853,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="-750"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="0" y="-2150"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(8364,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="16392" y="0"></use>
|
||||
<g transform="translate(16675,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-36" x="60" y="-696"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="17985" y="0"></use>
|
||||
<g transform="translate(18490,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="2050"></use>
|
||||
<g transform="translate(0,650)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="-750"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(2307,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-36" x="15" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-36" x="15" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="0" y="-750"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="15" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(3842,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="15" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="0" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="15" y="-750"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-36" x="15" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(5377,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="-2150"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(7701,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="27086" y="0"></use>
|
||||
<g transform="translate(27591,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,2050)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,650)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="914" y="-213"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2099,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
76
images/latex/6995d03a381353483b0977e80c30677aee8660f2.svg
Normal file
@@ -0,0 +1,76 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="39.833ex" height="6ex" style="vertical-align: -2.5ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1549.3 17121.8 2598.7" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<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-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-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-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-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-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-1D452" d="M430 107c0 -12 -84 -118 -227 -118c-98 0 -157 79 -157 181c0 175 151 272 262 272c69 0 107 -41 107 -85c0 -14 -5 -73 -75 -103c-50 -21 -124 -23 -153 -23h-53c-15 -61 -16 -92 -16 -104c0 -32 9 -116 87 -116c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13z M382 357c0 34 -27 63 -74 63c-26 0 -129 -15 -168 -167h41c41 0 201 0 201 104Z"></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-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-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>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="456" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="990" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="1356" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="1706" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="2196" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="2590" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2956" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="3627" y="0"></use>
|
||||
<g transform="translate(4410,0)">
|
||||
<g transform="translate(397,0)">
|
||||
<rect stroke="none" width="6649" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,777)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D451" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="525" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="875" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1349" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="1715" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="2249" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="2854" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D452" x="3292" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="3763" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="4157" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="4921" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="5370" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="6135" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(65,-778)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D451" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="525" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="875" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1349" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="1715" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="2249" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="2854" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D452" x="3292" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="3763" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D434" x="4157" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="4912" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="5361" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="6125" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="11856" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="12916" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="13681" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="14171" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="14776" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="15250" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="15616" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="16150" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="16755" y="0"></use>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
219
images/latex/77d5c2f03984dd0ddd8d52b17be6d184247e1642.svg
Normal file
@@ -0,0 +1,219 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="78.833ex" height="12.167ex" style="vertical-align: -5.5ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -2863.9 33967 5227.9" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<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-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-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-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-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-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-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-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-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-LATINMODERNSYMBOLS-23A1" d="M647 1470c0 -17 -13 -30 -30 -30h-236v-1440h-60v1500h296c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A3" d="M647 30c0 -17 -13 -30 -30 -30h-296v1500h60v-1440h236c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A2" d="M381 0h-60v1000h60v-1000Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A4" d="M346 0h-60v1440h-236c-17 0 -30 13 -30 30s13 30 30 30h296v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A6" d="M346 0h-296c-17 0 -30 13 -30 30s13 30 30 30h236v1440h60v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A5" d="M346 1000v-1000h-60v1000h60Z"></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-3C4" d="M459 407c9 -34 -27 -34 -40 -34h-168l18 -342c1 -15 3 -43 -30 -43c-22 0 -33 16 -36 27c-1 4 0 25 1 37l18 321h-83c-21 0 -78 0 -108 -77c-4 -8 -5 -12 -13 -12c-12 0 -14 10 -14 10c-2 6 14 54 38 90c32 47 71 47 91 47h280c19 0 40 0 46 -24Z"></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-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>
|
||||
<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-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-3D" x="0" y="0"></use>
|
||||
<g transform="translate(1060,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-5B"></use>
|
||||
<g transform="translate(450,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="-11" y="-71"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1494" y="-71"></use>
|
||||
<g transform="translate(2860,0)">
|
||||
<g transform="translate(0,-71)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="513"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(4683,0)">
|
||||
<g transform="translate(0,-71)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="517" y="513"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-5D" x="6123" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="7689" y="0"></use>
|
||||
<g transform="translate(8194,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="391" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(2277,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-750"></use>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(4565,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="391" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="391" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(6853,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="391" y="-2150"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(9147,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="18236" y="0"></use>
|
||||
<g transform="translate(18741,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-239B" x="0" y="-1505"></use>
|
||||
<g transform="translate(0,-3691.1776061776063) scale(1,4.382239382239383)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-239C"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-239D" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(880,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-LATINMODERNMAIN-22C5" x="1967" y="0"></use>
|
||||
<g transform="translate(2472,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(2307,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="406" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="-750"></use>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(4625,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="15" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="15" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="0" y="-750"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="15" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(6160,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="15" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="15" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="15" y="-750"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="0" y="-2150"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(7701,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(10845,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-239E" x="0" y="-1505"></use>
|
||||
<g transform="translate(0,-3691.1776061776063) scale(1,4.382239382239383)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-239F"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A0" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="30690" y="0"></use>
|
||||
<g transform="translate(31195,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,2050)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,650)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="914" y="-213"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2099,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 14 KiB |
52
images/latex/7f1cef6da583e2809205a3d42304a78ec353a2bd.svg
Normal file
@@ -0,0 +1,52 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="29.333ex" height="2.5ex" style="vertical-align: -0.667ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -771.9 12639.2 1043.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-1D462" d="M543 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-43 0 -78 26 -89 67c-17 -22 -53 -67 -119 -67c-54 0 -123 25 -123 120c0 49 21 111 58 210c6 15 17 44 17 68c0 32 -16 33 -25 33c-38 0 -76 -37 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10 c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -17 -63c-26 -69 -54 -148 -54 -204c0 -37 10 -82 62 -82c73 0 113 80 114 84l75 301c8 34 34 35 39 35c15 0 29 -9 29 -27c0 -6 -10 -44 -15 -67c-4 -15 -14 -53 -17 -68l-28 -108c-8 -35 -20 -82 -20 -104 c0 -33 10 -46 31 -46c42 0 61 68 75 124c3 14 4 18 14 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-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-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-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-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-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-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-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-1D452" d="M430 107c0 -12 -84 -118 -227 -118c-98 0 -157 79 -157 181c0 175 151 272 262 272c69 0 107 -41 107 -85c0 -14 -5 -73 -75 -103c-50 -21 -124 -23 -153 -23h-53c-15 -61 -16 -92 -16 -104c0 -32 9 -116 87 -116c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13z M382 357c0 34 -27 63 -74 63c-26 0 -129 -15 -168 -167h41c41 0 201 0 201 104Z"></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-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-1D436" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1042" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D462" x="2103" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="2902" y="0"></use>
|
||||
<g transform="translate(3408,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<g transform="translate(647,-150)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D460" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="474" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="840" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="1374" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1830" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="5930" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="6935" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="7329" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="8056" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D462" x="9061" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="9638" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="10254" y="0"></use>
|
||||
<g transform="translate(10760,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<g transform="translate(647,-154)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D452" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="471" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D451" x="1076" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.6 KiB |
78
images/latex/a7ec3900b65b8aab2adf2450e2525b545de7872e.svg
Normal file
@@ -0,0 +1,78 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="28ex" height="12.167ex" style="vertical-align: -5.5ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -2863.9 12059.5 5227.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-36" d="M457 204c0 -132 -95 -226 -206 -226c-93 0 -209 71 -209 338c0 221 135 350 263 350c83 0 127 -48 127 -108c0 -39 -30 -48 -46 -48c-22 0 -46 15 -46 46c0 45 40 45 55 45c-22 34 -64 40 -88 40c-51 0 -175 -36 -175 -289v-24c20 48 57 99 125 99 c111 0 200 -96 200 -223zM367 205c0 49 0 100 -18 137c-31 62 -77 62 -93 62c-90 0 -122 -100 -122 -178c0 -18 0 -98 18 -145c6 -15 36 -75 99 -75c23 0 69 5 99 65c17 36 17 86 17 134Z"></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-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-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-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-3C4" d="M459 407c9 -34 -27 -34 -40 -34h-168l18 -342c1 -15 3 -43 -30 -43c-22 0 -33 16 -36 27c-1 4 0 25 1 37l18 321h-83c-21 0 -78 0 -108 -77c-4 -8 -5 -12 -13 -12c-12 0 -14 10 -14 10c-2 6 14 54 38 90c32 47 71 47 91 47h280c19 0 40 0 46 -24Z"></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-LATINMODERNSYMBOLS-23A1" d="M647 1470c0 -17 -13 -30 -30 -30h-236v-1440h-60v1500h296c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A3" d="M647 30c0 -17 -13 -30 -30 -30h-296v1500h60v-1440h236c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A2" d="M381 0h-60v1000h60v-1000Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A4" d="M346 0h-60v1440h-236c-17 0 -30 13 -30 30s13 30 30 30h296v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A6" d="M346 0h-296c-17 0 -30 13 -30 30s13 30 30 30h236v1440h60v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A5" d="M346 1000v-1000h-60v1000h60Z"></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-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>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 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-36" x="60" y="-696"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="1087" y="0"></use>
|
||||
<g transform="translate(1592,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="2050"></use>
|
||||
<g transform="translate(0,650)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="-750"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(2307,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-36" x="15" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-36" x="15" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="0" y="-750"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="15" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(3842,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="15" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="0" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="15" y="-750"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-36" x="15" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(5377,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="-2150"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(7701,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="10243" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D434" x="11304" y="0"></use>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.3 KiB |
135
images/latex/aa16982d677e180a1c1b8215f866165011b4586c.svg
Normal file
@@ -0,0 +1,135 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="47.667ex" height="12.667ex" style="vertical-align: -5.833ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -2984.6 20502 5469.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<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-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-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-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-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-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-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-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-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-LATINMODERNSYMBOLS-23A1" d="M647 1470c0 -17 -13 -30 -30 -30h-236v-1440h-60v1500h296c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A3" d="M647 30c0 -17 -13 -30 -30 -30h-296v1500h60v-1440h236c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A2" d="M381 0h-60v1000h60v-1000Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A4" d="M346 0h-60v1440h-236c-17 0 -30 13 -30 30s13 30 30 30h296v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A6" d="M346 0h-296c-17 0 -30 13 -30 30s13 30 30 30h236v1440h60v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A5" d="M346 1000v-1000h-60v1000h60Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D449" d="M769 671c0 0 -1 -18 -13 -19c-37 -2 -79 -5 -128 -83l-360 -573c-8 -13 -12 -18 -28 -18c-13 0 -17 3 -20 23l-79 617c-3 25 -4 34 -60 34c-16 0 -25 0 -25 12c0 19 12 19 19 19c17 0 36 -2 54 -2s37 -1 55 -1c41 0 84 3 124 3c6 0 14 -2 14 -11c0 -20 -11 -20 -25 -20 c-46 0 -69 -13 -69 -30l68 -529l307 488s15 23 15 38c0 21 -19 31 -46 33c-7 0 -16 1 -16 12c0 19 13 19 19 19c32 0 66 -3 99 -3c27 0 56 3 82 3c8 0 13 -4 13 -12Z"></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>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-5B"></use>
|
||||
<g transform="translate(450,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="-11" y="-71"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1494" y="-71"></use>
|
||||
<g transform="translate(2860,0)">
|
||||
<g transform="translate(0,-71)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="513"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(4683,0)">
|
||||
<g transform="translate(0,-71)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="517" y="513"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-5D" x="6123" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="6628" y="0"></use>
|
||||
<g transform="translate(7134,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="391" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(2277,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-750"></use>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(4565,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="391" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="391" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(6853,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="391" y="-2150"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(9147,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="17175" y="0"></use>
|
||||
<g transform="translate(17681,0)">
|
||||
<g transform="translate(0,2970)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3946.741906691984) scale(1,2.4522197095960236)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5432"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(54,2170)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D449" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="831" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(54,770)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D449" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="831" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-630)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D449" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="1173" y="67"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="831" y="-444"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D449" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="1173" y="67"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="831" y="-444"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2148,2970)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3946.741906691984) scale(1,2.4522197095960236)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5432"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.0 KiB |
69
images/latex/bfbb5da1e08a72accd3e09e418f41f5da68bc35c.svg
Normal file
@@ -0,0 +1,69 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="34.667ex" height="5.333ex" style="vertical-align: -1.667ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1589.3 14941.7 2314.7" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<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-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-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-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-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-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>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D434" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="1067" y="583"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1356" y="0"></use>
|
||||
<g transform="translate(2417,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="583"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="3726" y="0"></use>
|
||||
<g transform="translate(4509,0)">
|
||||
<g transform="translate(342,0)">
|
||||
<rect stroke="none" width="3199" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,676)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="987" y="0"></use>
|
||||
<g transform="translate(1992,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="513"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(501,-691)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="456" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="990" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="1356" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="1706" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="8449" y="0"></use>
|
||||
<g transform="translate(9510,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="583"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="10820" y="0"></use>
|
||||
<g transform="translate(11603,0)">
|
||||
<g transform="translate(342,0)">
|
||||
<rect stroke="none" width="2876" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,676)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="986" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D436" x="1991" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(340,-691)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="456" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="990" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="1356" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="1706" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.3 KiB |
180
images/latex/c647d1f7783f27d9360693a31748cc128456e0db.svg
Normal file
@@ -0,0 +1,180 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="57ex" height="14.667ex" style="vertical-align: -6.833ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -3403.4 24507.9 6306.8" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<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-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-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-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-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-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-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-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-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-36" d="M457 204c0 -132 -95 -226 -206 -226c-93 0 -209 71 -209 338c0 221 135 350 263 350c83 0 127 -48 127 -108c0 -39 -30 -48 -46 -48c-22 0 -46 15 -46 46c0 45 40 45 55 45c-22 34 -64 40 -88 40c-51 0 -175 -36 -175 -289v-24c20 48 57 99 125 99 c111 0 200 -96 200 -223zM367 205c0 49 0 100 -18 137c-31 62 -77 62 -93 62c-90 0 -122 -100 -122 -178c0 -18 0 -98 18 -145c6 -15 36 -75 99 -75c23 0 69 5 99 65c17 36 17 86 17 134Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A1" d="M647 1470c0 -17 -13 -30 -30 -30h-236v-1440h-60v1500h296c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A3" d="M647 30c0 -17 -13 -30 -30 -30h-296v1500h60v-1440h236c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A2" d="M381 0h-60v1000h60v-1000Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A4" d="M346 0h-60v1440h-236c-17 0 -30 13 -30 30s13 30 30 30h296v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A6" d="M346 0h-296c-17 0 -30 13 -30 30s13 30 30 30h236v1440h60v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A5" d="M346 1000v-1000h-60v1000h60Z"></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-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-3C4" d="M459 407c9 -34 -27 -34 -40 -34h-168l18 -342c1 -15 3 -43 -30 -43c-22 0 -33 16 -36 27c-1 4 0 25 1 37l18 321h-83c-21 0 -78 0 -108 -77c-4 -8 -5 -12 -13 -12c-12 0 -14 10 -14 10c-2 6 14 54 38 90c32 47 71 47 91 47h280c19 0 40 0 46 -24Z"></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-3D" x="0" y="0"></use>
|
||||
<g transform="translate(1060,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-5B"></use>
|
||||
<g transform="translate(450,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="-11" y="-71"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1494" y="-71"></use>
|
||||
<g transform="translate(2860,0)">
|
||||
<g transform="translate(0,-71)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="513"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(4683,0)">
|
||||
<g transform="translate(0,-71)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="517" y="513"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-5D" x="6123" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="7689" y="0"></use>
|
||||
<g transform="translate(8194,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="391" y="2050"></use>
|
||||
<g transform="translate(0,650)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-750"></use>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2277,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-36" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(4565,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-750"></use>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(6853,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="-750"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="0" y="-2150"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(8364,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="17453" y="0"></use>
|
||||
<g transform="translate(17958,0)">
|
||||
<g transform="translate(0,3389)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-4776.225707977737) scale(1,3.2734907999779583)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-6269"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(1888,2589)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,892)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="914" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="1326" y="0"></use>
|
||||
<g transform="translate(2109,0)">
|
||||
<g transform="translate(342,0)">
|
||||
<rect stroke="none" width="2309" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,607)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-33" x="796" y="-252"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2212" x="1156" y="0"></use>
|
||||
<g transform="translate(1371,0)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-31" x="796" y="-252"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(687,-423)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-36" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-22C5" x="505" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C4" x="788" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(0,-1045)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="914" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="1326" y="0"></use>
|
||||
<g transform="translate(2109,0)">
|
||||
<g transform="translate(342,0)">
|
||||
<rect stroke="none" width="2309" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,601)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-34" x="796" y="-263"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2212" x="1156" y="0"></use>
|
||||
<g transform="translate(1371,0)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-32" x="796" y="-252"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(687,-423)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-36" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-22C5" x="505" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C4" x="788" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(1888,-2690)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="914" y="-213"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(5876,3389)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-4776.225707977737) scale(1,3.2734907999779583)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-6269"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
190
images/latex/cab51098777fc55c4c58f3e73efc7c9cdeb10111.svg
Normal file
@@ -0,0 +1,190 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="55ex" height="14.667ex" style="vertical-align: -6.833ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -3396.3 23670.2 6292.7" 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-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-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-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-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-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-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-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-LATINMODERNSYMBOLS-23A1" d="M647 1470c0 -17 -13 -30 -30 -30h-236v-1440h-60v1500h296c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A3" d="M647 30c0 -17 -13 -30 -30 -30h-296v1500h60v-1440h236c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A2" d="M381 0h-60v1000h60v-1000Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A4" d="M346 0h-60v1440h-236c-17 0 -30 13 -30 30s13 30 30 30h296v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A6" d="M346 0h-296c-17 0 -30 13 -30 30s13 30 30 30h236v1440h60v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A5" d="M346 1000v-1000h-60v1000h60Z"></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-LATINMODERNMAIN-3C4" d="M459 407c9 -34 -27 -34 -40 -34h-168l18 -342c1 -15 3 -43 -30 -43c-22 0 -33 16 -36 27c-1 4 0 25 1 37l18 321h-83c-21 0 -78 0 -108 -77c-4 -8 -5 -12 -13 -12c-12 0 -14 10 -14 10c-2 6 14 54 38 90c32 47 71 47 91 47h280c19 0 40 0 46 -24Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-21D2" d="M939 250c0 -6 -4 -11 -9 -13c-72 -19 -134 -60 -188 -107c-44 -39 -81 -86 -108 -139c-3 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-607c-11 0 -20 9 -20 20s9 20 20 20h651c40 32 84 58 132 77c-48 19 -92 45 -132 77h-651 c-11 0 -20 9 -20 20s9 20 20 20h607c-35 36 -65 78 -89 124c-1 3 -2 6 -2 9c0 11 9 20 20 20c8 0 15 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 188 -107c5 -2 9 -7 9 -13Z"></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>
|
||||
</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-22C5" x="931" y="0"></use>
|
||||
<g transform="translate(1436,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,2050)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,650)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="914" y="-213"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2099,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="4485" y="0"></use>
|
||||
<g transform="translate(5546,0)">
|
||||
<g transform="translate(0,3382)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-4762.222220742475) scale(1,3.2596259611311638)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-6255"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(722,2582)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(722,1182)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-516)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="2309" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,607)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-33" x="796" y="-252"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2212" x="1156" y="0"></use>
|
||||
<g transform="translate(1371,0)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-31" x="796" y="-252"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(687,-423)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-22C5" x="505" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C4" x="788" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(0,-2445)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="2309" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,601)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-34" x="796" y="-263"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2212" x="1156" y="0"></use>
|
||||
<g transform="translate(1371,0)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-32" x="796" y="-252"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(687,-423)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-22C5" x="505" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-3C4" x="788" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(3545,3382)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-4762.222220742475) scale(1,3.2596259611311638)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-6255"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-21D2" x="10041" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D447" x="11656" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="12643" y="0"></use>
|
||||
<g transform="translate(13426,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-32" x="60" y="-696"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="14791" y="0"></use>
|
||||
<g transform="translate(15296,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(2307,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="406" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="-750"></use>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(4625,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="15" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="15" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="0" y="-750"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="15" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(6160,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="15" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="15" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="15" y="-750"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="0" y="-2150"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(7701,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 13 KiB |
169
images/latex/cb66f7e99e6bac98e0a761599814ba714db7dd6b.svg
Normal file
@@ -0,0 +1,169 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="63.167ex" height="12.333ex" style="vertical-align: -5.667ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -2892.9 27200.9 5285.9" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<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-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-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-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-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-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-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-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-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-3C4" d="M459 407c9 -34 -27 -34 -40 -34h-168l18 -342c1 -15 3 -43 -30 -43c-22 0 -33 16 -36 27c-1 4 0 25 1 37l18 321h-83c-21 0 -78 0 -108 -77c-4 -8 -5 -12 -13 -12c-12 0 -14 10 -14 10c-2 6 14 54 38 90c32 47 71 47 91 47h280c19 0 40 0 46 -24Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-36" d="M457 204c0 -132 -95 -226 -206 -226c-93 0 -209 71 -209 338c0 221 135 350 263 350c83 0 127 -48 127 -108c0 -39 -30 -48 -46 -48c-22 0 -46 15 -46 46c0 45 40 45 55 45c-22 34 -64 40 -88 40c-51 0 -175 -36 -175 -289v-24c20 48 57 99 125 99 c111 0 200 -96 200 -223zM367 205c0 49 0 100 -18 137c-31 62 -77 62 -93 62c-90 0 -122 -100 -122 -178c0 -18 0 -98 18 -145c6 -15 36 -75 99 -75c23 0 69 5 99 65c17 36 17 86 17 134Z"></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-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-LATINMODERNSYMBOLS-23A1" d="M647 1470c0 -17 -13 -30 -30 -30h-236v-1440h-60v1500h296c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A3" d="M647 30c0 -17 -13 -30 -30 -30h-296v1500h60v-1440h236c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A2" d="M381 0h-60v1000h60v-1000Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A4" d="M346 0h-60v1440h-236c-17 0 -30 13 -30 30s13 30 30 30h296v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A6" d="M346 0h-296c-17 0 -30 13 -30 30s13 30 30 30h236v1440h60v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A5" d="M346 1000v-1000h-60v1000h60Z"></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>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="0" y="0"></use>
|
||||
<g transform="translate(1060,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-5B"></use>
|
||||
<g transform="translate(450,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="-11" y="-71"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1494" y="-71"></use>
|
||||
<g transform="translate(2860,0)">
|
||||
<g transform="translate(0,-71)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="513"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(4683,0)">
|
||||
<g transform="translate(0,-71)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="517" y="513"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-5D" x="6123" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="7689" y="0"></use>
|
||||
<g transform="translate(7972,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-32" x="60" y="-696"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="9282" y="0"></use>
|
||||
<g transform="translate(9787,0)">
|
||||
<g transform="translate(0,2879)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3765.2745098039213) scale(1,2.272549019607843)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5248"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="2079"></use>
|
||||
<g transform="translate(0,679)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="783" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(139,-721)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="505" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2179)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2307,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="881" y="2079"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="881" y="679"></use>
|
||||
<g transform="translate(0,-721)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="757" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-36" x="1762" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2179)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="727" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="1732" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(5574,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="1919" y="2079"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="1904" y="679"></use>
|
||||
<g transform="translate(0,-721)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="783" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1288" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="1682" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="2439" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="3444" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="3949" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(1038,-2179)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="757" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="1762" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(10918,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="2079"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="679"></use>
|
||||
<g transform="translate(0,-721)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="391" y="-2179"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(13242,2879)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3765.2745098039213) scale(1,2.272549019607843)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5248"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="23924" y="0"></use>
|
||||
<g transform="translate(24429,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,2050)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,650)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="914" y="-213"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2099,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
282
images/latex/d16c67a21b318295729cc2b9bd55a30e40e7e981.svg
Normal file
@@ -0,0 +1,282 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="113ex" height="12.333ex" style="vertical-align: -5.667ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -2892.9 48630.9 5285.9" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<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-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-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-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-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-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-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-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-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-3C4" d="M459 407c9 -34 -27 -34 -40 -34h-168l18 -342c1 -15 3 -43 -30 -43c-22 0 -33 16 -36 27c-1 4 0 25 1 37l18 321h-83c-21 0 -78 0 -108 -77c-4 -8 -5 -12 -13 -12c-12 0 -14 10 -14 10c-2 6 14 54 38 90c32 47 71 47 91 47h280c19 0 40 0 46 -24Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNMAIN-36" d="M457 204c0 -132 -95 -226 -206 -226c-93 0 -209 71 -209 338c0 221 135 350 263 350c83 0 127 -48 127 -108c0 -39 -30 -48 -46 -48c-22 0 -46 15 -46 46c0 45 40 45 55 45c-22 34 -64 40 -88 40c-51 0 -175 -36 -175 -289v-24c20 48 57 99 125 99 c111 0 200 -96 200 -223zM367 205c0 49 0 100 -18 137c-31 62 -77 62 -93 62c-90 0 -122 -100 -122 -178c0 -18 0 -98 18 -145c6 -15 36 -75 99 -75c23 0 69 5 99 65c17 36 17 86 17 134Z"></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-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-LATINMODERNSYMBOLS-23A1" d="M647 1470c0 -17 -13 -30 -30 -30h-236v-1440h-60v1500h296c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A3" d="M647 30c0 -17 -13 -30 -30 -30h-296v1500h60v-1440h236c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A2" d="M381 0h-60v1000h60v-1000Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A4" d="M346 0h-60v1440h-236c-17 0 -30 13 -30 30s13 30 30 30h296v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A6" d="M346 0h-296c-17 0 -30 13 -30 30s13 30 30 30h236v1440h60v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A5" d="M346 1000v-1000h-60v1000h60Z"></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-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-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>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-5B"></use>
|
||||
<g transform="translate(450,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="-11" y="-71"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1494" y="-71"></use>
|
||||
<g transform="translate(2860,0)">
|
||||
<g transform="translate(0,-71)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="513"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(4683,0)">
|
||||
<g transform="translate(0,-71)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="517" y="513"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-5D" x="6123" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="6628" y="0"></use>
|
||||
<g transform="translate(6911,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-32" x="60" y="-696"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="8221" y="0"></use>
|
||||
<g transform="translate(8726,0)">
|
||||
<g transform="translate(0,2879)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3765.2745098039213) scale(1,2.272549019607843)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5248"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="2079"></use>
|
||||
<g transform="translate(0,679)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="783" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(139,-721)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="505" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2179)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2307,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="881" y="2079"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="881" y="679"></use>
|
||||
<g transform="translate(0,-721)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="757" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-36" x="1762" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2179)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="727" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="1732" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(5574,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="1919" y="2079"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="1904" y="679"></use>
|
||||
<g transform="translate(0,-721)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="783" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1288" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="1682" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="2439" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="3444" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="3949" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(1038,-2179)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="757" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="1762" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(10918,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="2079"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="679"></use>
|
||||
<g transform="translate(0,-721)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="391" y="-2179"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(13242,2879)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3765.2745098039213) scale(1,2.272549019607843)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5248"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="22863" y="0"></use>
|
||||
<g transform="translate(23368,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,2050)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,650)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="914" y="-213"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2099,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="26417" y="0"></use>
|
||||
<g transform="translate(27478,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-5B"></use>
|
||||
<g transform="translate(450,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="-11" y="-71"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1494" y="-71"></use>
|
||||
<g transform="translate(2860,0)">
|
||||
<g transform="translate(0,-71)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="513"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(4683,0)">
|
||||
<g transform="translate(0,-71)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="517" y="513"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-5D" x="6123" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="34107" y="0"></use>
|
||||
<g transform="translate(34612,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="391" y="2050"></use>
|
||||
<g transform="translate(0,650)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-750"></use>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2277,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-36" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(4565,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-750"></use>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(6853,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="-750"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="0" y="-2150"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(8364,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="43871" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D434" x="44376" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="45354" y="0"></use>
|
||||
<g transform="translate(45859,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,2050)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,650)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="914" y="-213"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2099,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 17 KiB |
220
images/latex/d92a259e763a4af2e1de7835ac45dc6f3b564014.svg
Normal file
@@ -0,0 +1,220 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="65.5ex" height="14.5ex" style="vertical-align: -6.667ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -3387.9 28208.3 6275.7" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<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-1D449" d="M769 671c0 0 -1 -18 -13 -19c-37 -2 -79 -5 -128 -83l-360 -573c-8 -13 -12 -18 -28 -18c-13 0 -17 3 -20 23l-79 617c-3 25 -4 34 -60 34c-16 0 -25 0 -25 12c0 19 12 19 19 19c17 0 36 -2 54 -2s37 -1 55 -1c41 0 84 3 124 3c6 0 14 -2 14 -11c0 -20 -11 -20 -25 -20 c-46 0 -69 -13 -69 -30l68 -529l307 488s15 23 15 38c0 21 -19 31 -46 33c-7 0 -16 1 -16 12c0 19 13 19 19 19c32 0 66 -3 99 -3c27 0 56 3 82 3c8 0 13 -4 13 -12Z"></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>
|
||||
<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-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-LATINMODERNSYMBOLS-23A1" d="M647 1470c0 -17 -13 -30 -30 -30h-236v-1440h-60v1500h296c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A3" d="M647 30c0 -17 -13 -30 -30 -30h-296v1500h60v-1440h236c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A2" d="M381 0h-60v1000h60v-1000Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A4" d="M346 0h-60v1440h-236c-17 0 -30 13 -30 30s13 30 30 30h296v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A6" d="M346 0h-296c-17 0 -30 13 -30 30s13 30 30 30h236v1440h60v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A5" d="M346 1000v-1000h-60v1000h60Z"></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-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-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-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-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-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-21D2" d="M939 250c0 -6 -4 -11 -9 -13c-72 -19 -134 -60 -188 -107c-44 -39 -81 -86 -108 -139c-3 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-607c-11 0 -20 9 -20 20s9 20 20 20h651c40 32 84 58 132 77c-48 19 -92 45 -132 77h-651 c-11 0 -20 9 -20 20s9 20 20 20h607c-35 36 -65 78 -89 124c-1 3 -2 6 -2 9c0 11 9 20 20 20c8 0 15 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 188 -107c5 -2 9 -7 9 -13Z"></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>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<g transform="translate(0,2970)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3946.741906691984) scale(1,2.4522197095960236)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5432"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(54,2170)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D449" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="831" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(54,770)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D449" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="831" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-630)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D449" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="1173" y="67"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="831" y="-444"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D449" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="1173" y="67"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="831" y="-444"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2148,2970)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3946.741906691984) scale(1,2.4522197095960236)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5432"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="3098" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D447" x="4159" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="5090" y="0"></use>
|
||||
<g transform="translate(5595,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,2050)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,650)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="914" y="-213"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2099,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="8645" y="0"></use>
|
||||
<g transform="translate(9706,0)">
|
||||
<g transform="translate(0,3373)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-4745.41803606016) scale(1,3.2429881545150097)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-6238"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(722,2573)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(722,1173)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-524)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="2309" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,607)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-33" x="796" y="-252"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2212" x="1156" y="0"></use>
|
||||
<g transform="translate(1371,0)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-31" x="796" y="-252"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="1380" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(0,-2445)">
|
||||
<g transform="translate(120,0)">
|
||||
<rect stroke="none" width="2309" height="60" x="0" y="220"></rect>
|
||||
<g transform="translate(60,601)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-34" x="796" y="-263"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2212" x="1156" y="0"></use>
|
||||
<g transform="translate(1371,0)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-32" x="796" y="-252"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="1380" y="-598"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(3545,3373)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-4745.41803606016) scale(1,3.2429881545150097)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-6238"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-21D2" x="14699" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D447" x="16314" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="17301" y="0"></use>
|
||||
<g transform="translate(18084,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-32" x="60" y="-696"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="19449" y="0"></use>
|
||||
<g transform="translate(19954,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(2277,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="-750"></use>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(4565,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="0" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="0" y="-750"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(6070,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="-750"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="0" y="-2150"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(7581,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 14 KiB |
159
images/latex/e998783864c533514df9bda833f68b01b7a78aa6.svg
Normal file
@@ -0,0 +1,159 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="47ex" height="12.5ex" style="vertical-align: -5.833ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -2921.9 20231.1 5401.9" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<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-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-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-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-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-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-LATINMODERNSYMBOLS-23A1" d="M647 1470c0 -17 -13 -30 -30 -30h-236v-1440h-60v1500h296c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A3" d="M647 30c0 -17 -13 -30 -30 -30h-296v1500h60v-1440h236c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A2" d="M381 0h-60v1000h60v-1000Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A4" d="M346 0h-60v1440h-236c-17 0 -30 13 -30 30s13 30 30 30h296v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A6" d="M346 0h-296c-17 0 -30 13 -30 30s13 30 30 30h236v1440h60v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A5" d="M346 1000v-1000h-60v1000h60Z"></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-LATINMODERNLATIN-E9" d="M415 119c0 -19 -45 -130 -167 -130c-115 0 -220 97 -220 231c0 125 92 228 208 228c125 0 179 -97 179 -196c0 -21 -3 -21 -25 -21h-279c0 -36 0 -102 30 -150c23 -37 63 -67 113 -67c10 0 100 0 135 103c2 8 4 14 13 14c5 0 13 -2 13 -12zM349 252 c0 39 -10 174 -113 174c-34 0 -118 -25 -124 -174h237zM346 662c0 -12 -8 -23 -17 -30l-152 -122l-17 18l120 153c4 6 15 17 30 17c18 0 36 -18 36 -36Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D467" d="M467 432c0 -4 -22 -52 -117 -145c-36 -36 -98 -90 -98 -90c-36 -31 -65 -56 -119 -114c9 3 27 3 27 3c21 0 36 -4 70 -17c21 -7 39 -13 59 -13c33 0 97 19 120 84c3 7 5 13 14 13c8 0 12 -5 12 -10c0 -27 -58 -154 -157 -154c-29 0 -47 16 -64 37c-25 29 -35 38 -58 38 c-32 0 -62 -27 -85 -62c-6 -11 -8 -13 -16 -13c0 0 -12 0 -12 10c0 7 35 64 103 131l90 84c19 16 103 88 139 131c-26 0 -37 0 -77 15c-23 8 -42 15 -63 15c-8 0 -66 -1 -85 -47c-2 -6 -4 -11 -13 -11s-12 6 -12 11c0 21 46 114 121 114c33 0 50 -20 69 -43 c15 -17 27 -32 51 -32s45 16 75 64c5 9 8 11 15 11c0 0 11 0 11 -10Z"></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-1D452" d="M430 107c0 -12 -84 -118 -227 -118c-98 0 -157 79 -157 181c0 175 151 272 262 272c69 0 107 -41 107 -85c0 -14 -5 -73 -75 -103c-50 -21 -124 -23 -153 -23h-53c-15 -61 -16 -92 -16 -104c0 -32 9 -116 87 -116c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13z M382 357c0 34 -27 63 -74 63c-26 0 -129 -15 -168 -167h41c41 0 201 0 201 104Z"></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-LATINMODERNMAIN-21D2" d="M939 250c0 -6 -4 -11 -9 -13c-72 -19 -134 -60 -188 -107c-44 -39 -81 -86 -108 -139c-3 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-607c-11 0 -20 9 -20 20s9 20 20 20h651c40 32 84 58 132 77c-48 19 -92 45 -132 77h-651 c-11 0 -20 9 -20 20s9 20 20 20h607c-35 36 -65 78 -89 124c-1 3 -2 6 -2 9c0 11 9 20 20 20c8 0 15 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 188 -107c5 -2 9 -7 9 -13Z"></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-36" d="M457 204c0 -132 -95 -226 -206 -226c-93 0 -209 71 -209 338c0 221 135 350 263 350c83 0 127 -48 127 -108c0 -39 -30 -48 -46 -48c-22 0 -46 15 -46 46c0 45 40 45 55 45c-22 34 -64 40 -88 40c-51 0 -175 -36 -175 -289v-24c20 48 57 99 125 99 c111 0 200 -96 200 -223zM367 205c0 49 0 100 -18 137c-31 62 -77 62 -93 62c-90 0 -122 -100 -122 -178c0 -18 0 -98 18 -145c6 -15 36 -75 99 -75c23 0 69 5 99 65c17 36 17 86 17 134Z"></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-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-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-1D45A" d="M848 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 20 4 31 13 55c20 53 62 167 62 224c0 36 -11 70 -54 70c-109 0 -162 -120 -165 -133l-60 -241c-8 -32 -14 -57 -45 -57c-15 0 -29 9 -29 27c0 5 9 39 13 59c9 33 10 39 20 76l28 116c8 30 15 58 15 83 c0 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 43l58 231c13 52 16 63 16 84c0 38 -15 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23 c0 0 -12 0 -12 10c0 3 13 62 31 97c9 18 28 57 74 57c45 0 87 -30 92 -87c17 23 66 87 156 87c25 0 57 -5 82 -26c28 -24 31 -58 32 -71c37 53 88 97 163 97s115 -42 115 -107c0 -57 -42 -168 -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-LATINMODERNNORMAL-1D462" d="M543 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-43 0 -78 26 -89 67c-17 -22 -53 -67 -119 -67c-54 0 -123 25 -123 120c0 49 21 111 58 210c6 15 17 44 17 68c0 32 -16 33 -25 33c-38 0 -76 -37 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10 c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -17 -63c-26 -69 -54 -148 -54 -204c0 -37 10 -82 62 -82c73 0 113 80 114 84l75 301c8 34 34 35 39 35c15 0 29 -9 29 -27c0 -6 -10 -44 -15 -67c-4 -15 -14 -53 -17 -68l-28 -108c-8 -35 -20 -82 -20 -104 c0 -33 10 -46 31 -46c42 0 61 68 75 124c3 14 4 18 14 18c3 0 12 0 12 -10Z"></path>
|
||||
<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-LATINMODERNNORMAL-1D445" d="M646 553c0 99 -111 99 -182 99c-20 0 -52 0 -61 -1c-19 -3 -22 -13 -28 -37l-65 -261h112c90 0 143 32 169 58c39 39 55 108 55 142zM755 93c0 -14 -35 -115 -120 -115c-13 0 -133 0 -133 108c0 20 9 57 16 85c6 23 14 54 14 69c0 35 -18 91 -109 91h-119l-66 -265 c-1 -6 -3 -11 -3 -17c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -12 -20 -20 -20l-127 3l-126 -3s-14 0 -14 11c0 20 9 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 9 20 29 20h285 c131 0 221 -64 221 -150c0 -101 -119 -171 -220 -193c27 -10 94 -41 94 -118c0 -14 -2 -33 -4 -47c-4 -32 -10 -83 -10 -114c0 -39 7 -61 40 -61c23 0 66 17 91 91c2 7 4 14 13 14c0 0 12 0 12 -12Z"></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)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,2050)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,650)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="914" y="-213"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2099,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(2771,-2386)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNLATIN-E9" x="764" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D467" x="1213" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D456" x="1684" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D452" x="2034" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="2506" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-21D2" x="5243" y="0"></use>
|
||||
<g transform="translate(6526,0)">
|
||||
<g transform="translate(0,2908)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3822.7058823529414) scale(1,2.3294117647058825)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5306"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<g transform="translate(0,2108)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="914" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="1326" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-36" x="2331" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="3058" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="3563" y="0"></use>
|
||||
<g transform="translate(3957,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="914" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="5284" y="0"></use>
|
||||
<g transform="translate(6289,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="914" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="7393" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(3341,650)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(3341,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="914" y="-213"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="914" y="-213"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="1326" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-36" x="2331" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="3058" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="3563" y="0"></use>
|
||||
<g transform="translate(3957,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="914" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="5284" y="0"></use>
|
||||
<g transform="translate(6289,0)">
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D443" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="914" y="-213"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="7393" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(8783,2908)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3822.7058823529414) scale(1,2.3294117647058825)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5306"></use>
|
||||
</g>
|
||||
<g transform="translate(9455,-2444)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D436" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="765" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1299" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45A" x="1665" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D462" x="2548" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D459" x="3125" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D459" x="3428" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D445" x="3730" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="4495" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45A" x="4985" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 18 KiB |
289
images/latex/ea8a9fd68d0f0723511dfad29d5dae730c18ddbe.svg
Normal file
@@ -0,0 +1,289 @@
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="129.333ex" height="12.667ex" style="vertical-align: -5.667ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -3068.9 55658.5 5461.9" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<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-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-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-LATINMODERNMAIN-36" d="M457 204c0 -132 -95 -226 -206 -226c-93 0 -209 71 -209 338c0 221 135 350 263 350c83 0 127 -48 127 -108c0 -39 -30 -48 -46 -48c-22 0 -46 15 -46 46c0 45 40 45 55 45c-22 34 -64 40 -88 40c-51 0 -175 -36 -175 -289v-24c20 48 57 99 125 99 c111 0 200 -96 200 -223zM367 205c0 49 0 100 -18 137c-31 62 -77 62 -93 62c-90 0 -122 -100 -122 -178c0 -18 0 -98 18 -145c6 -15 36 -75 99 -75c23 0 69 5 99 65c17 36 17 86 17 134Z"></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-LATINMODERNSYMBOLS-23A1" d="M647 1470c0 -17 -13 -30 -30 -30h-236v-1440h-60v1500h296c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A3" d="M647 30c0 -17 -13 -30 -30 -30h-296v1500h60v-1440h236c17 0 30 -13 30 -30Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A2" d="M381 0h-60v1000h60v-1000Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A4" d="M346 0h-60v1440h-236c-17 0 -30 13 -30 30s13 30 30 30h296v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A6" d="M346 0h-296c-17 0 -30 13 -30 30s13 30 30 30h236v1440h60v-1500Z"></path>
|
||||
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A5" d="M346 1000v-1000h-60v1000h60Z"></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-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-3C4" d="M459 407c9 -34 -27 -34 -40 -34h-168l18 -342c1 -15 3 -43 -30 -43c-22 0 -33 16 -36 27c-1 4 0 25 1 37l18 321h-83c-21 0 -78 0 -108 -77c-4 -8 -5 -12 -13 -12c-12 0 -14 10 -14 10c-2 6 14 54 38 90c32 47 71 47 91 47h280c19 0 40 0 46 -24Z"></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-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-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-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-LATINMODERNNORMAL-1D43C" d="M497 671c0 -19 -8 -19 -32 -19c-79 0 -82 -10 -91 -46l-134 -533c-2 -7 -4 -15 -4 -23c0 -11 4 -15 25 -17c20 -2 25 -2 43 -2c22 0 30 0 30 -12c0 -19 -12 -19 -20 -19l-134 3l-131 -3c-3 0 -15 0 -15 11c0 20 9 20 32 20c79 0 82 10 91 47l135 539c2 9 2 11 2 16 c0 19 -27 19 -69 19c-19 0 -28 0 -28 11c0 20 13 20 20 20l133 -3l132 3c4 0 15 0 15 -12Z"></path>
|
||||
</defs>
|
||||
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="391" y="2050"></use>
|
||||
<g transform="translate(0,650)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-750"></use>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2277,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-36" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(4565,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-750"></use>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(6853,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="-750"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="0" y="-2150"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(8364,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(9036,2576)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="10269" y="0"></use>
|
||||
<g transform="translate(10552,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-32" x="60" y="-696"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="11861" y="0"></use>
|
||||
<g transform="translate(12367,0)">
|
||||
<g transform="translate(0,2879)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3765.2745098039213) scale(1,2.272549019607843)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5248"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="2079"></use>
|
||||
<g transform="translate(0,679)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="783" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(139,-721)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="505" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2179)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2307,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="881" y="2079"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="881" y="679"></use>
|
||||
<g transform="translate(0,-721)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="757" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-36" x="1762" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(0,-2179)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="727" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="1732" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(5574,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="1919" y="2079"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="1904" y="679"></use>
|
||||
<g transform="translate(0,-721)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-32" x="783" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1288" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="1682" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="2439" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="3444" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-29" x="3949" y="0"></use>
|
||||
</g>
|
||||
<g transform="translate(1038,-2179)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="757" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-34" x="1762" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(10918,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="2079"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="406" y="679"></use>
|
||||
<g transform="translate(0,-721)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3C4" x="391" y="-2179"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(13242,2879)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3765.2745098039213) scale(1,2.272549019607843)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5248"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="26559" y="0"></use>
|
||||
<g transform="translate(27620,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="391" y="2050"></use>
|
||||
<g transform="translate(0,650)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-750"></use>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2277,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-36" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(4565,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-750"></use>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(6853,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="-750"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="0" y="-2150"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(8364,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(9036,2576)">
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="37889" y="0"></use>
|
||||
<g transform="translate(38394,0)">
|
||||
<g transform="translate(0,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A2"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A3" x="0" y="-5190"></use>
|
||||
</g>
|
||||
<g transform="translate(839,0)">
|
||||
<g transform="translate(-11,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="391" y="2050"></use>
|
||||
<g transform="translate(0,650)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-750"></use>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(2277,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="650"></use>
|
||||
<g transform="translate(0,-750)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-36" x="783" y="0"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-2150"></use>
|
||||
</g>
|
||||
<g transform="translate(4565,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="391" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="391" y="-750"></use>
|
||||
<g transform="translate(0,-2150)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-33" x="783" y="0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(6853,0)">
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="2050"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="650"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-30" x="0" y="-750"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-31" x="0" y="-2150"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(8364,2850)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A4" x="0" y="-1510"></use>
|
||||
<g transform="translate(0,-3707.843137254902) scale(1,2.215686274509804)">
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A5"></use>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A6" x="0" y="-5190"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="47653" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D434" x="48158" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="49523" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D43C" x="50916" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="51640" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D434" x="52145" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="53510" y="0"></use>
|
||||
<use xlink:href="#E1-LATINMODERNNORMAL-1D434" x="54903" y="0"></use>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 17 KiB |
@@ -18,6 +18,7 @@ figure {
|
||||
|
||||
&:focus {
|
||||
border: 1px solid grey;
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
|
||||
|
11
stylesheets/note.less
Normal file
@@ -0,0 +1,11 @@
|
||||
div.note {
|
||||
font-size: 90%;
|
||||
margin: 1em 2em;
|
||||
padding: 1em;
|
||||
border: 1px solid grey;
|
||||
background: rgba(150,150,50,0.05);
|
||||
|
||||
h1,h2,h3,h4,h5,h6,p { margin: 0; padding: 0; }
|
||||
p { margin: 1em 0; }
|
||||
div.MathJax_Display { margin: 1em 0; }
|
||||
}
|
@@ -22,14 +22,4 @@ section {
|
||||
}
|
||||
}
|
||||
|
||||
div.note {
|
||||
font-size: 90%;
|
||||
margin: 1em 2em;
|
||||
padding: 1em;
|
||||
border: 1px solid grey;
|
||||
background: rgba(150,150,50,0.05);
|
||||
|
||||
* { margin: 0; padding: 0; }
|
||||
p { margin: 1em 0; }
|
||||
div.MathJax_Display { margin: 1em 0; }
|
||||
}
|
||||
@import "note.less";
|
||||
|