Presentación de Ejemplo

Uso de slides.com

\lim_{x \to \infty} \exp(-x) = 0
limxexp(x)=0\lim_{x \to \infty} \exp(-x) = 0
\lim_{x \to \infty} \exp(-x) = 0

Entrada:

Salida:

A_{m,n} =

\begin{pmatrix}
 a_{1,1} & a_{1,2} & \cdots & a_{1,n} \\
 a_{2,1} & a_{2,2} & \cdots & a_{2,n} \\
 \vdots  & \vdots  & \ddots & \vdots  \\
 a_{m,1} & a_{m,2} & \cdots & a_{m,n} 
\end{pmatrix}
A_{m,n} = \begin{pmatrix} a_{1,1} & a_{1,2} & \cdots & a_{1,n} \\ a_{2,1} & a_{2,2} & \cdots & a_{2,n} \\ \vdots & \vdots & \ddots & \vdots \\ a_{m,1} & a_{m,2} & \cdots & a_{m,n} \end{pmatrix}
Am,n=(a1,1a1,2a1,na2,1a2,2a2,nam,1am,2am,n)A_{m,n} = \begin{pmatrix} a_{1,1} & a_{1,2} & \cdots & a_{1,n} \\ a_{2,1} & a_{2,2} & \cdots & a_{2,n} \\ \vdots & \vdots & \ddots & \vdots \\ a_{m,1} & a_{m,2} & \cdots & a_{m,n} \end{pmatrix}

¡Matemáticas!

from time import localtime

activities = {
    8: 'Sleeping',
    9: 'Commuting',
    17: 'Working',
    18: 'Commuting',
    20: 'Eating',
    22: 'Resting'
}

time_now = localtime()
hour = time_now.tm_hour

for activity_time in sorted(activities.keys()):
    if hour < activity_time:
        print activities[activity_time]
        break
else:
    print 'Unknown, AFK or sleeping!'

Python:

¡Códigos!

var msg = "";
var person = {
    fname: "John",
    lname:"Doe",
    age:25
}; 
var x;
for (x in person) {
    txt += person[x] + " ";
}

myFunction(msg);

Javascript:

Muchos temas y soporta varios lenguajes...

Ejemplo

By Richard Cotrina