index_es.tmpl
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 2 <HTML> 3 <HEAD> 4 <META http-equiv="Content-Type" content="text/html;charset=utf-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1"> 6 <TITLE>LinuxCNC</TITLE> 7 <link rel="stylesheet" type="text/css" href="index.css"> 8 <script type="text/javascript"> 9 function toggle(a){ 10 var e=document.getElementById(a); 11 var i = document.getElementById(a + '_image'); 12 if(!e)return true; 13 if(e.style.display=="none"){ 14 e.style.display="block" 15 i.src = 'minus.png'; 16 } else { 17 e.style.display="none" 18 i.src = 'plus.png'; 19 } 20 return false; 21 } 22 23 function change(el) 24 { 25 if ( el.value === "Expand All" ){ 26 el.value = "Collapse All"; 27 for (var i=0;i<13;i++){ 28 document.getElementById("sec" + i).style.display = ''; 29 document.getElementById("sec" + i + '_image').src = 'minus.png'; 30 } 31 } 32 else { 33 el.value = "Expand All"; 34 for (var i=0;i<13;i++){ 35 document.getElementById("sec" + i).style.display = 'none'; 36 document.getElementById("sec" + i + '_image').src = 'plus.png'; 37 } 38 } 39 } 40 </script> 41 </HEAD> 42 <BODY> 43 44 <!-- Even though this template file will open in a browser do not open it in a browser it to test changes 45 open the /html/index.html file in your browser after building the documents 46 If this is the .html file do not edit it, edit the .tmpl file then build the documents --> 47 <div style="text-align: center"><img src="linuxcnc-logo-chips.png" width="175" /></div> 48 49 <p>Esta documentación hace referencia a la versión LinuxCNC <strong>@VERSION@</strong>.<A HREF="index.html">English</A> <A HREF="index_fr.html">Français</A></p> 50 <input type="button" value="Expand All" onclick="return change(this);" /> 51 <UL> 52 <LI><a href="http://linuxcnc.org">Home Page</a> * 53 <A href="http://wiki.linuxcnc.org/cgi-bin/wiki.pl">Wiki Community</A> * 54 <A HREF="gcode.html">G Code Quick Reference</A> 55 <p></p> 56 <LI><A HREF="common/overleaf.html">LinuxCNC Document Overview</A> 57 <p></p> 58 <li><a onclick="return toggle('sec0')"><img id="sec0_image" src="plus.png" style="border:0;margin-right:5px;vertical-align:middle;" />Primeros pasos LinuxCNC</a> 59 <div id="sec0" style="display:none;"> 60 <UL> 61 <LI><A HREF="getting-started/about-linuxcnc-es.html">Sobre LinuxCNC</A> 62 <LI><A HREF="getting-started/system-requirements-es.html">Requerimientos del sistema</A> 63 <LI><A HREF="getting-started/getting-linuxcnc-es.html">Obteniendo LinuxCNC</A> 64 <LI><A HREF="getting-started/running-linuxcnc-es.html">Ejecutando LinuxCNC</A> 65 <LI><A HREF="getting-started/updating-linuxcnc.html">Updating LinuxCNC</A> 66 <LI><A HREF="common/linux-faq-es.html">Linux FAQ</A> 67 </UL> 68 </div> 69 70 <li><a onclick="return toggle('sec1')"><img id="sec1_image" src="plus.png" style="border:0;margin-right:5px;vertical-align:middle;" />Configuration Wizards</a> 71 <div id="sec1" style="display:none;"> 72 <UL> 73 <LI><A class="tooltips" HREF="config/stepconf-es.html">Stepper Configuration Wizard<span>For Parallel Port Stepper Machine</span></A> 74 <LI><A class="tooltips" HREF="config/pncconf.html">Mesa Configuration Wizard<span>For Mesa Servo & Stepper Machines</span></A> 75 </UL> 76 </div> 77 78 79 <li><a onclick="return toggle('sec2')"><img id="sec2_image" src="plus.png" style="border:0;margin-right:5px;vertical-align:middle;" />General User Information</a> 80 <div id="sec2" style="display:none;"> 81 <UL> 82 <LI><A HREF="user/user-foreword.html">User Foreword</A> 83 <LI><A HREF="user/user-intro.html">LinuxCNC User Introduction</A> 84 <LI><A HREF="user/user-concepts.html">Important User Concepts</A> 85 <LI><A HREF="gcode/machining-center.html">CNC Machine Overview</A> 86 <LI><A HREF="lathe/lathe-user.html">Lathe User Information</A> 87 </UL> 88 </div> 89 <li><a onclick="return toggle('sec3')"><img id="sec3_image" src="plus.png" style="border:0;margin-right:5px;vertical-align:middle;" />User Interfaces</a> 90 <div id="sec3" style="display:none;"> 91 <UL> 92 <LI><A HREF="gui/axis.html">Axis GUI</A> 93 <LI><A HREF="gui/gmoccapy.html">gmoccapy</A> 94 <LI><A HREF="gui/touchy.html">Touchy GUI</A> 95 <LI><A HREF="gui/ngcgui.html">NGCGUI</A> 96 <LI><A HREF="gui/tklinuxcnc.html">TkLinuxCNC GUI</A> 97 <LI><A HREF="gui/mini.html">Mini GUI</A> 98 </UL> 99 </div> 100 <li><a onclick="return toggle('sec4')"><img id="sec4_image" src="plus.png" style="border:0;margin-right:5px;vertical-align:middle;" />G code Programming</a> 101 <div id="sec4" style="display:none;"> 102 <UL> 103 <LI><A HREF="gcode/coordinates.html">Coordinate System</A> 104 <LI><A HREF="gcode/tool-compensation.html">Tool Compensation</A> 105 <LI><A HREF="gui/tooledit.html">Tool Table Editor</A> 106 <LI><A HREF="gcode/overview.html">G Code Overview</A> 107 <LI><A HREF="gcode/g-code.html">G Codes</A> 108 <LI><A HREF="gcode/m-code.html">M Codes</A> 109 <LI><A HREF="gcode/o-code.html">O Codes</A> 110 <LI><A HREF="gcode/other-code.html">Other Codes</A> 111 <LI><A HREF="examples/gcode.html">G Code Examples</A> 112 <LI><A HREF="gui/image-to-gcode.html">Image to G Code</A> 113 <LI><A HREF="gcode/rs274ngc.html">RS274/NGC Differences</A> 114 </UL> 115 </div> 116 117 <li><a onclick="return toggle('sec5')"><img id="sec5_image" src="plus.png" style="border:0;margin-right:5px;vertical-align:middle;" />Configuration</a> 118 <div id="sec5" style="display:none;"> 119 <UL> 120 <LI><A HREF="config/integrator-concepts.html">Integrator Concepts</A> 121 <LI><A HREF="install/latency-test.html">Latency Test</A> 122 <LI><A HREF="user/starting-linuxcnc.html">Starting LinuxCNC</A> 123 <LI><A HREF="motion/tweaking-steppers.html">Stepper Tuning</A> 124 <LI><A HREF="config/ini-config.html">INI Configuration</A> 125 <LI><A HREF="config/ini-homing.html">Homing Configuration</A> 126 <LI><A HREF="config/lathe-config.html">Lathe Configuration</A> 127 <LI><A HREF="config/stepper-quickstart-es.html">Stepper Quick Start</A> 128 <LI><A HREF="config/stepper.html">Stepper Configuration</A> 129 <LI><A HREF="config/stepper-diagnostics.html">Stepper Diagnostics</A> 130 </UL> 131 <li><a onclick="return toggle('sec6')"><img id="sec6_image" src="plus.png" style="border:0;margin-right:5px;vertical-align:middle;" />Virtual Control Panels</a> 132 <div id="sec6" style="display:none;"> 133 <UL> 134 <LI><A HREF="gui/pyvcp.html">Python Virtual Control Panel</A> 135 <LI><A HREF="gui/pyvcp-examples.html">PyVCP Examples</A> 136 <LI><A HREF="gui/gladevcp.html">Glade Virtual Control Panel</A> 137 <LI><A HREF="gui/gscreen.html">Gscreen</A> 138 </UL> 139 </div> 140 <li><a onclick="return toggle('sec7')"><img id="sec7_image" src="plus.png" style="border:0;margin-right:5px;vertical-align:middle;" />User Interface Programming</a> 141 <div id="sec7" style="display:none;"> 142 <UL> 143 <LI><A class="tooltips" HREF="gui/halui.html">HALUI<span>HAL User Interface</span></A> 144 <LI><A HREF="hal/halui-examples.html">HALUI examples</A> 145 <LI><A HREF="config/python-interface.html">Python Interface</A> 146 </UL> 147 </div> 148 <li><a onclick="return toggle('sec8')"><img id="sec8_image" src="plus.png" style="border:0;margin-right:5px;vertical-align:middle;" />Hardware Drivers</a> 149 <div id="sec8" style="display:none;"> 150 <UL> 151 <LI><A HREF="hal/parallel-port.html">Parallel Port Driver</A> 152 <LI><A HREF="drivers/ax5214h.html">AX5214H Driver</A> 153 <LI><A HREF="drivers/gm.html">General Mechatronics GM6-PCI Driver</A> 154 <LI><A HREF="drivers/gs2.html">GS2 Driver</A> 155 <LI><A HREF="drivers/hostmot2.html">Mesa HostMot2 Driver</A> 156 <LI><A HREF="drivers/motenc.html">Motenc Driver</A> 157 <li><a href="drivers/mb2hal.html">Modbus to HAL Driver</a></li> 158 <LI><A HREF="drivers/opto22.html">Opto22 Driver</A> 159 <LI><A HREF="drivers/pico-ppmc.html">Pico Drivers</A> 160 <LI><A HREF="drivers/pluto-p.html">Pluto P Driver</A> 161 <LI><A HREF="drivers/servo-to-go.html">Servo To Go Driver</A> 162 <LI><A HREF="drivers/shuttle.html">ShuttleXpress and ShuttlePRO Driver</A> 163 <LI><A HREF="drivers/vfs11.html">VFS11 Driver</A> 164 </UL> 165 </div> 166 <li><a onclick="return toggle('sec9')"><img id="sec9_image" src="plus.png" style="border:0;margin-right:5px;vertical-align:middle;" />Classicladder</a> 167 <div id="sec9" style="display:none;"> 168 Classicladder is a software PLC (Programmable Logic Controller) built 169 into LinuxCNC. 170 <UL> 171 <LI><A HREF="ladder/ladder-intro.html">Classicladder Introduction</A> 172 <LI><A HREF="ladder/classic-ladder.html">ClassicLadder Programming</A> 173 <LI><A HREF="ladder/ladder-examples.html">ClassicLadder Examples</A> 174 </UL> 175 </div> 176 <li><a onclick="return toggle('sec10')"><img id="sec10_image" src="plus.png" style="border:0;margin-right:5px;vertical-align:middle;" />Hardware Examples</a> 177 <div id="sec10" style="display:none;"> 178 <UL> 179 <LI><A HREF="examples/pci-parallel-port.html">PCI Parallel Port Example</A> 180 <LI><A HREF="examples/spindle.html">Spindle Control Example</A> 181 <LI><A HREF="examples/mpg.html">MPG Example</A> 182 <LI><A HREF="examples/gs2-example.html">GS2 Example</A> 183 </UL> 184 </div> 185 <li><a onclick="return toggle('sec11')"><img id="sec11_image" src="plus.png" style="border:0;margin-right:5px;vertical-align:middle;" />HAL (Hardware Abstraction Layer)</a> 186 <div id="sec11" style="display:none;"> 187 <UL> 188 <LI><A HREF="hal/intro.html">HAL Introduction</A> 189 <LI><A HREF="hal/basic-hal.html">Basic HAL Tutorial</A> 190 <LI><A HREF="hal/tutorial.html">Advanced HAL Tutorial</A> 191 <LI><A HREF="config/core-components.html">Core HAL Components</A> 192 <LI><A HREF="hal/components.html">HAL Component List</A> 193 <LI><A HREF="hal/rtcomps.html">HAL Component Descriptions</A> 194 <LI><A HREF="hal/halshow.html">Halshow</A> 195 <LI><A HREF="hal/hal-examples.html">HAL Examples</A> 196 <LI><A HREF="hal/comp.html">HAL Component Generator</A> 197 <LI><A HREF="hal/haltcl.html">HAL TCL Files</A> 198 <LI><A HREF="hal/halmodule.html">Creating Userspace Python Components</A> 199 <LI><A HREF="hal/canonical-devices.html">Canonical Device Interfaces</A> 200 <LI><A HREF="hal/tools.html">HAL Tools</A> 201 </UL> 202 </div> 203 <li><a onclick="return toggle('sec12')"><img id="sec12_image" src="plus.png" style="border:0;margin-right:5px;vertical-align:middle;" />Advanced Topics</a> 204 <div id="sec12" style="display:none;"> 205 <UL> 206 <LI><A HREF="motion/kinematics.html">Kinematics</A> 207 <LI><A HREF="motion/pid-theory.html">PID theory</A> 208 <LI><A HREF="remap/remap.html">Remap: Extending LinuxCNC</A> 209 <LI><A HREF="config/moveoff.html">Moveoff Component</A> 210 </UL> 211 </div> 212 <li><a onclick="return toggle('sec13')"><img id="sec13_image" src="plus.png" style="border:0;margin-right:5px;vertical-align:middle;" />Developer Information</a> 213 <div id="sec13" style="display:none;"> 214 <UL> 215 <LI><A HREF="hal/general-ref.html">General Reference</A> 216 <LI><A HREF="code/code-notes.html">Code Notes</A> 217 <LI><A HREF="code/nml-messages.html">NML Messages</A> 218 <LI><A HREF="code/style-guide.html">Style Guide</A> 219 <LI><A HREF="code/contributing-to-linuxcnc.html">Contributing to LinuxCNC</A> 220 <LI><A HREF="code/building-linuxcnc.html">Building LinuxCNC</A> 221 </UL> 222 </div> 223 <li><a onclick="return toggle('sec14')"><img id="sec14_image" src="plus.png" style="border:0;margin-right:5px;vertical-align:middle;" />Glossary, Copyright</a> 224 <div id="sec14" style="display:none;"> 225 <UL> 226 <LI><A HREF="common/emc-history.html">LinuxCNC History</A> 227 <LI><A HREF="common/glossary.html">Glossary</A> 228 <LI><A HREF="common/gpld-copyright.html">Copyright and Documentation License</A> 229 </UL> 230 </div>