Introducing LaTeX Math Typesetting

In summary, Physicsforums.com has introduced the addition of LaTeX mathematical typesetting to their forum software. This professional-grade typesetting system allows for pleasing mathematical presentation and can be included in any post on the forum. Users can include LaTeX graphics by using the [ tex ]...[ /tex ] or [ itex ]...[ /itex ] tags, with the latter being used for inline graphics. The forum provides a pdf file and symbol reference for the most useful LaTeX commands, symbols, and constructs. The amsmath package is also available for more information. Examples of various techniques are provided, including subscripts, superscripts, and equations. Users can also use the [ tex usepackage= ] tag to include additional packages.
  • #421
bored and late

FBox[x_List] := StringJoin@ToString @@@ Flatten[
{
"\begin{array}\n",
"{", "|", Table["
c|", {n, 1, Length[x]}], "}", "\hline", Table[{Table[{ToString[x[[n1,
n2]]], If[n2 ≠ Dimensions[
x][[2]], "&", ""]}, {n2, 1, Dimensions[x][[2]]}], "\\\\", "\hline
"}, {n1, 1, Dimensions[x][[1]]}], "\n \end{array}"
}
]

FBox[{{1, 2}, {1, 2}, {3, 2}, {2, 4}, {2, 5}}]:
[tex]
\begin{array}
{|c|c|c|c|c|}\hline1&2\\\hline1&2\\\hline3&2\\\hline2&4\\\hline2&5\\\hline
\end{array}
[/tex]
 
Physics news on Phys.org
  • #422
F2[x_List] := StringJoin @@ ToString @@@ Flatten[
{
"\begin{array}",
"{", Table["c", {n, 1, Length[x]}], "}",
Table[
{Table[{ToString[x[[n1, n2]]], If[n2
≠ Dimensions[x][[2]], "&", ""]}, {n2, 1, Dimensions[x][[2]]}],
"\\\\"},
{n1, 1, Dimensions[x][[1]]}
],
"\end{array}"
}
]
F2[{{1, 2}, {1, 2}, {3, 2}, {2, 4}, {2, 5}}]:
[tex]
\begin{array}{ccccc}1&2\\1&2\\3&2\\2&4\\2&5\\\end{array}
[/tex]
 
  • #423
The above code is for mathematica
 
  • #424
Why doesn't this work? All I'm trying to do is get 2 left-aligned columns. First I was trying to do it using {array}{cc} formatting similar to the conditional equations up above. That didn't work so I tried this {equation*} layout which is also going haywire. When I was testing a little while ago, I'm pretty sure the same code (but with a smaller amount of content) worked almost correctly; only the first column was right- instead of left-aligned. Now it doesn't work at all.

To accomplish this, the formula will be built up from 3 types of variables, specifically:
[tex]\begin{equation*}\begin{split}\mbox{Variable} \quad &\mbox{Meaning}\\
Q[i,k] \quad &\mbox{At time i, M is in state q_k}\\
H[i,j] \quad &\mbox{At time i, the read-write head}\\
&\mbox{ is scanning tape square j}\\
S[i,j,k] \quad &\mbox{At time i, the contents of}\\
&\mbox{tape square j is symbol s_k}\end{split}\end{equation*}[/tex]


OK this is really crazy; sometimes this works, and sometimes it doesn't, yet it's the same code structure as above:
[tex]\begin{equation*}\begin{split}\mbox{Variable} \quad &\mbox{Meaning}\\
Q[i,k] \quad &\mbox{At time i the read-write head blah blah blah}\\
&\mbox{blah blah blah}\\
H[i,j] \quad &\mbox{At time i}\end{split}\end{equation*}[/tex]
 
Last edited:
  • #425
try {ll} instead {cc}, (that's how I managed to get the conditonal equation aligned).
 
  • #426
Nope. It seems to make no difference whether I format it using {array}{cc} or {array}{11} or {equation*}{split}, \mbox{...} or \text{...]. For example:

To accomplish this, the formula will be built up from 3 types of variables, specifically:
[tex]\begin{array}{11}\mbox{Variable} & \mbox{Meaning}\\
Q[i,k] &\mbox{At time i, M is in state q_k}\\
H[i,j] &\mbox{At time i, the read-write head}\\
&\mbox{ is scanning tape square j}\\
S[i,j,k] &\mbox{At time i, the contents of}\\
&\mbox{tape square j is symbol s_k}\end{array}[/tex]
 
  • #427
It's not a 1 it's an 'l' and you need one for each row:

edited to add: hmm I can't see anything wrong with this perhaps it's just too big.
 
Last edited:
  • #428
(I think it's just any series of characters {xxx}, {111}, {iii}, whatever, not some particular one; and isn't it one for each COLUMN, not row?)


Edited to remove my witty(?) remark about the part of your post that you deleted. :wink:
 
Last edited:
  • #429
No, it's one for each row and 'c' is for centre 'l' is for left I guess.

edited to add: actually you're right but {ll}, {cc} or {rr} is the justifcation.
 
Last edited:
  • #430
This one works and it's simlair:

[tex]\begin{array}{lr}\mbox{yoink}&\mbox{double-yoink}\\G[i,j]&\mbox{yes}\\H[k,l] &\mbox{no}\\&\mbox{what?}\end{array}[/tex]

I reckon then it must be thta it's just too big as there's a limit to the size of the code.
 
  • #431
Good find!

That should be helpful.
 
  • #432
That's it!

[tex]\begin{array}{ll}\mbox{Variable} & \mbox{Meaning}\\
Q[i,k] &\mbox{At time i, M is in state}\, q_k\\
H[i,j] &\mbox{At time i, the read-write head}\\
&\mbox{is scanning tape square j}\\
S[i,j,k] &\mbox{At time i, the contents of}\\
&\mbox{tape square j is symbol}\, s_k\end{array}[/tex]


[tex]\mbox{testing another sub_sc_rip_t}[/tex]

Building on jcsd's find:
the charaters in the brackets after {array} must be
{lll} (that lower-case L's) to left-align
{rrr} to right-align
{"any characters"} to center the text in each column (one char for each column)

Also: apparently subscript like q_k can't be used in \mbox in an array, although it can be used in \mbox when it's not part of an array.

Now I can get back to my "real" post.

Thanks.
:smile: :smile: :smile:
 
  • #433
Wick Contraction in LaTeX

Wick Contraction-

http://www.fzu.cz/~kolorenc/tex.php

This website has 2 or 3 possible implementations for Wick Contractions in QFT. I have not tried any, but will let you know how they work!
 
  • #434
Simple question.

Hi everybody,
Does anyone know how do I write a vector quantity, such as an F with an arrow up? I'm not so skilled in Latex.
Thanks
 
  • #435
\vec{F}

[tex]\vec{F}[/tex]
 
  • #436
OK, let me try once.

[tex]
\sum\vec{F}_e_x_t = M\vec{a}_c_m
[/tex]
 
  • #437
Thanks jcsd!
 
  • #438
How do I create the 'inverse' symbol?
 
  • #439
Like [tex]cos\theta^{-1}[/tex]?
 
  • #440
inverse is just ^{-1}, so the (muplicative) inverse of a is a^{-1}, for an inverse function like cos you want \cos^{-1}\theta
 
  • #441
[tex]\begin{array}P=A(1+\frac{r}{100})^n
\\
\sqrt[n]{\frac{P}{A}}=\frac{r+100}{100}
\\
r=100\sqrt[n]{\frac{P}{A}}-100\end{array}[/tex]
 
  • #442
Norman said:
Wick Contraction-

http://www.fzu.cz/~kolorenc/tex.php

This website has 2 or 3 possible implementations for Wick Contractions in QFT. I have not tried any, but will let you know how they work!

The simple_wick.tex file works very well. I could not get the other one to work. I also did not have any of the problems the author gives for simple_wick.tex.

Cheers
 
  • #443
expired post...
 
Last edited:
  • #444
I have a question
How much Tex is to much tex?

[tex]
\begin{picture}(500,500)(0,0)

\put(200.,89.3817){2}
\put(300.,89.3817){3}
\put(400.,89.3817){4}
\put(500.,89.3817){5}
\put(600.,89.3817){6}
\put(93.4375,200.){2}
\put(93.4375,300.){3}
\put(93.4375,400.){4}
\put(93.4375,500.){5}
\put(93.4375,600.){6}

\put(100,100){\circle{3}}
\put(200,200){\circle{3}}
\put(300,300){\circle{3}}
\put(400,400){\circle{3}}
\put(500,500){\circle{3}}
\put(600,600){\circle{3}}

\put(200.,100.){\line(0.,1.){5.30917}}
\put(300.,100.){\line(0.,1.){5.30917}}
\put(400.,100.){\line(0.,1.){5.30917}}
\put(500.,100.){\line(0.,1.){5.30917}}
\put(600.,100.){\line(0.,1.){5.30917}}
\put(120.,100.){\line(0.,1.){3.1855}}
\put(140.,100.){\line(0.,1.){3.1855}}
\put(160.,100.){\line(0.,1.){3.1855}}
\put(180.,100.){\line(0.,1.){3.1855}}
\put(220.,100.){\line(0.,1.){3.1855}}
\put(240.,100.){\line(0.,1.){3.1855}}
\put(260.,100.){\line(0.,1.){3.1855}}
\put(280.,100.){\line(0.,1.){3.1855}}
\put(320.,100.){\line(0.,1.){3.1855}}
\put(340.,100.){\line(0.,1.){3.1855}}
\put(360.,100.){\line(0.,1.){3.1855}}
\put(380.,100.){\line(0.,1.){3.1855}}
\put(420.,100.){\line(0.,1.){3.1855}}
\put(440.,100.){\line(0.,1.){3.1855}}
\put(460.,100.){\line(0.,1.){3.1855}}
\put(480.,100.){\line(0.,1.){3.1855}}
\put(520.,100.){\line(0.,1.){3.1855}}
\put(540.,100.){\line(0.,1.){3.1855}}
\put(560.,100.){\line(0.,1.){3.1855}}
\put(580.,100.){\line(0.,1.){3.1855}}
\put(87.5,100.){\line(1.,0.){525.}}
\put(100.,200.){\line(1.,0.){3.28125}}
\put(100.,300.){\line(1.,0.){3.28125}}
\put(100.,400.){\line(1.,0.){3.28125}}
\put(100.,500.){\line(1.,0.){3.28125}}
\put(100.,600.){\line(1.,0.){3.28125}}
\put(100.,120.){\line(1.,0.){1.96875}}
\put(100.,140.){\line(1.,0.){1.96875}}
\put(100.,160.){\line(1.,0.){1.96875}}
\put(100.,180.){\line(1.,0.){1.96875}}
\put(100.,220.){\line(1.,0.){1.96875}}
\put(100.,240.){\line(1.,0.){1.96875}}
\put(100.,260.){\line(1.,0.){1.96875}}
\put(100.,280.){\line(1.,0.){1.96875}}
\put(100.,320.){\line(1.,0.){1.96875}}
\put(100.,340.){\line(1.,0.){1.96875}}
\put(100.,360.){\line(1.,0.){1.96875}}
\put(100.,380.){\line(1.,0.){1.96875}}
\put(100.,420.){\line(1.,0.){1.96875}}
\put(100.,440.){\line(1.,0.){1.96875}}
\put(100.,460.){\line(1.,0.){1.96875}}
\put(100.,480.){\line(1.,0.){1.96875}}
\put(100.,520.){\line(1.,0.){1.96875}}
\put(100.,540.){\line(1.,0.){1.96875}}
\put(100.,560.){\line(1.,0.){1.96875}}
\put(100.,580.){\line(1.,0.){1.96875}}
\put(100.,87.5){\line(0.,1.){525.}}

\end{picture}
[/tex]
 
Last edited:
  • #445
That was not too much tex.

Limit is 20000 characters, interesting.

5 sin(2x) +5 x 0 to 10
[tex]
\begin{picture}(200,200)(0,0)

\put(40.,-4.24641){2.}
\put(80.,-4.24641){4.}
\put(120.,-4.24641){6.}
\put(160.,-4.24641){8.}
\put(200.,-4.24641){10.}
\put(-2.625,40.){0.2}
\put(-2.625,80.){0.4}
\put(-2.625,120.){0.6}
\put(-2.625,160.){0.8}
\put(-2.625,200.){1.}

\put(40.,0.){\line(0.,1.){2.12321}}
\put(80.,0.){\line(0.,1.){2.12321}}
\put(120.,0.){\line(0.,1.){2.12321}}
\put(160.,0.){\line(0.,1.){2.12321}}
\put(200.,0.){\line(0.,1.){2.12321}}
\put(10.,0.){\line(0.,1.){1.27392}}
\put(20.,0.){\line(0.,1.){1.27392}}
\put(30.,0.){\line(0.,1.){1.27392}}
\put(50.,0.){\line(0.,1.){1.27392}}
\put(60.,0.){\line(0.,1.){1.27392}}
\put(70.,0.){\line(0.,1.){1.27392}}
\put(90.,0.){\line(0.,1.){1.27392}}
\put(100.,0.){\line(0.,1.){1.27392}}
\put(110.,0.){\line(0.,1.){1.27392}}
\put(130.,0.){\line(0.,1.){1.27392}}
\put(140.,0.){\line(0.,1.){1.27392}}
\put(150.,0.){\line(0.,1.){1.27392}}
\put(170.,0.){\line(0.,1.){1.27392}}
\put(180.,0.){\line(0.,1.){1.27392}}
\put(190.,0.){\line(0.,1.){1.27392}}
\put(-3.,0.){\line(1.,0.){2100.}}
\put(0.,40.){\line(1.,0.){13.125}}
\put(0.,80.){\line(1.,0.){13.125}}
\put(0.,120.){\line(1.,0.){13.125}}
\put(0.,160.){\line(1.,0.){13.125}}
\put(0.,200.){\line(1.,0.){13.125}}
\put(0.,10.){\line(1.,0.){7.875}}
\put(0.,20.){\line(1.,0.){7.875}}
\put(0.,30.){\line(1.,0.){7.875}}
\put(0.,50.){\line(1.,0.){7.875}}
\put(0.,60.){\line(1.,0.){7.875}}
\put(0.,70.){\line(1.,0.){7.875}}
\put(0.,90.){\line(1.,0.){7.875}}
\put(0.,100.){\line(1.,0.){7.875}}
\put(0.,110.){\line(1.,0.){7.875}}
\put(0.,130.){\line(1.,0.){7.875}}
\put(0.,140.){\line(1.,0.){7.875}}
\put(0.,150.){\line(1.,0.){7.875}}
\put(0.,170.){\line(1.,0.){7.875}}
\put(0.,180.){\line(1.,0.){7.875}}
\put(0.,190.){\line(1.,0.){7.875}}
\put(0.,-4.99793){\line(0.,1.){209.954}}

\put(2.,154.402){\circle{3}}
\put(4.,136.648){\circle{3}}
\put(6.,117.433){\circle{3}}
\put(8.,97.5225){\circle{3}}
\put(10.,77.711){\circle{3}}
\put(12.,58.7882){\circle{3}}
\put(14.,41.5083){\circle{3}}
\put(16.,26.5603){\circle{3}}
\put(18.,14.5401){\circle{3}}
\put(20.,5.92694){\circle{3}}
\put(22.,1.06418){\circle{3}}
\put(24.,0.145665){\circle{3}}
\put(26.,3.20803){\circle{3}}
\put(28.,10.1292){\circle{3}}
\put(30.,20.6332){\circle{3}}
\put(32.,34.3013){\circle{3}}
\put(34.,50.5887){\circle{3}}
\put(36.,68.8459){\circle{3}}
\put(38.,88.3451){\circle{3}}
\put(40.,108.309){\circle{3}}
\put(42.,127.942){\circle{3}}
\put(44.,146.46){\circle{3}}
\put(46.,163.127){\circle{3}}
\put(48.,177.276){\circle{3}}
\put(50.,188.345){\circle{3}}
\put(52.,195.892){\circle{3}}
\put(54.,199.616){\circle{3}}
\put(56.,199.369){\circle{3}}
\put(58.,195.16){\circle{3}}
\put(60.,187.158){\circle{3}}
\put(62.,175.68){\circle{3}}
\put(64.,161.186){\circle{3}}
\put(66.,144.252){\circle{3}}
\put(68.,125.554){\circle{3}}
\put(70.,105.837){\circle{3}}
\put(72.,85.888){\circle{3}}
\put(74.,66.5012){\circle{3}}
\put(76.,48.4499){\circle{3}}
\put(78.,32.4537){\circle{3}}
\put(80.,19.1504){\circle{3}}
\put(82.,9.07026){\circle{3}}
\put(84.,2.61524){\circle{3}}
\put(86.,0.0426397){\circle{3}}
\put(88.,1.45503){\circle{3}}
\put(90.,6.79609){\circle{3}}
\put(92.,15.8529){\circle{3}}
\put(94.,28.2644){\circle{3}}
\put(96.,43.5358){\circle{3}}
\put(98.,61.0582){\circle{3}}
\put(100.,80.1331){\circle{3}}
\put(102.,100.){\circle{3}}
\put(104.,119.867){\circle{3}}
\put(106.,138.942){\circle{3}}
\put(108.,156.464){\circle{3}}
\put(110.,171.736){\circle{3}}
\put(112.,184.147){\circle{3}}
\put(114.,193.204){\circle{3}}
\put(116.,198.545){\circle{3}}
\put(118.,199.957){\circle{3}}
\put(120.,197.385){\circle{3}}
\put(122.,190.93){\circle{3}}
\put(124.,180.85){\circle{3}}
\put(126.,167.546){\circle{3}}
\put(128.,151.55){\circle{3}}
\put(130.,133.499){\circle{3}}
\put(132.,114.112){\circle{3}}
\put(134.,94.1626){\circle{3}}
\put(136.,74.4459){\circle{3}}
\put(138.,55.748){\circle{3}}
\put(140.,38.8142){\circle{3}}
\put(142.,24.3198){\circle{3}}
\put(144.,12.8424){\circle{3}}
\put(146.,4.83979){\circle{3}}
\put(148.,0.6309){\circle{3}}
\put(150.,0.383539){\circle{3}}
\put(152.,4.10757){\circle{3}}
\put(154.,11.6545){\circle{3}}
\put(156.,22.7236){\circle{3}}
\put(158.,36.8733){\circle{3}}
\put(160.,53.5398){\circle{3}}
\put(162.,72.0585){\circle{3}}
\put(164.,91.6911){\circle{3}}
\put(166.,111.655){\circle{3}}
\put(168.,131.154){\circle{3}}
\put(170.,149.411){\circle{3}}
\put(172.,165.699){\circle{3}}
\put(174.,179.367){\circle{3}}
\put(176.,189.871){\circle{3}}
\put(178.,196.792){\circle{3}}
\put(180.,199.854){\circle{3}}
\put(182.,198.936){\circle{3}}
\put(184.,194.073){\circle{3}}
\put(186.,185.46){\circle{3}}
\put(188.,173.44){\circle{3}}
\put(190.,158.492){\circle{3}}
\put(192.,141.212){\circle{3}}
\put(194.,122.289){\circle{3}}
\put(196.,102.478){\circle{3}}
\put(198.,82.5673){\circle{3}}
\put(200.,63.3521){\circle{3}}
\put(202.,45.5979){\circle{3}}

\end{picture}
[/tex]

hmm can not put things too close together.

I am having trouble using negative number. I should just displace everything.
What is a better way to do these graphs, so they take fewer commands?
 
Last edited:
  • #446
10 BesselJ[0,z]

[tex]

\newcommand{\strecke}[2]{\qbezier(#1)(#1)(#2)}

\begin{picture}(210,210)(0,0)

\put(-100.,-2.97891){-10}
\put(-50.,-2.97891){-5}
\put(50.,-2.97891){5}
\put(100.,-2.97891){10}
\put(-2.625,-40.){-4}
\put(-2.625,-20.){-2}
\put(-2.625,20.){2}
\put(-2.625,40.){4}
\put(-2.625,60.){6}
\put(-2.625,80.){8}
\put(-2.625,100.){10}

\strecke{-100.,0.}{-100.,1.48945}
\strecke{-50.,0.}{-50.,1.48945}
\strecke{50.,0.}{50.,1.48945}
\strecke{100.,0.}{100.,1.48945}
\strecke{-90.,0.}{-90.,0.893672}
\strecke{-80.,0.}{-80.,0.893672}
\strecke{-70.,0.}{-70.,0.893672}
\strecke{-60.,0.}{-60.,0.893672}
\strecke{-40.,0.}{-40.,0.893672}
\strecke{-30.,0.}{-30.,0.893672}
\strecke{-20.,0.}{-20.,0.893672}
\strecke{-10.,0.}{-10.,0.893672}
\strecke{10.,0.}{10.,0.893672}
\strecke{20.,0.}{20.,0.893672}
\strecke{30.,0.}{30.,0.893672}
\strecke{40.,0.}{40.,0.893672}
\strecke{60.,0.}{60.,0.893672}
\strecke{70.,0.}{70.,0.893672}
\strecke{80.,0.}{80.,0.893672}
\strecke{90.,0.}{90.,0.893672}
\strecke{-105.,0.}{105.,0.}
\strecke{0.,-40.}{1.3125,-40.}
\strecke{0.,-20.}{1.3125,-20.}
\strecke{0.,20.}{1.3125,20.}
\strecke{0.,40.}{1.3125,40.}
\strecke{0.,60.}{1.3125,60.}
\strecke{0.,80.}{1.3125,80.}
\strecke{0.,100.}{1.3125,100.}
\strecke{0.,-35.}{0.7875,-35.}
\strecke{0.,-30.}{0.7875,-30.}
\strecke{0.,-25.}{0.7875,-25.}
\strecke{0.,-15.}{0.7875,-15.}
\strecke{0.,-10.}{0.7875,-10.}
\strecke{0.,-5.}{0.7875,-5.}
\strecke{0.,5.}{0.7875,5.}
\strecke{0.,10.}{0.7875,10.}
\strecke{0.,15.}{0.7875,15.}
\strecke{0.,25.}{0.7875,25.}
\strecke{0.,30.}{0.7875,30.}
\strecke{0.,35.}{0.7875,35.}
\strecke{0.,45.}{0.7875,45.}
\strecke{0.,50.}{0.7875,50.}
\strecke{0.,55.}{0.7875,55.}
\strecke{0.,65.}{0.7875,65.}
\strecke{0.,70.}{0.7875,70.}
\strecke{0.,75.}{0.7875,75.}
\strecke{0.,85.}{0.7875,85.}
\strecke{0.,90.}{0.7875,90.}
\strecke{0.,95.}{0.7875,95.}
\strecke{0.,-43.7823}{0.,103.503}

\strecke{-100.,-24.5936}{-99.0241,-24.0505}
\strecke{-99.0241,-24.0505}{-98.115,-23.3328}
\strecke{-98.115,-23.3328}{-97.1175,-22.3149}
\strecke{-97.1175,-22.3149}{-96.0504,-20.9679}
\strecke{-96.0504,-20.9679}{-93.8702,-17.4397}
\strecke{-93.8702,-17.4397}{-91.8866,-13.4273}
\strecke{-91.8866,-13.4273}{-83.0382,9.49894}
\strecke{-83.0382,9.49894}{-78.6782,20.1326}
\strecke{-78.6782,20.1326}{-76.7628,23.88}
\strecke{-76.7628,23.88}{-75.7464,25.5565}
\strecke{-75.7464,25.5565}{-74.653,27.0882}
\strecke{-74.653,27.0882}{-73.5972,28.2796}
\strecke{-73.5972,28.2796}{-72.6312,29.1073}
\strecke{-72.6312,29.1073}{-72.167,29.4124}
\strecke{-72.167,29.4124}{-71.6602,29.675}
\strecke{-71.6602,29.675}{-71.4286,29.7703}
\strecke{-71.4286,29.7703}{-71.1816,29.8546}
\strecke{-71.1816,29.8546}{-70.9485,29.9177}
\strecke{-70.9485,29.9177}{-70.7372,29.961}
\strecke{-70.7372,29.961}{-70.4772,29.9961}
\strecke{-70.4772,29.9961}{-70.2024,30.0112}
\strecke{-70.2024,30.0112}{-69.9679,30.0063}
\strecke{-69.9679,30.0063}{-69.7104,29.9817}
\strecke{-69.7104,29.9817}{-69.4332,29.933}
\strecke{-69.4332,29.933}{-69.2777,29.8954}
\strecke{-69.2777,29.8954}{-69.136,29.8549}
\strecke{-69.136,29.8549}{-68.5997,29.6462}
\strecke{-68.5997,29.6462}{-68.1044,29.376}
\strecke{-68.1044,29.376}{-67.5656,28.9977}
\strecke{-67.5656,28.9977}{-66.586,28.0862}
\strecke{-66.586,28.0862}{-65.568,26.8371}
\strecke{-65.568,26.8371}{-64.6122,25.3916}
\strecke{-64.6122,25.3916}{-62.4334,21.1615}
\strecke{-62.4334,21.1615}{-58.0218,9.23801}
\strecke{-58.0218,9.23801}{-49.8974,-18.095}
\strecke{-49.8974,-18.095}{-45.7714,-30.1939}
\strecke{-45.7714,-30.1939}{-44.641,-32.8662}
\strecke{-44.641,-32.8662}{-43.4333,-35.3264}
\strecke{-43.4333,-35.3264}{-42.3016,-37.2221}
\strecke{-42.3016,-37.2221}{-41.2581,-38.5884}
\strecke{-41.2581,-38.5884}{-40.7456,-39.1178}
\strecke{-40.7456,-39.1178}{-40.182,-39.5885}
\strecke{-40.182,-39.5885}{-39.6154,-39.9407}
\strecke{-39.6154,-39.9407}{-39.3054,-40.081}
\strecke{-39.3054,-40.081}{-39.1667,-40.1317}
\strecke{-39.1667,-40.1317}{-39.0155,-40.1783}
\strecke{-39.0155,-40.1783}{-38.7419,-40.2397}
\strecke{-38.7419,-40.2397}{-38.4822,-40.2705}
\strecke{-38.4822,-40.2705}{-38.2293,-40.2744}
\strecke{-38.2293,-40.2744}{-37.9948,-40.255}
\strecke{-37.9948,-40.255}{-37.8512,-40.2321}
\strecke{-37.8512,-40.2321}{-37.7161,-40.2029}
\strecke{-37.7161,-40.2029}{-37.4638,-40.1283}
\strecke{-37.4638,-40.1283}{-37.192,-40.0187}
\strecke{-37.192,-40.0187}{-36.8984,-39.8662}
\strecke{-36.8984,-39.8662}{-36.4191,-39.5403}
\strecke{-36.4191,-39.5403}{-35.8938,-39.0731}
\strecke{-35.8938,-39.0731}{-34.8339,-37.7788}
\strecke{-34.8339,-37.7788}{-33.8522,-36.1602}
\strecke{-33.8522,-36.1602}{-32.937,-34.2898}
\strecke{-32.937,-34.2898}{-30.7365,-28.4}
\strecke{-30.7365,-28.4}{-28.6546,-21.1136}
\strecke{-28.6546,-21.1136}{-24.7552,-3.61431}
\strecke{-24.7552,-3.61431}{-16.6951,41.5575}
\strecke{-16.6951,41.5575}{-12.6162,63.9957}
\strecke{-12.6162,63.9957}{-10.4509,74.5029}
\strecke{-10.4509,74.5029}{-8.11985,84.1839}
\strecke{-8.11985,84.1839}{-5.89533,91.4982}
\strecke{-5.89533,91.4982}{-4.92185,94.0349}
\strecke{-4.92185,94.0349}{-3.8584,96.3127}
\strecke{-3.8584,96.3127}{-2.84882,97.9813}
\strecke{-2.84882,97.9813}{-2.36599,98.6054}
\strecke{-2.36599,98.6054}{-1.91077,99.0893}
\strecke{-1.91077,99.0893}{-1.66136,99.3112}
\strecke{-1.66136,99.3112}{-1.39135,99.5166}
\strecke{-1.39135,99.5166}{-1.16675,99.66}
\strecke{-1.16675,99.66}{-0.92001,99.7885}
\strecke{-0.92001,99.7885}{-0.652516,99.8936}
\strecke{-0.652516,99.8936}{-0.506303,99.9359}
\strecke{-0.506303,99.9359}{-0.369689,99.9658}
\strecke{-0.369689,99.9658}{-0.125229,99.9961}
\strecke{-0.125229,99.9961}{0.137046,99.9953}
\strecke{0.137046,99.9953}{0.392084,99.9616}
\strecke{0.392084,99.9616}{0.537344,99.9278}
\strecke{0.537344,99.9278}{0.673827,99.8865}
\strecke{0.673827,99.8865}{0.948362,99.7753}
\strecke{0.948362,99.7753}{1.24455,99.6131}
\strecke{1.24455,99.6131}{1.77933,99.2101}
\strecke{1.77933,99.2101}{2.27005,98.7159}
\strecke{2.27005,98.7159}{3.40077,97.1295}
\strecke{3.40077,97.1295}{4.59219,94.797}
\strecke{4.59219,94.797}{6.6086,89.376}
\strecke{6.6086,89.376}{8.81609,81.4929}
\strecke{8.81609,81.4929}{12.9293,62.3771}
\strecke{12.9293,62.3771}{17.3271,37.9057}
\strecke{17.3271,37.9057}{21.5036,13.8125}
\strecke{21.5036,13.8125}{26.0349,-9.84447}
\strecke{26.0349,-9.84447}{28.1534,-19.128}
\strecke{28.1534,-19.128}{30.3981,-27.3252}
\strecke{30.3981,-27.3252}{32.3145,-32.8208}
\strecke{32.3145,-32.8208}{33.3235,-35.1219}
\strecke{33.3235,-35.1219}{34.4243,-37.1524}
\strecke{34.4243,-37.1524}{34.991,-38.0004}
\strecke{34.991,-38.0004}{35.5169,-38.6668}
\strecke{35.5169,-38.6668}{36.0614,-39.2347}
\strecke{36.0614,-39.2347}{36.5549,-39.6423}
\strecke{36.5549,-39.6423}{36.7884,-39.7998}
\strecke{36.7884,-39.7998}{37.0408,-39.9446}
\strecke{37.0408,-39.9446}{37.2589,-40.0485}
\strecke{37.2589,-40.0485}{37.4982,-40.14}
\strecke{37.4982,-40.14}{37.7529,-40.2115}
\strecke{37.7529,-40.2115}{38.0218,-40.2583}
\strecke{38.0218,-40.2583}{38.2709,-40.2755}
\strecke{38.2709,-40.2755}{38.5033,-40.269}
\strecke{38.5033,-40.269}{38.7759,-40.2337}
\strecke{38.7759,-40.2337}{38.9299,-40.2007}
\strecke{38.9299,-40.2007}{39.0723,-40.1619}
\strecke{39.0723,-40.1619}{39.3335,-40.0698}
\strecke{39.3335,-40.0698}{39.611,-39.9429}
\strecke{39.611,-39.9429}{40.0909,-39.6534}
\strecke{40.0909,-39.6534}{40.6204,-39.2326}
\strecke{40.6204,-39.2326}{41.7907,-37.9383}
\strecke{41.7907,-37.9383}{42.8889,-36.2901}
\strecke{42.8889,-36.2901}{44.9556,-32.1566}
\strecke{44.9556,-32.1566}{47.1304,-26.5673}
\strecke{47.1304,-26.5673}{51.0174,-14.3747}
\strecke{51.0174,-14.3747}{59.0244,12.2753}
\strecke{59.0244,12.2753}{61.1449,18.0975}
\strecke{61.1449,18.0975}{63.1457,22.6817}
\strecke{63.1457,22.6817}{64.2526,24.7812}
\strecke{64.2526,24.7812}{65.4519,26.6756}
\strecke{65.4519,26.6756}{66.5419,28.0384}
\strecke{66.5419,28.0384}{67.0669,28.5696}
\strecke{67.0669,28.5696}{67.5464,28.9826}
\strecke{67.5464,28.9826}{68.0166,29.3204}
\strecke{68.0166,29.3204}{68.529,29.6122}
\strecke{68.529,29.6122}{68.81,29.7384}
\strecke{68.81,29.7384}{69.0704,29.834}
\strecke{69.0704,29.834}{69.3193,29.9062}
\strecke{69.3193,29.9062}{69.5842,29.9624}
\strecke{69.5842,29.9624}{69.832,29.9958}
\strecke{69.832,29.9958}{70.0997,30.0111}
\strecke{70.0997,30.0111}{70.3524,30.0058}
\strecke{70.3524,30.0058}{70.5844,29.9841}
\strecke{70.5844,29.9841}{70.7947,29.9505}
\strecke{70.7947,29.9505}{71.025,29.8987}
\strecke{71.025,29.8987}{71.2656,29.8279}
\strecke{71.2656,29.8279}{71.4897,29.7467}
\strecke{71.4897,29.7467}{72.0533,29.4777}
\strecke{72.0533,29.4777}{72.5862,29.1395}
\strecke{72.5862,29.1395}{73.5841,28.2926}
\strecke{73.5841,28.2926}{74.6585,27.0812}
\strecke{74.6585,27.0812}{75.8252,25.4349}
\strecke{75.8252,25.4349}{79.9891,17.1907}
\strecke{79.9891,17.1907}{84.4046,5.81743}
\strecke{84.4046,5.81743}{88.2305,-4.5302}
\strecke{88.2305,-4.5302}{92.3474,-14.4202}
\strecke{92.3474,-14.4202}{94.3955,-18.38}
\strecke{94.3955,-18.38}{96.3431,-21.3633}
\strecke{96.3431,-21.3633}{98.0912,-23.3113}
\strecke{98.0912,-23.3113}{98.5702,-23.7175}
\strecke{98.5702,-23.7175}{99.0809,-24.0886}
\strecke{99.0809,-24.0886}{100.,-24.5936}

\end{picture}

[/tex]

10 BesselJ[1,z]

[tex]
\newcommand{\strecke}[2]{\qbezier(#1)(#1)(#2)}

\begin{picture}(210,210)(0,0)

\put(-100.,-2.47137){-10}
\put(-50.,-2.47137){-5}
\put(50.,-2.47137){5}
\put(100.,-2.47137){10}
\put(-2.625,-60.){-6}
\put(-2.625,-40.){-4}
\put(-2.625,-20.){-2}
\put(-2.625,20.){2}
\put(-2.625,40.){4}
\put(-2.625,60.){6}

\strecke{-100.,0.}{-100.,1.23569}
\strecke{-50.,0.}{-50.,1.23569}
\strecke{50.,0.}{50.,1.23569}
\strecke{100.,0.}{100.,1.23569}
\strecke{-90.,0.}{-90.,0.741412}
\strecke{-80.,0.}{-80.,0.741412}
\strecke{-70.,0.}{-70.,0.741412}
\strecke{-60.,0.}{-60.,0.741412}
\strecke{-40.,0.}{-40.,0.741412}
\strecke{-30.,0.}{-30.,0.741412}
\strecke{-20.,0.}{-20.,0.741412}
\strecke{-10.,0.}{-10.,0.741412}
\strecke{10.,0.}{10.,0.741412}
\strecke{20.,0.}{20.,0.741412}
\strecke{30.,0.}{30.,0.741412}
\strecke{40.,0.}{40.,0.741412}
\strecke{60.,0.}{60.,0.741412}
\strecke{70.,0.}{70.,0.741412}
\strecke{80.,0.}{80.,0.741412}
\strecke{90.,0.}{90.,0.741412}
\strecke{-105.,0.}{105.,0.}
\strecke{0.,-60.}{1.3125,-60.}
\strecke{0.,-40.}{1.3125,-40.}
\strecke{0.,-20.}{1.3125,-20.}
\strecke{0.,20.}{1.3125,20.}
\strecke{0.,40.}{1.3125,40.}
\strecke{0.,60.}{1.3125,60.}
\strecke{0.,-55.}{0.7875,-55.}
\strecke{0.,-50.}{0.7875,-50.}
\strecke{0.,-45.}{0.7875,-45.}
\strecke{0.,-35.}{0.7875,-35.}
\strecke{0.,-30.}{0.7875,-30.}
\strecke{0.,-25.}{0.7875,-25.}
\strecke{0.,-15.}{0.7875,-15.}
\strecke{0.,-10.}{0.7875,-10.}
\strecke{0.,-5.}{0.7875,-5.}
\strecke{0.,5.}{0.7875,5.}
\strecke{0.,10.}{0.7875,10.}
\strecke{0.,15.}{0.7875,15.}
\strecke{0.,25.}{0.7875,25.}
\strecke{0.,30.}{0.7875,30.}
\strecke{0.,35.}{0.7875,35.}
\strecke{0.,45.}{0.7875,45.}
\strecke{0.,50.}{0.7875,50.}
\strecke{0.,55.}{0.7875,55.}
\strecke{0.,-61.0956}{0.,61.0957}

\strecke{-100.,-4.3473}{-96.0504,-13.8398}
\strecke{-96.0504,-13.8398}{-94.0386,-18.0874}
\strecke{-94.0386,-18.0874}{-91.8866,-21.9215}
\strecke{-91.8866,-21.9215}{-90.7419,-23.5967}
\strecke{-90.7419,-23.5967}{-89.7004,-24.8732}
\strecke{-89.7004,-24.8732}{-88.6534,-25.9014}
\strecke{-88.6534,-25.9014}{-87.6637,-26.6259}
\strecke{-87.6637,-26.6259}{-87.1039,-26.9253}
\strecke{-87.1039,-26.9253}{-86.7975,-27.0547}
\strecke{-86.7975,-27.0547}{-86.5104,-27.1536}
\strecke{-86.5104,-27.1536}{-86.2664,-27.2205}
\strecke{-86.2664,-27.2205}{-86.0038,-27.2748}
\strecke{-86.0038,-27.2748}{-85.8544,-27.2975}
\strecke{-85.8544,-27.2975}{-85.7124,-27.3136}
\strecke{-85.7124,-27.3136}{-85.4457,-27.3291}
\strecke{-85.4457,-27.3291}{-85.2942,-27.3294}
\strecke{-85.2942,-27.3294}{-85.1568,-27.3243}
\strecke{-85.1568,-27.3243}{-84.9982,-27.312}
\strecke{-84.9982,-27.312}{-84.8488,-27.2943}
\strecke{-84.8488,-27.2943}{-84.5826,-27.2477}
\strecke{-84.5826,-27.2477}{-84.4327,-27.213}
\strecke{-84.4327,-27.213}{-84.2947,-27.1756}
\strecke{-84.2947,-27.1756}{-83.6837,-26.9483}
\strecke{-83.6837,-26.9483}{-83.376,-26.7954}
\strecke{-83.376,-26.7954}{-83.0382,-26.5982}
\strecke{-83.0382,-26.5982}{-81.9377,-25.7428}
\strecke{-81.9377,-25.7428}{-80.8952,-24.6368}
\strecke{-80.8952,-24.6368}{-78.9412,-21.8196}
\strecke{-78.9412,-21.8196}{-76.8375,-17.7857}
\strecke{-76.8375,-17.7857}{-74.5491,-12.3888}
\strecke{-74.5491,-12.3888}{-65.9849,12.5422}
\strecke{-65.9849,12.5422}{-61.7318,23.9266}
\strecke{-61.7318,23.9266}{-59.6488,28.3446}
\strecke{-59.6488,28.3446}{-58.7367,29.9583}
\strecke{-58.7367,29.9583}{-57.739,31.4726}
\strecke{-57.739,31.4726}{-56.8405,32.5974}
\strecke{-56.8405,32.5974}{-55.8805,33.5346}
\strecke{-55.8805,33.5346}{-55.3495,33.9313}
\strecke{-55.3495,33.9313}{-54.867,34.2145}
\strecke{-54.867,34.2145}{-54.6342,34.3244}
\strecke{-54.6342,34.3244}{-54.3819,34.4237}
\strecke{-54.3819,34.4237}{-54.1611,34.4936}
\strecke{-54.1611,34.4936}{-53.9239,34.5508}
\strecke{-53.9239,34.5508}{-53.6682,34.5918}
\strecke{-53.6682,34.5918}{-53.429,34.6104}
\strecke{-53.429,34.6104}{-53.2831,34.6125}
\strecke{-53.2831,34.6125}{-53.1445,34.6078}
\strecke{-53.1445,34.6078}{-52.8846,34.5817}
\strecke{-52.8846,34.5817}{-52.6114,34.5298}
\strecke{-52.6114,34.5298}{-52.3581,34.4592}
\strecke{-52.3581,34.4592}{-52.0801,34.3567}
\strecke{-52.0801,34.3567}{-51.7842,34.2188}
\strecke{-51.7842,34.2188}{-51.2507,33.8952}
\strecke{-51.2507,33.8952}{-50.7489,33.5025}
\strecke{-50.7489,33.5025}{-49.8113,32.5405}
\strecke{-49.8113,32.5405}{-48.8306,31.2183}
\strecke{-48.8306,31.2183}{-47.7556,29.4047}
\strecke{-47.7556,29.4047}{-45.5866,24.6364}
\strecke{-45.5866,24.6364}{-41.7047,12.8411}
\strecke{-41.7047,12.8411}{-33.2047,-21.2233}
\strecke{-33.2047,-21.2233}{-29.2831,-36.533}
\strecke{-29.2831,-36.533}{-27.216,-43.4929}
\strecke{-27.216,-43.4929}{-25.0229,-49.6527}
\strecke{-25.0229,-49.6527}{-23.9181,-52.1929}
\strecke{-23.9181,-52.1929}{-22.7002,-54.5082}
\strecke{-22.7002,-54.5082}{-21.5925,-56.1449}
\strecke{-21.5925,-56.1449}{-20.554,-57.2541}
\strecke{-20.554,-57.2541}{-20.0359,-57.649}
\strecke{-20.0359,-57.649}{-19.7536,-57.8192}
\strecke{-19.7536,-57.8192}{-19.4912,-57.9485}
\strecke{-19.4912,-57.9485}{-19.2662,-58.0373}
\strecke{-19.2662,-58.0373}{-19.0261,-58.1093}
\strecke{-19.0261,-58.1093}{-18.7598,-58.1617}
\strecke{-18.7598,-58.1617}{-18.518,-58.1842}
\strecke{-18.518,-58.1842}{-18.381,-58.1863}
\strecke{-18.381,-58.1863}{-18.236,-58.1802}
\strecke{-18.236,-58.1802}{-17.9763,-58.1476}
\strecke{-17.9763,-58.1476}{-17.8318,-58.1174}
\strecke{-17.8318,-58.1174}{-17.6968,-58.0815}
\strecke{-17.6968,-58.0815}{-17.3898,-57.9718}
\strecke{-17.3898,-57.9718}{-17.1215,-57.8441}
\strecke{-17.1215,-57.8441}{-16.8767,-57.7017}
\strecke{-16.8767,-57.7017}{-16.3261,-57.2914}
\strecke{-16.3261,-57.2914}{-15.8475,-56.8335}
\strecke{-15.8475,-56.8335}{-15.3188,-56.219}
\strecke{-15.3188,-56.219}{-14.2477,-54.6279}
\strecke{-14.2477,-54.6279}{-12.3232,-50.6368}
\strecke{-12.3232,-50.6368}{-10.0764,-44.2526}
\strecke{-10.0764,-44.2526}{-7.96538,-36.7507}
\strecke{-7.96538,-36.7507}{0.152197,0.760961}
\strecke{0.152197,0.760961}{4.27323,20.8821}
\strecke{4.27323,20.8821}{6.45359,30.6169}
\strecke{6.45359,30.6169}{8.7848,39.8209}
\strecke{8.7848,39.8209}{11.0397,47.2056}
\strecke{11.0397,47.2056}{13.0902,52.3979}
\strecke{13.0902,52.3979}{14.0789,54.3353}
\strecke{14.0789,54.3353}{15.1515,56.0009}
\strecke{15.1515,56.0009}{15.6433,56.6097}
\strecke{15.6433,56.6097}{16.1644,57.1472}
\strecke{16.1644,57.1472}{16.6114,57.5196}
\strecke{16.6114,57.5196}{17.0991,57.8321}
\strecke{17.0991,57.8321}{17.374,57.9651}
\strecke{17.374,57.9651}{17.629,58.0606}
\strecke{17.629,58.0606}{17.8728,58.1268}
\strecke{17.8728,58.1268}{18.1325,58.1705}
\strecke{18.1325,58.1705}{18.3878,58.1864}
\strecke{18.3878,58.1864}{18.6282,58.1769}
\strecke{18.6282,58.1769}{18.8441,58.1483}
\strecke{18.8441,58.1483}{19.0775,58.0959}
\strecke{19.0775,58.0959}{19.3345,58.0125}
\strecke{19.3345,58.0125}{19.6164,57.8902}
\strecke{19.6164,57.8902}{20.1856,57.546}
\strecke{20.1856,57.546}{20.7127,57.1119}
\strecke{20.7127,57.1119}{21.2046,56.6083}
\strecke{21.2046,56.6083}{22.1755,55.3407}
\strecke{22.1755,55.3407}{23.0603,53.8786}
\strecke{23.0603,53.8786}{25.0487,49.5887}
\strecke{25.0487,49.5887}{29.0596,37.3317}
\strecke{29.0596,37.3317}{33.4204,20.3317}
\strecke{33.4204,20.3317}{37.4943,3.34649}
\strecke{37.4943,3.34649}{41.9888,-13.8262}
\strecke{41.9888,-13.8262}{44.0376,-20.3887}
\strecke{44.0376,-20.3887}{46.2451,-26.2354}
\strecke{46.2451,-26.2354}{47.2605,-28.4445}
\strecke{47.2605,-28.4445}{48.3291,-30.419}
\strecke{48.3291,-30.419}{49.3117,-31.9069}
\strecke{49.3117,-31.9069}{50.2389,-33.0161}
\strecke{50.2389,-33.0161}{50.7436,-33.498}
\strecke{50.7436,-33.498}{51.2904,-33.9226}
\strecke{51.2904,-33.9226}{51.7874,-34.2205}
\strecke{51.7874,-34.2205}{52.2454,-34.4208}
\strecke{52.2454,-34.4208}{52.5016,-34.5018}
\strecke{52.5016,-34.5018}{52.7412,-34.5576}
\strecke{52.7412,-34.5576}{53.004,-34.5965}
\strecke{53.004,-34.5965}{53.1516,-34.6082}
\strecke{53.1516,-34.6082}{53.2863,-34.6125}
\strecke{53.2863,-34.6125}{53.5568,-34.6028}
\strecke{53.5568,-34.6028}{53.7097,-34.5866}
\strecke{53.7097,-34.5866}{53.8515,-34.5646}
\strecke{53.8515,-34.5646}{54.1113,-34.5071}
\strecke{54.1113,-34.5071}{54.3878,-34.4216}
\strecke{54.3878,-34.4216}{54.8896,-34.2028}
\strecke{54.8896,-34.2028}{55.4315,-33.8758}
\strecke{55.4315,-33.8758}{56.413,-33.0492}
\strecke{56.413,-33.0492}{57.3684,-31.9647}
\strecke{57.3684,-31.9647}{58.2459,-30.7371}
\strecke{58.2459,-30.7371}{60.2978,-27.072}
\strecke{60.2978,-27.072}{62.21,-22.7849}
\strecke{62.21,-22.7849}{66.5534,-10.8656}
\strecke{66.5534,-10.8656}{74.7393,12.872}
\strecke{74.7393,12.872}{76.8834,17.8839}
\strecke{76.8834,17.8839}{79.2115,22.265}
\strecke{79.2115,22.265}{80.2785,23.8503}
\strecke{80.2785,23.8503}{81.41,25.2184}
\strecke{81.41,25.2184}{82.376,26.1223}
\strecke{82.376,26.1223}{82.9278,26.527}
\strecke{82.9278,26.527}{83.4403,26.8295}
\strecke{83.4403,26.8295}{83.9615,27.0642}
\strecke{83.9615,27.0642}{84.237,27.1585}
\strecke{84.237,27.1585}{84.5307,27.2363}
\strecke{84.5307,27.2363}{84.6651,27.2642}
\strecke{84.6651,27.2642}{84.8106,27.2888}
\strecke{84.8106,27.2888}{85.0744,27.3187}
\strecke{85.0744,27.3187}{85.3312,27.3299}
\strecke{85.3312,27.3299}{85.5675,27.3244}
\strecke{85.5675,27.3244}{85.8008,27.3042}
\strecke{85.8008,27.3042}{86.0187,27.2722}
\strecke{86.0187,27.2722}{86.2577,27.2226}
\strecke{86.2577,27.2226}{86.514,27.1525}
\strecke{86.514,27.1525}{87.0372,26.9555}
\strecke{87.0372,26.9555}{87.5143,26.7137}
\strecke{87.5143,26.7137}{88.5922,25.9533}
\strecke{88.5922,25.9533}{89.7652,24.801}
\strecke{89.7652,24.801}{91.8981,21.9032}
\strecke{91.8981,21.9032}{95.8259,14.3398}
\strecke{95.8259,14.3398}{100.,4.3473}


\end{picture}

[/tex]
 
  • #447
Why does the first one work while the second one is messed up?

[tex]\frac{2AB}{t^{'}_A - t_A} = c[/tex]

[tex]\frac{2AB}{{t^'}_A - t_A} = c[/tex]
 
Last edited:
  • #448
How would i go about getting the Amp to space a few characters away from the t(not) symbol?
[tex] I = \sqrt {[\frac {22.6T + 0.088t -490.58} {5 * 10^{-5} * t}] * t_{0}} Amp[/tex]
 
  • #449
JesseM said:
Why does the first one work while the second one is messed up?

[tex]\frac{2AB}{t^{'}_A - t_A} = c[/tex]

[tex]\frac{2AB}{{t^'}_A - t_A} = c[/tex]


Because you screwed up the code.Specifically,because your first code differs from the second through misplaced "{" which changes the way the "\frac" would work...

Daniel.
 
  • #450
[tex]
\lim_{\substack{x\rightarrow 0\\}} f(x,y)
[/tex]
 
  • #451
I've got a question: Is it possible to make Feynman diagrams with our LaTeX hack? If not, would it be terribly difficult to create?

Thanks,
 
  • #452
[tex]A=60+(S+\Delta P) \times \frac{L_2}{L_1}[/tex]
 
  • #453
anomoly said:
How would i go about getting the Amp to space a few characters away from the t(not) symbol?
[tex] I = \sqrt {[\frac {22.6T + 0.088t -490.58} {5 * 10^{-5} * t}] * t_{0}} Amp[/tex]
[tex] I = \sqrt {[\frac {22.6T + 0.088t -490.58} {5 * 10^{-5} * t}] * t_{0}} \quad Amp[/tex]

If you want it still farther away, use \qquad instead of \quad.
If you want it closer, use \;
 
  • #454
I posted this today in the cosmology forum:

[tex]dt = \frac{da}{H_0 \left(\frac{\Omega_{m,0}}{a} + a^2 \Omega_{\Lambda,0}\right)^{\frac{1}{2}}} [/tex]

How can I made that the first "Omega" and "a" have the same size than the second?
 
  • #455
U can't.Note that the whole fraction must be on equal footing a^{2}Omega...That means that the denominator & the numerator would be smaller than they'd be without the fraction line.

Daniel.
 

Similar threads

  • MATLAB, Maple, Mathematica, LaTeX
Replies
3
Views
1K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
2
Views
3K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
4
Views
951
  • MATLAB, Maple, Mathematica, LaTeX
Replies
1
Views
959
  • MATLAB, Maple, Mathematica, LaTeX
Replies
2
Views
1K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
5
Views
353
  • MATLAB, Maple, Mathematica, LaTeX
Replies
8
Views
2K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
3
Views
278
  • MATLAB, Maple, Mathematica, LaTeX
Replies
1
Views
2K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
9
Views
3K
Back
Top