Bereizmen handikoa(SVG fitxategia, nominaldi 1.600 × 1.280 pixel, fitxategiaren tamaina: 2 KB)

Fitxategi hau Wikimedia Commonsekoa da. Hango deskribapen orriko informazioa behean duzu.
Commons gordailu bat da, lizentzia askea duten multimedia fitxategiena. Lagun dezakezu.

Fitxategi hau Wikimedia Commonsekoa da

Laburpena

Deskribapena
English: Euler Method Diagram to replace Image:Euler method.png

This image needs to be fixed to work around the subscripting problem: below-baseline does not work consistenly between rendering programs.
Data
Jatorria Created by me
Egilea R. A. Nonenmacher
Lizentzia
(Fitxategi hau berrerabiltzen)
Nik, lan honen egileak, argitaratzen dut ondorengo lizentzia hauen pean:
GNU head Baimena duzu dokumentu hau kopiatu, banatu edo/eta aldatzeko GNU Free Documentation License baldintzapean, Free Software Foundationek argitaratutako 1.2 edo ondorengo bertsioan; sekzio aldaezinik gabe, azaleko testurik gabe, eta atzeko azaleko testurik gabe. Lizentziaren kopia dago GNU Free Documentation License izenburudun atalean.
w:eu:Creative Commons
eskuduntza berdin partekatu
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International, 3.0 Unported, 2.5 Generic, 2.0 Generic and 1.0 Generic license.
Askea zara:
  • partekatzeko – lana kopiatzeko, banatzeko eta bidaltzeko
  • birnahasteko – lana moldatzeko
Ondorengo baldintzen pean:
  • eskuduntza – Egiletza behar bezala aitortu behar duzu, lizentzia ikusteko esteka gehitu, eta ea aldaketak egin diren aipatu. Era egokian egin behar duzu hori guztia, baina inola ere ez egileak zure lana edo zure erabilera babesten duela irudikatuz.
  • berdin partekatu – Lan honetan oinarrituta edo aldatuta berria eraikitzen baduzu, emaitza lana hau bezalako lizentzia batekin argitaratu behar duzu.
Nahiago duzun lizentzia erabil dezakezu.
Beste bertsioak Image:Euler method.png

SVG code for rev. 1

With this version the subscripts remained on the same baseline as the As.

  <?xml version="1.0" encoding="utf-8"?>
     
  <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
                       
  <svg version     = "1.1" 
       id          = "Euler_Method_Diagram" 
       xmlns       = "http://www.w3.org/2000/svg" 
       xmlns:xlink = "http://www.w3.org/1999/xlink" 
       width      = "1600" 
       height     = "1280" >
  
  <defs>
     <polygon id="Arrowhead" fill="#000000" points="0, 0 -30,-40 120, 0 -30, 40"/>
  </defs>
  
  <line stroke="#000000" stroke-width="12" x1="20" y1="1180"  x2="1460" y2="1180"/>
  <use xlink:href="#Arrowhead" transform="translate(1460, 1180)"/>
  
  <line stroke="#000000" stroke-width="12" x1="100" y1="1260" x2="100" y2="140"/>
  <use xlink:href="#Arrowhead" transform="translate(100, 140) rotate(-90)"/>
  
  <circle fill="#2727FF" cx="1520" cy="660" r="20"/>
  <path stroke="#2727FF" fill="none" stroke-width="12" d="M260,880c240-360,831.9-529.1,1260-220"/>
  
  <g fill="#C00000">
     <circle cx="260"  cy="880" r="20"/>
     <circle cx="480"  cy="580" r="20"/>
     <circle cx="840"  cy="420" r="20"/>
     <circle cx="1200" cy="360" r="20"/>
     <circle cx="1540" cy="420" r="20"/>
  </g>
  <g stroke="#C00000" stroke-width="12">
     <line x1="260"  y1="880" x2="480"  y2="580"/>
     <line x1="480"  y1="580" x2="840"  y2="420"/>
     <line x1="840"  y1="420" x2="1200" y2="360"/>
     <line x1="1200" y1="360" x2="1540" y2="420"/>
  </g>
  <text x="170"  y="810" font-style="italic"><tspan font-size="108">A<tspan font-size="72" baseline-shift="sub">0</tspan></tspan></text>
  <text x="390"  y="510" font-style="italic"><tspan font-size="108">A<tspan font-size="72" baseline-shift="sub">1</tspan></tspan></text>
  <text x="750"  y="350" font-style="italic"><tspan font-size="108">A<tspan font-size="72" baseline-shift="sub">2</tspan></tspan></text>
  <text x="1110" y="290" font-style="italic"><tspan font-size="108">A<tspan font-size="72" baseline-shift="sub">3</tspan></tspan></text>
  <text x="1450" y="350" font-style="italic"><tspan font-size="108">A<tspan font-size="72" baseline-shift="sub">4</tspan></tspan></text>
  
  </svg>

SVG code for rev. 3

This version is a workaround for the subscript problem. It's not a good solution because the subscript positions are hardcoded and not controlled by the font, which I've allowed to default to the user font.

  <?xml version="1.0" encoding="utf-8"?>
  
  <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" 
                       "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
                       
  <svg version     = "1.1" 
       id          = "Euler_Method_Diagram" 
       xmlns       = "http://www.w3.org/2000/svg" 
       xmlns:xlink = "http://www.w3.org/1999/xlink" 
       width      = "1600" 
       height     = "1280" >
  
  <defs>
     <polygon id="Arrowhead" fill="#000000" points="0, 0 -30,-40 120, 0 -30, 40"/>
  </defs>
  
  <line stroke="#000000" stroke-width="12" x1="20" y1="1180"  x2="1460" y2="1180"/>
  <use xlink:href="#Arrowhead" transform="translate(1460, 1180)"/>
  
  <line stroke="#000000" stroke-width="12" x1="100" y1="1260" x2="100" y2="140"/>
  <use xlink:href="#Arrowhead" transform="translate(100, 140) rotate(-90)"/>
  
  <circle fill="#2727FF" cx="1520" cy="660" r="20"/>
  <path stroke="#2727FF" fill="none" stroke-width="12" d="M260,880c240-360,831.9-529.1,1260-220"/>
  
  <g fill="#C00000">
     <circle cx="260"  cy="880" r="20"/>
     <circle cx="480"  cy="580" r="20"/>
     <circle cx="840"  cy="420" r="20"/>
     <circle cx="1200" cy="360" r="20"/>
     <circle cx="1520" cy="420" r="20"/>
  </g>
  <g stroke="#C00000" stroke-width="12">
     <line x1="260"  y1="880" x2="480"  y2="580"/>
     <line x1="480"  y1="580" x2="840"  y2="420"/>
     <line x1="840"  y1="420" x2="1200" y2="360"/>
     <line x1="1200" y1="360" x2="1520" y2="420"/>
  </g>
  <g font-style="italic">
     <text x="170"  y="810" font-size="108">A</text><text x="235"  y="830" font-size="72">0</text>
     <text x="390"  y="510" font-size="108">A</text><text x="455"  y="530" font-size="72">1</text>
     <text x="750"  y="350" font-size="108">A</text><text x="815"  y="370" font-size="72">2</text>
     <text x="1110" y="290" font-size="108">A</text><text x="1175" y="310" font-size="72">3</text>
     <text x="1430" y="350" font-size="108">A</text><text x="1495" y="370" font-size="72">4</text>
  </g>
  </svg>

Irudi-oineko testuak

Add a one-line explanation of what this file represents

Fitxategi honetan agertzen diren itemak

honako hau irudikatzen du

20 uztaila 2008

MIME type ingelesa

image/svg+xml

Fitxategiaren historia

Data/orduan klik egin fitxategiak orduan zuen itxura ikusteko.

Data/OrduaIruditxoaNeurriakErabiltzaileaIruzkina
oraingoa22:36, 31 uztaila 200822:36, 31 uztaila 2008 bertsioaren iruditxoa1.600 × 1.280 (2 KB)NonenmacMove subscripts 5 pts to the left - much farther and they'll touch the A in my viewer.
22:30, 31 uztaila 200822:30, 31 uztaila 2008 bertsioaren iruditxoa1.600 × 1.280 (2 KB)Nonenmacworkaround for subscript problem: hard-coded subscript x/y positions
21:51, 31 uztaila 200821:51, 31 uztaila 2008 bertsioaren iruditxoa1.600 × 1.280 (2 KB)Nonenmac== Summary == {{Information |Description={{en|1=Euler Method Diagram to replace Image:Euler Method.png}} |Source=Created by me |Author=R. A. Nonenmacher |Date=20-Jul-2008 |Permission={{self|GFDL|cc-by-sa-all}} |other_versions= }} {

Hurrengo orrialdeek dute fitxategi honetarako lotura:

Fitxategiaren erabilera orokorra

Hurrengo beste wikiek fitxategi hau darabilte: