Andyrasika
commited on
Commit
•
beebad1
1
Parent(s):
c203a74
Upload english_to_latex.csv
Browse files- english_to_latex.csv +51 -0
english_to_latex.csv
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
English,LaTeX
|
2 |
+
integral from a to b of x squared,"\int_{a}^{b} x^2 \,dx"
|
3 |
+
integral from negative 1 to 1 of x squared,"\int_{-1}^{1} x^2 \,dx"
|
4 |
+
integral from negative 1 to infinity of x cubed,"\int_{-1}^{\inf} x^3 \,dx"
|
5 |
+
integral from 0 to infinity of x squared,"\int_{0}^{\inf} x^2 \,dx"
|
6 |
+
integral from 0 to infinity of y squared,"\int_{0}^{\inf} y^2 \,dy"
|
7 |
+
integral from 1 to 2 of x over 2,"\int_{1}^{2} \frac{x}{2} \,dx"
|
8 |
+
f of x equals x squared,f(x) = x^2
|
9 |
+
h of x equals x squared,h(x) = x^2
|
10 |
+
g of x equals x squared,g(x) = x^2
|
11 |
+
g of x equals x to the eighth power,g(x) = x^8
|
12 |
+
f of x equals x cubed,f(x) = x^3
|
13 |
+
f of x equals x,f(x) = x
|
14 |
+
h of x equals x to the fifth power,h(x) = x^5
|
15 |
+
g of x equals integral from 0 to 10 of x cubed,"g(x) = \int_{0}^{10} x^3 \,dx"
|
16 |
+
f of x equals x over n,f(x) = \frac{x}{n}
|
17 |
+
f of x equals integral from 1 to 2 of x,"f(x) = \int_{1}^{2} x \,dx"
|
18 |
+
f of x equals integral from 0 to 2 of x,"f(x) = \int_{0}^{2} x \,dx"
|
19 |
+
f of x equals integral from 1 to 2 of x over 2,"f(x) = \int_{1}^{2} \frac{x}{2} \,dx"
|
20 |
+
f of x equals sum from 1 to 5 of x squared,f(x) = \sum_{1}^{5} x^2
|
21 |
+
x squared,x^2
|
22 |
+
x cubed,x^3
|
23 |
+
pi squared,\pi^2
|
24 |
+
z squared,z^2
|
25 |
+
z over x squared,\frac{z}{x^2}
|
26 |
+
f of x equals x squared,f(x) = x^2
|
27 |
+
1 over 6,\frac{1}{6}
|
28 |
+
2 pi,2 * \pi
|
29 |
+
s cubed,s^3
|
30 |
+
s to the sixth power,s^6
|
31 |
+
2 pi r,2 * \pi * r
|
32 |
+
pi over n,\frac{\pi}{n}
|
33 |
+
f of n equals pi over n,f(n) = \frac{\pi}{n}
|
34 |
+
pi times x,\pi*x
|
35 |
+
pi to the fourth power,\pi^4
|
36 |
+
pi to the fifth power,\pi^5
|
37 |
+
f of x equals x times pi to the fifth power,f(x) = x * \pi^5
|
38 |
+
g of x equals x times pi cubed,g(x) = x * \pi^3
|
39 |
+
g of x equals pi cubed,g(x) = \pi^3
|
40 |
+
1 over n,\frac{1}{n}
|
41 |
+
x squared over n,\frac{x^2}{n}
|
42 |
+
y squared over x^2,\frac{y^2}{x^2}
|
43 |
+
1 over 7 to the seventh power,(\frac{1}{7})^7
|
44 |
+
1 over 9 to the seventh power,(\frac{1}{9})^7
|
45 |
+
f of x equals x over 9 to the seventh power,(f(x) = \frac{x}{9})^7
|
46 |
+
sum from i to n of X i,\sum_{i}^{n} X_i
|
47 |
+
sum from 0 to n of 77 n,\sum_{0}^{n} 77 * n
|
48 |
+
sum from 0 to 5 of x,\sum_{0}^{5} x
|
49 |
+
sum from 1 to x of x,\sum_{1}^{x} x
|
50 |
+
sum from 1 to x of x squared,\sum_{1}^{x} x^2
|
51 |
+
sum from 1 to 10 of pi squared,\sum_{1}^{10} \pi^2
|