Diferencia entre revisiones de «Sandbox»
Sin resumen de edición |
m (chequeando como usar latex en la wiki) |
||
(No se muestran 7 ediciones intermedias de 4 usuarios) | |||
Línea 1: | Línea 1: | ||
Página para jugar un poco con | Página para jugar un poco con la Wiki o probar como quedaria el codigo en un articulo de verdad. Cada uno puede hacer lo que quiera. | ||
== Syntax Highlighting == | |||
<source lang="php"> | |||
<?php | |||
$v = "string"; // sample initialization | |||
?> | |||
html text | |||
<? | |||
echo $v; // end of php code | |||
?> | |||
</source> | |||
<source lang="java" line="1"> | |||
/* This is a regular multi- | |||
* line comment. */ | |||
import java.io.*; | |||
/** | |||
* This is a javadoc comment | |||
* @see java.lang.String | |||
*/ | |||
public class Main extends Foo | |||
{ | |||
@Test | |||
public static void main(final String[] args) | |||
{ | |||
// This is a one-line comment | |||
System.out.println("Hello, World!"); | |||
int n = 1 + 2; | |||
System.out.println("One plus two is: " + n); | |||
Foo foo = new Foo("foo"); | |||
List<Foo> list = new ArrayList<Foo>(); | |||
list.add(foo); | |||
} | |||
} | |||
</source> | |||
<source lang="python"> | |||
import time | |||
import threading | |||
import Network | |||
from CliqueIPC.RunnerThread import RunnerThread | |||
# Dispatcher | |||
class Dispatcher(RunnerThread): | |||
""" | |||
""" | |||
def __init__(self): | |||
RunnerThread.__init__(self, "Dispatcher") | |||
self.__connection = None | |||
self.__connection_lock = threading.Lock() | |||
def Iteration(self): | |||
if self.__connection_lock.acquire() and self.__connection: | |||
Network.Protocol.RequestCommandHeader(self.__connection) | |||
cl = self.__connection.GetEscaped().split() | |||
print "Dispatching:", cl | |||
mod = __import__(cl[0]) | |||
# server-side process file | |||
mod.ss_process_file(self.__connection, cl[1], cl[2], cl[3]) | |||
# release module | |||
del mod | |||
self.__connection.Close() | |||
self.__connection = None | |||
self.__connection_lock.release() | |||
else: | |||
# wait | |||
self.__connection_lock.release() | |||
time.sleep(0.01) | |||
def IsConnected(self): | |||
self.__connection_lock.acquire() | |||
localst = (self.__connection != None) | |||
self.__connection_lock.release() | |||
return localst | |||
def ConnectTo(self, con): | |||
self.__connection_lock.acquire() | |||
self.__connection = con | |||
self.__connection_lock.release() | |||
# DispatcherTasksMgr | |||
class DispatcherTasksMgr: | |||
""" | |||
""" | |||
def __init__(self, max_dispatchers): | |||
self.__thread_pool = [] | |||
for i in range(max_dispatchers): | |||
self.__thread_pool.append(Dispatcher()) | |||
def Start(self): | |||
for t in self.__thread_pool: | |||
t.start() | |||
def Stop(self): | |||
for t in self.__thread_pool: | |||
t.Stop() | |||
def FreeSlots(self): | |||
freeslots = 0 | |||
for t in self.__thread_pool: | |||
if not t.IsConnected(): | |||
freeslots += 1 | |||
return freeslots | |||
# AddJob | |||
# precondition: FreeSlots() > 0 | |||
def AddJob(self, con): | |||
for t in self.__thread_pool: | |||
if not t.IsConnected(): | |||
t.ConnectTo(con) | |||
return | |||
</source> | |||
== Uml plugin == | |||
<uml> | |||
Begin.b; | |||
State.reading("Reading commands")(); | |||
State.processing("Processing commands")(); | |||
End.e; | |||
State.composite("Working")(b, reading, processing, e); | |||
composite.info.left := composite.info.right := 10; | |||
composite.info.drawNameLine := 1; | |||
topToBottom(20)(b, reading, processing, e); | |||
drawObject(composite); | |||
clink(transition)(b, reading); | |||
clink(transition)(reading, processing); | |||
clink(transition)(processing, e); | |||
ExitPoint.exit; | |||
exit.c=(composite.right, reading.midy); | |||
drawObject(exit); | |||
item(iAssoc)("error")(obj.nw = exit.s); | |||
clink(transition)(reading, exit); | |||
State.error("Preparing error report")(); | |||
State.result("Writing result")(); | |||
End.theEnd; | |||
topToBottom(20)(error, result, theEnd); | |||
leftToRight(30)(exit, error); | |||
drawObjects(error, result, theEnd); | |||
clink(transition)(exit, error); | |||
clink(transition)(error, result); | |||
clink(transition)(result, theEnd); | |||
link(transition)(rpathHorizontal(result.w, composite.right)); | |||
</uml> | |||
== Graphviz plugin == | == Graphviz plugin == | ||
<graphviz | <graphviz> | ||
digraph G {Hello->World | digraph G {Hello->World} | ||
</graphviz> | </graphviz> | ||
<graphviz | <graphviz> | ||
digraph G { | digraph G { | ||
node [shape=plaintext]; | node [shape=plaintext]; | ||
Línea 35: | Línea 198: | ||
</graphviz> | </graphviz> | ||
==Latexin?== | |||
Sea <math>f : \mathbb{N}\rightarrow \mathbb{N} </math> definida por | |||
<math>f(n)= | |||
\left\{ | |||
\begin{array}{ll} | |||
2n & \mbox{si } n \mbox{ es par} \\ | |||
{\frac{n+1}{2}} & \mbox{si } n \mbox{ es impar} | |||
\end{array} | |||
\right. | |||
</math> | |||
a) Determinar si <math>f</math> es inyectiva, sobreyectiva o biyectiva. | |||
b) ¿Es posible definir una función <math>g : \mathbb{N}\rightarrow \mathbb{N}</math> tal que <math>f\circ g</math> sea biyectiva? | |||
c) ¿Es posible definir una función <math>g : \mathbb{N}\rightarrow \mathbb{N}</math> tal que <math>g\circ f</math> sea biyectiva? | |||
== Sensible and humble engineering soul == | == Sensible and humble engineering soul == | ||
Línea 67: | Línea 244: | ||
== Símbolos matemáticos sin usar latex === | == Símbolos matemáticos sin usar latex === | ||
===Opérateurs binaires=== | ===Opérateurs binaires=== | ||
Línea 321: | Línea 494: | ||
|| | || | ||
|} | |} | ||
Quiero ver si logueado me pide captcha o no. |
Revisión actual - 00:47 8 jul 2016
Página para jugar un poco con la Wiki o probar como quedaria el codigo en un articulo de verdad. Cada uno puede hacer lo que quiera.
Syntax Highlighting
<source lang="php"> <?php
$v = "string"; // sample initialization
?> html text <?
echo $v; // end of php code
?> </source>
<source lang="java" line="1"> /* This is a regular multi-
* line comment. */
import java.io.*;
/**
* This is a javadoc comment * @see java.lang.String */
public class Main extends Foo {
@Test public static void main(final String[] args) { // This is a one-line comment System.out.println("Hello, World!"); int n = 1 + 2; System.out.println("One plus two is: " + n);
Foo foo = new Foo("foo"); List<Foo> list = new ArrayList<Foo>(); list.add(foo); }
} </source>
<source lang="python"> import time import threading import Network from CliqueIPC.RunnerThread import RunnerThread
- Dispatcher
class Dispatcher(RunnerThread):
""" """ def __init__(self): RunnerThread.__init__(self, "Dispatcher") self.__connection = None self.__connection_lock = threading.Lock()
def Iteration(self): if self.__connection_lock.acquire() and self.__connection: Network.Protocol.RequestCommandHeader(self.__connection) cl = self.__connection.GetEscaped().split() print "Dispatching:", cl mod = __import__(cl[0])
# server-side process file mod.ss_process_file(self.__connection, cl[1], cl[2], cl[3]) # release module del mod self.__connection.Close() self.__connection = None self.__connection_lock.release() else: # wait self.__connection_lock.release() time.sleep(0.01)
def IsConnected(self): self.__connection_lock.acquire() localst = (self.__connection != None) self.__connection_lock.release() return localst
def ConnectTo(self, con): self.__connection_lock.acquire() self.__connection = con self.__connection_lock.release()
- DispatcherTasksMgr
class DispatcherTasksMgr:
""" """ def __init__(self, max_dispatchers): self.__thread_pool = [] for i in range(max_dispatchers): self.__thread_pool.append(Dispatcher())
def Start(self): for t in self.__thread_pool: t.start()
def Stop(self): for t in self.__thread_pool: t.Stop()
def FreeSlots(self): freeslots = 0
for t in self.__thread_pool: if not t.IsConnected(): freeslots += 1
return freeslots
# AddJob # precondition: FreeSlots() > 0 def AddJob(self, con): for t in self.__thread_pool: if not t.IsConnected(): t.ConnectTo(con) return
</source>
Uml plugin
<uml> Begin.b;
State.reading("Reading commands")(); State.processing("Processing commands")();
End.e;
State.composite("Working")(b, reading, processing, e); composite.info.left := composite.info.right := 10; composite.info.drawNameLine := 1;
topToBottom(20)(b, reading, processing, e); drawObject(composite);
clink(transition)(b, reading); clink(transition)(reading, processing); clink(transition)(processing, e);
ExitPoint.exit; exit.c=(composite.right, reading.midy); drawObject(exit); item(iAssoc)("error")(obj.nw = exit.s);
clink(transition)(reading, exit);
State.error("Preparing error report")(); State.result("Writing result")(); End.theEnd;
topToBottom(20)(error, result, theEnd); leftToRight(30)(exit, error);
drawObjects(error, result, theEnd);
clink(transition)(exit, error); clink(transition)(error, result); clink(transition)(result, theEnd);
link(transition)(rpathHorizontal(result.w, composite.right)); </uml>
Graphviz plugin
<graphviz> digraph G {Hello->World} </graphviz>
<graphviz> digraph G {
node [shape=plaintext]; Mollusca [URL="Mollusca"]; Neomeniomorpha [URL="Neomeniomorpha"]; X1 [shape=point,label=""]; Caudofoveata [URL="Caudofoveata"]; Testaria [URL="Testaria"]; Polyplacophora [URL="Polyplacophora"]; Conchifera [URL="Conchifera"]; Tryblidiida [URL="Tryblidiida"]; Ganglioneura [URL="Ganglioneura"]; Bivalvia [URL="Bivalvia"]; X2 [shape=point,label=""]; X3 [shape=point,label=""]; Scaphopoda [URL="Scaphopoda"]; Cephalopoda [URL="Cephalopoda"]; Gastropoda [URL="Gastropoda"]; Mollusca->X1->Testaria->Conchifera->Ganglioneura->X2->Gastropoda Mollusca->Neomeniomorpha X1->Caudofoveata Testaria->Polyplacophora Conchifera->Tryblidiida Ganglioneura ->Bivalvia X2->X3->Cephalopoda X3->Scaphopoda
} </graphviz>
Latexin?
Sea Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle f : \mathbb{N}\rightarrow \mathbb{N} } definida por
Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle f(n)= \left\{ \begin{array}{ll} 2n & \mbox{si } n \mbox{ es par} \\ {\frac{n+1}{2}} & \mbox{si } n \mbox{ es impar} \end{array} \right. }
a) Determinar si Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle f} es inyectiva, sobreyectiva o biyectiva.
b) ¿Es posible definir una función Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle g : \mathbb{N}\rightarrow \mathbb{N}} tal que Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle f\circ g} sea biyectiva?
c) ¿Es posible definir una función Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle g : \mathbb{N}\rightarrow \mathbb{N}} tal que Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle g\circ f} sea biyectiva?
Sensible and humble engineering soul
Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle 1 + 1 = 2 \equiv }
Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle ln \left(\lim_{x\rightarrow \infty} \left( \left( \left( \left(\bar{X}^T \right)^{-1} - \left(\bar{X}^{-1}\right)^T \right)! + \frac{1}{z} \right)^2 \right) \right) + \sin^2(p) + \cos^2(p) = \sum_{n=0}^{\infty} \frac{\cosh(q) \sqrt{1-\tanh^2(q)}}{2^n} }
Símbolos matemáticos sin usar latex =
Opérateurs binaires
HTML | Unicode | Rendu | TeX | Rendu |
---|---|---|---|---|
× | × | × | \times | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \times} |
÷ | ÷ | ÷ | \div | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \div} |
− | − | − | - | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle -} |
∗ | ∗ | ∗ | \star | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \star} |
∙ | ∙ | ∙ | \bullet | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \bullet} |
∧ | ∧ | ∧ | \land | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \land} |
∨ | ∨ | ∨ | \lor | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \lor} |
∩ | ∩ | ∩ | \cup | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \cup} |
∪ | ∪ | ∪ | \cup | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \cup} |
⊕ | ⊕ | ⊕ | \oplus | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \oplus} |
⊗ | ⊗ | ⊗ | \otimes | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \otimes} |
⋅ | ⋅ | ⋅ | \cdot | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \cdot} |
Relations binaires
HTML | Unicode | Rendu | TeX | Rendu |
---|---|---|---|---|
≡ | ≡ | ≡ | \equiv | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \equiv} |
≤ | ≤ | ≤ | \leq | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \leq} |
⩽ | ⩽ | \leqslant | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \leqslant} | |
≥ | ≥ | ≥ | \geq | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \geq} |
⩾ | ⩾ | \geqslant | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \geqslant} | |
∈ | ∈ | ∈ | \in | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \in} |
∋ | ∋ | ∋ | \ni | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \ni} |
∝ | ∝ | ∝ | \propto | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \propto} |
∴ | ∴ | ∴ | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle } | |
∼ | ∼ | ∼ | \sim | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \sim} |
≅ | ≅ | ≅ | \cong | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \cong} |
≈ | ≈ | ≈ | \approx | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \approx} |
⊂ | ⊂ | ⊂ | \subset | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \subset} |
⊃ | ⊃ | ⊃ | \supset | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \supset} |
⊆ | ⊆ | ⊆ | \subseteq | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \subseteq} |
⊇ | ⊇ | ⊇ | \supseteq | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \supseteq} |
Négations de relations binaires
HTML | Unicode | Rendu | TeX | Rendu |
---|---|---|---|---|
&ne | ≠ | ≠ | \neq | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \neq} |
≢ | ≢ | \not\equiv | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \not\equiv} | |
∉ | ∉ | ∉ | \not\in | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \not\in} |
⊄ | ⊄ | ⊄ | \not\subset | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \not\subset} |
⊅ | ⊅ | \not\supset | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \not\supset} |
Flèches
HTML | Unicode | Rendu | TeX | Rendu |
---|---|---|---|---|
← | ← | ← | \leftarrow | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \leftarrow} |
\gets | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \gets} | |||
↑ | ↑ | ↑ | \uparrow | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \uparrow} |
→ | → | → | \rightarrow | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \rightarrow} |
\to | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \to} | |||
↓ | ↓ | ↓ | \downarrow | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \downarrow} |
↔ | ↔ | ↔ | \leftrightarrow | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \leftrightarrow} |
↕ | ↕ | ↕ | \updownarrow | Error al representar (SVG o PNG como alternativa (MathML puede ser habilitado mediante plugin de navegador): respuesta no válida («Math extension cannot connect to Restbase.») del servidor «https://en.wikipedia.org/api/rest_v1/»:): {\displaystyle \updownarrow} |
↖ | ↖ | ↖ | \nwarrow | |
↗ | ↗ | ↗ | \nearrow | |
etc. | jusqu'à | ⇿ | ||
╭ | ╭ | |||
╮ | ╮ | |||
╯ | ╯ | |||
╰ | ╰ | |||
➔ | ➔ | |||
➘ | ➘ | |||
➙ | ➙ | |||
➚ | ➚ | |||
➛ | ➛ | |||
➜ | ➜ | |||
➝ | ➝ | |||
➞ | ➞ | |||
etc. | jusqu'à | ➾ | ||
⤀ | ⤀ | |||
⤁ | ⤁ | |||
⤂ | ⤂ | |||
⤃ | ⤃ | |||
⤄ | ⤄ | |||
⤅ | ⤅ | |||
⤆ | ⤆ | |||
⤇ | ⤇ | |||
⤈ | ⤈ | |||
etc. | jusqu'à | ⥿ |
Caractères grecs
HTML | Unicode | Rendu | TeX | Rendu |
---|---|---|---|---|
α | α | α | \alpha | |
Α | Α | Α | \Alpha | |
β | β | β | \beta | |
Β | Β | Β | \Beta | |
γ | γ | γ | \gamma | |
Γ | Γ | Γ | \Gamma | |
ε | ε | ε | \epsilon | |
ϵ | ϵ | \varepsilon | ||
&tetha; | θ | θ | \theta | |
ϑ | ϑ | ϑ | \vartheta | |
κ | κ | κ | \kappa | |
ϰ | ϰ | \varkappa | ||
π | π | π | \pi | |
ϖ | ϖ | ϖ | \varpi | |
ρ | ρ | ρ | \rho | |
\varrho | ||||
σ | σ | σ | \sigma | |
ς | ς | ς | \varsigma | |
φ | φ | φ | \phi | |
ϕ | ϕ | \varphi | ||
ϝ | Ϟ | |||
Ϝ | Ϝ | \digamma | ||
\mho | ||||
etc. | jusqu'à | ϶ |
Quiero ver si logueado me pide captcha o no.