Difference between revisions of "User talk:WikiSysop"
m |
|||
(38 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
+ | Test | ||
+ | |||
+ | ==Test external Link 29th January 2015== | ||
+ | 123 | ||
+ | [http://www.math.uni-bielefeld.de/~rehmann/xyzabc Test Link2] | ||
+ | |||
+ | [http://www.ams.org/publications/math-reviews/math-reviews URL on white list] | ||
+ | |||
+ | [http://www.xmachina.de xmachina] | ||
+ | |||
+ | [http://spon.de] | ||
+ | |||
+ | [http://springer.de] | ||
==Test Copy&Paste HTML== | ==Test Copy&Paste HTML== | ||
[[Test-copy-paste]] | [[Test-copy-paste]] | ||
+ | Test | ||
+ | Test | ||
+ | ==Test Asymptote== | ||
+ | ===Test January 12th 2015=== | ||
+ | ====Case 1 modified==== | ||
+ | <asy> | ||
+ | size(0,300); | ||
+ | pair z1=(-1,0); | ||
+ | pair z2=(1,0); | ||
+ | real r=1.5; | ||
+ | path c1=circle(z1,r); | ||
+ | path c2=circle(z2,r); | ||
+ | fill(c1, lightred); | ||
+ | fill(c2, lightgreen); | ||
+ | picture intersection; | ||
+ | fill(intersection,c1,lightred+lightgreen); | ||
+ | clip(intersection,c2); | ||
+ | add(intersection); | ||
+ | draw(c1); | ||
+ | draw(c2); | ||
+ | label("$A$",z1); | ||
+ | label("$B$",z2); | ||
+ | path g=(0,-2)--(0,-0.25); | ||
+ | draw(Label("$A\cap B$",0),g,Arrow); | ||
+ | </asy> | ||
+ | ===Tests November 1th=== | ||
+ | ====Case 1 modified==== | ||
+ | <asy> | ||
+ | size(0,200); | ||
+ | pair z1=(-1,0); | ||
+ | pair z2=(1,0); | ||
+ | real r=1.5; | ||
+ | path c1=circle(z1,r); | ||
+ | path c2=circle(z2,r); | ||
+ | fill(c1, lightred); | ||
+ | fill(c2, lightgreen); | ||
+ | picture intersection; | ||
+ | fill(intersection,c1,lightred+lightgreen); | ||
+ | clip(intersection,c2); | ||
+ | add(intersection); | ||
+ | draw(c1); | ||
+ | draw(c2); | ||
+ | label("$A$",z1); | ||
+ | label("$B$",z2); | ||
+ | path g=(0,-2)--(0,-0.25); | ||
+ | draw(Label("$A\cap B$",0),g,Arrow); | ||
+ | </asy> | ||
+ | ====Case 1==== | ||
+ | <asy> | ||
+ | size(0,100); | ||
+ | pair z1=(-1,0); | ||
+ | pair z2=(1,0); | ||
+ | real r=1.5; | ||
+ | path c1=circle(z1,r); | ||
+ | path c2=circle(z2,r); | ||
+ | fill(c1, lightred); | ||
+ | fill(c2, lightgreen); | ||
+ | picture intersection; | ||
+ | fill(intersection,c1,lightred+lightgreen); | ||
+ | clip(intersection,c2); | ||
+ | add(intersection); | ||
+ | draw(c1); | ||
+ | draw(c2); | ||
+ | label("$A$",z1); | ||
+ | label("$B$",z2); | ||
+ | path g=(0,-2)--(0,-0.25); | ||
+ | draw(Label("$A\cap B$",0),g,Arrow); | ||
+ | </asy> | ||
+ | |||
+ | ===Tests November 17th=== | ||
+ | ====Case 1==== | ||
+ | <asy> | ||
+ | size(0,400); | ||
+ | pair z1=(-1,0); | ||
+ | pair z2=(1,0); | ||
+ | real r=1.5; | ||
+ | path c1=circle(z1,r); | ||
+ | path c2=circle(z2,r); | ||
+ | fill(c1, lightred); | ||
+ | fill(c2, lightgreen); | ||
+ | picture intersection; | ||
+ | fill(intersection,c1,lightred+lightgreen); | ||
+ | clip(intersection,c2); | ||
+ | add(intersection); | ||
+ | draw(c1); | ||
+ | draw(c2); | ||
+ | label("$A$",z1); | ||
+ | label("$B$",z2); | ||
+ | path g=(0,-2)--(0,-0.25); | ||
+ | draw(Label("$A\cap B$",0),g,Arrow); | ||
+ | </asy> | ||
+ | |||
+ | ===Tests November 4th=== | ||
+ | ====Case 1==== | ||
+ | <asy> | ||
+ | size(0,100); | ||
+ | pair z1=(-1,0); | ||
+ | pair z2=(1,0); | ||
+ | real r=1.5; | ||
+ | path c1=circle(z1,r); | ||
+ | path c2=circle(z2,r); | ||
+ | fill(c1, lightred); | ||
+ | fill(c2, lightgreen); | ||
+ | picture intersection; | ||
+ | fill(intersection,c1,lightred+lightgreen); | ||
+ | clip(intersection,c2); | ||
+ | add(intersection); | ||
+ | draw(c1); | ||
+ | draw(c2); | ||
+ | label("$A$",z1); | ||
+ | label("$B$",z2); | ||
+ | path g=(0,-2)--(0,-0.25); | ||
+ | draw(Label("$A\cap B$",0),g,Arrow); | ||
+ | </asy> | ||
+ | |||
+ | ====Case 2==== | ||
+ | <asy> | ||
+ | import graph; | ||
+ | size(150,0); | ||
+ | real f(real x) {return exp(x);} | ||
+ | pair F(real x) {return (x,f(x));} | ||
+ | xaxis("$x$"); | ||
+ | yaxis("$y$",0); | ||
+ | draw(graph(f,-4,2,operator ..),red); | ||
+ | labely(1,E); | ||
+ | label("$eˆx$",F(1),SE); | ||
+ | </asy> | ||
+ | |||
+ | ====Case 3==== | ||
+ | <asy> | ||
+ | import graph; | ||
+ | |||
+ | size(400,200,IgnoreAspect); | ||
+ | |||
+ | real Sin(real t) {return sin(2pi*t);} | ||
+ | real Cos(real t) {return cos(2pi*t);} | ||
+ | |||
+ | draw(graph(Sin,0,1),red,"$\sin(2\pi x)$"); | ||
+ | draw(graph(Cos,0,1),blue,"$\cos(2\pi x)$"); | ||
+ | |||
+ | xaxis("$x$",BottomTop,LeftTicks); | ||
+ | yaxis("$y$",LeftRight,RightTicks(trailingzero)); | ||
+ | |||
+ | label("LABEL",point(0),UnFill(1mm)); | ||
+ | |||
+ | add(legend(),point(E),20E,UnFill); | ||
+ | </asy> | ||
+ | |||
+ | ===Tests October 27th=== | ||
+ | ====Case 1==== | ||
+ | <asy> | ||
+ | draw((0,0)--(3,7),red); | ||
+ | dot((0,0)); | ||
+ | dot((3,7)); | ||
+ | label("Produced with Asymptote "+version.VERSION,point(S),2S); | ||
+ | </asy> | ||
+ | <asy> | ||
+ | size(0,100); | ||
+ | pair z1=(-1,0); | ||
+ | pair z2=(1,0); | ||
+ | real r=1.5; | ||
+ | path c1=circle(z1,r); | ||
+ | path c2=circle(z2,r); | ||
+ | fill(c1, lightred); | ||
+ | fill(c2, lightgreen); | ||
+ | picture intersection; | ||
+ | fill(intersection,c1,lightred+lightgreen); | ||
+ | clip(intersection,c2); | ||
+ | add(intersection); | ||
+ | draw(c1); | ||
+ | draw(c2); | ||
+ | label("$A$",z1); | ||
+ | label("$B$",z2); | ||
+ | path g=(0,-2)--(0,-0.25); | ||
+ | draw(Label("$A\cap B$",0),g,Arrow); | ||
+ | </asy> | ||
+ | |||
+ | ====Case 2==== | ||
+ | <asy> | ||
+ | size(0,2cm); | ||
+ | draw((0,0)--(1,0)--(1,1)--(0,1)--cycle); | ||
+ | label("$W$",(0,0),SW); | ||
+ | label("$X$",(1,0),SE); | ||
+ | label("$Y$",(1,1),NE); | ||
+ | label("$Z$",(0,1),NW); | ||
+ | </asy> | ||
+ | ====Case 3==== | ||
+ | <asy> | ||
+ | import three; | ||
+ | currentprojection=orthographic(5,4,2,center=true); | ||
+ | size(5cm); | ||
+ | size3(3cm,5cm,8cm); | ||
+ | draw(unitbox); | ||
+ | dot(unitbox,red); | ||
+ | label("$O$",(0,0,0),NW); | ||
+ | label("(1,0,0)",(1,0,0),S); | ||
+ | label("(0,1,0)",(0,1,0),E); | ||
+ | label("(0,0,1)",(0,0,1),Z); | ||
+ | </asy> | ||
+ | ====Case 4==== | ||
+ | <asy> | ||
+ | import three; | ||
+ | size(500); | ||
+ | path3 g=(1,0,0)..(0,1,0)..(-1,0,0)..(0,-1,0)..cycle; | ||
+ | draw(g); | ||
+ | draw(O--Z,red+dashed,Arrow3); | ||
+ | draw(((-1,-1,0)--(1,-1,0)--(1,1,0)--(-1,1,0)--cycle)); | ||
+ | dot(g,red); | ||
+ | size(500,0); | ||
+ | path3 g=(1,0,0)..(0,1,1)..(-1,0,0)..(0,-1,1)..cycle; | ||
+ | draw(g); | ||
+ | draw(((-1,-1,0)--(1,-1,0)--(1,1,0)--(-1,1,0)--cycle)); | ||
+ | dot(g,red); | ||
+ | </asy> | ||
+ | ====Case 5==== | ||
+ | [asy] | ||
+ | pair A,B,C,X,Y,Z; | ||
+ | A = (0,0); | ||
+ | B = (1,0); | ||
+ | C = (0.3,0.8); | ||
+ | draw(A--B--C--A); | ||
+ | X = (B+C)/2; | ||
+ | Y = (A+C)/2; | ||
+ | Z = (A+B)/2; | ||
+ | draw(A--X, red); | ||
+ | draw(B--Y,red); | ||
+ | draw(C--Z,red); | ||
+ | [/asy] | ||
+ | |||
+ | ===Previous tests=== | ||
+ | <asy> | ||
+ | draw((0,0)--(3,8),red); | ||
+ | dot((0,0)); | ||
+ | dot((3,7)); | ||
+ | label("Produced with Asymptote "+version.VERSION,point(S),2S); | ||
+ | </asy> | ||
+ | |||
− | |||
<asy> | <asy> | ||
draw((0,0)--(3,7),red); | draw((0,0)--(3,7),red); | ||
Line 29: | Line 278: | ||
draw((0,0){up}..(100,25){right}..(200,0){down}); | draw((0,0){up}..(100,25){right}..(200,0){down}); | ||
</asy> | </asy> | ||
− | |||
<asy> | <asy> | ||
import three; | import three; | ||
− | |||
currentprojection=orthographic(5,4,2,center=true); | currentprojection=orthographic(5,4,2,center=true); | ||
− | |||
size(5cm); | size(5cm); | ||
size3(3cm,5cm,8cm); | size3(3cm,5cm,8cm); | ||
− | |||
draw(unitbox); | draw(unitbox); | ||
− | |||
dot(unitbox,red); | dot(unitbox,red); | ||
− | |||
label("$O$",(0,0,0),NW); | label("$O$",(0,0,0),NW); | ||
label("(1,0,0)",(1,0,0),S); | label("(1,0,0)",(1,0,0),S); | ||
Line 48: | Line 291: | ||
label("(0,0,1)",(0,0,1),Z); | label("(0,0,1)",(0,0,1),Z); | ||
</asy> | </asy> | ||
− | |||
<asy> | <asy> | ||
Line 56: | Line 298: | ||
filldraw(unitcircle^^g,evenodd+yellow,black); | filldraw(unitcircle^^g,evenodd+yellow,black); | ||
</asy> | </asy> | ||
− | |||
<asy> | <asy> | ||
Line 122: | Line 363: | ||
shipout(bbox(2mm, FillDraw(black, 1mm+miterjoin+deepblue))); | shipout(bbox(2mm, FillDraw(black, 1mm+miterjoin+deepblue))); | ||
</asy> | </asy> | ||
− | |||
<asy> | <asy> | ||
Line 205: | Line 445: | ||
==[[Special:RecentChanges|Recent Changes]]== | ==[[Special:RecentChanges|Recent Changes]]== | ||
List of previous changes on EOM | List of previous changes on EOM | ||
+ | |||
+ | . | ||
+ | ==Legacy Images== | ||
+ | <img align="absmiddle" border="0" src="https://www.encyclopediaofmath.org/legacyimages/k/k055/k055130/k0551304.png" /> |
Latest revision as of 09:10, 12 September 2017
Test
Test external Link 29th January 2015
123 Test Link2
Test Copy&Paste HTML
Test-copy-paste Test Test
Test Asymptote
Test January 12th 2015
Case 1 modified
Tests November 1th
Case 1 modified
Case 1
Tests November 17th
Case 1
Tests November 4th
Case 1
Case 2
Case 3
Tests October 27th
Case 1
Case 2
Case 3
Case 4
Case 5
[asy] pair A,B,C,X,Y,Z; A = (0,0); B = (1,0); C = (0.3,0.8); draw(A--B--C--A); X = (B+C)/2; Y = (A+C)/2; Z = (A+B)/2; draw(A--X, red); draw(B--Y,red); draw(C--Z,red); [/asy]
Previous tests
Test Cite Extension
Example: Cite-Extension
Test MathJax
\begin{align} \dot{x} & = \sigma(y-x) \\ \dot{y} & = \rho x - y - xz \\ \dot{z} & = -\beta z + xy \end{align}
\[
\frac{1}{(\sqrt{\phi \sqrt{5}}-\phi) e^{\frac25 \pi}} =
1+\frac{e^{-2\pi}} {1+\frac{e^{-4\pi}} {1+\frac{e^{-6\pi}}
{1+\frac{e^{-8\pi}} {1+\ldots} } } }
\]
Some Text \( \frac{1}{(\sqrt{\phi \sqrt{5}}-\phi) e^{\frac25 \pi}} = 1+\frac{e^{-2\pi}} {1+\frac{e^{-4\pi}} {1+\frac{e^{-6\pi}} {1+\frac{e^{-8\pi}} {1+\ldots} } } } \)
Some Text
\[
\frac{1}{(\sqrt{\phi \sqrt{5}}-\phi) e^{\frac25 \pi}} =
1+\frac{e^{-2\pi}} {1+\frac{e^{-4\pi}} {1+\frac{e^{-6\pi}}
{1+\frac{e^{-8\pi}} {1+\ldots} } } }
\]
Pages A-Z
Alphabetically ordered index of all pages
Recent Changes
List of previous changes on EOM
.
Legacy Images
WikiSysop. Encyclopedia of Mathematics. URL: http://encyclopediaofmath.org/index.php?title=WikiSysop&oldid=26979
Test January 12th 2015