Jump to content

Quick LaTeX Tutorial


Dave

Recommended Posts

This is a short guide to using the new LaTeX system that has been implemented on the boards. First off, for those who don't know what LaTeX is, a short description. LaTeX is, to all intents and purposes, a fully fledged math typesetting system - basically put, you can write math with it. It's a very flexible and hence very advanced piece of software, and the syntax for it is quite complex, but fairly easy to learn for typesetting smaller equations.

On scienceforums.net, we've implemented a small LaTeX system to allow you to typeset equations (in other words, cut out all the x^2 stuff and make things easier to read for everyone). The basic principle behind it is this: you have a LaTeX string, and you surround it by [math][/math] tags. I'll come to the syntax of the actual string in a moment.

For those who can already use LaTeX (and indeed, those who can't), a few things to note. In the system we've implemented, a tex file is created, surrounding the string you input with a \begin{display} environment so there is no need for $, $, \[ etc. Also note that we've included the standard AMS files for you; if anyone wants any special characters, I'm sure we can probably accommodate your needs.

The images are clickable, so you can see the code that was used to make them by clicking.

Now that's all out of the way, onto some examples smile.gif

Examples

[math]x^2_1[/math] - Indexes (both subscript and superscript) on variables

[math]f(x) = \sin(x)[/math] - A simple function.

[math]\frac{dy}{dxx} = \frac{1}{1+x^2}[/math] - Example of fractions - you can create small fractions by using \tfrac.

[math]\int_{-\infty}^{\infty} e^{-x^2} = \sqrt{\pi}[/math] - A nice integral.

[math]\mathcal{F}_{x} [\sin(2\pi k_0 x)](k) = \int_{-\infty}^{\infty} e^{-2\pi ikx} \left( \frac{e^{2\pi ik_{0}x} - e^{-2\pi ik_{0}x}}{2i} \right)\, dx[/math] - a Fourier Transformation, which is rather large.

 

I could go on and on, but I'll go onto explain some of the basic syntax of LaTeX.

Syntax

Functions & General Syntax

Basically put, if you want to write a math equation in LaTeX, you just write it. If you wanted f(x) = 3, then bung that between to math tags and you're done, producing [math]f(x)=3[/math]. Don't worry about extra spaces or carriage returns, because in general LaTeX will ignore them. It does get a little more complex than this, but don't worry about that for now. Remember that any letters you type in will be presumed to be some kind of variable and hence will be italicised.

We also have functions to display more complex things like matrices and fractions, and they have the syntax of having a \ before them, usually followed by some kind of argument. For example, \sin will produce the function sin and \frac{num}{denom} will produce a fraction with a specified numerator and denominator. More on these later.

Also remember that LaTeX is case sensitive, so \sigma is NOT the same as \Sigma.

Subscripts and Superscripts

This is perhaps one of the easiest things to do in LaTeX, and one of the most useful. Let's, for the sake of argument, say you wanted to write x2. Then you'd write x^{2}, producing [math]x^2[/math]. Notice that you don't necessarily need the { and } in cases where you only have 1 thing in the index, for example x^2. But it does care if you want to write something like [math]x^{3x+2}[/math]. Subscripts are done similarly, but you use the _ operator instead of ^. If you want both subscript and superscript, then use the syntax x^{2}_{1} - which is equivalent to x_{1}^{2}.

Fractions and functions

As I've mentioned, fractions are generated by using the function \frac{num}{denom}. For example:

[math]\frac{1}{3}[/math]

[math]\frac{7}{x^2}[/math]

If you want smaller fractions, you can use \tfrac, to produce things like [math]\tfrac{1}{2}[/math] which will fit into a line nicely without having to seperate it.

LaTeX has some nice in-built functions like \sin, \cos, etc. I'm not going to write them all down here, but I'll point you to a website at the end of the document that contains them. Likewise, you can write symbols (such as infinity by using \infty) and Greek letters (e.g. \phi, \Sigma, \sigma, etc)

Bracketing

You can get all your usual brackets just by typing them straight in; for instance, (, |, [, etc. However, sometimes they won't be the right size, especially if you want to write something like (1/2)n. You can get around this by using the \left and \right commands, and then placing your favourite brackets after them. For instance, to write (1/2)n, we have:

[math]\left( \frac{1}{2} \right)^{n}[/math]

Integrals, Summations and Limits

Integrals can be produced by using \int, summations by \sum and limits by \lim. You can put limits on them all in the right places by using the normal subscript/superscript commands. For instance:

[math]\int_a^b x^2 \,dx[/math]

[math]\lim_{n\to\infty} \frac{1}{n} = 0[/math]

[math]\sum_{n=1}^{\infty}\frac{1}{n^2} = \frac{\pi^2}{6}.[/math]

Summary

There's a lot more things you can do with LaTeX, and I'll try to add to this as time goes by. Have a look at:

http://www.maths.tcd.ie/~dwilkins/LaTeXPrimer/'>http://www.maths.tcd...ns/LaTeXPrimer/ - the LaTeX primer
http://omega.albany.edu:8008/Symbols.html'>http://omega.albany....08/Symbols.html - some symbols that you might find useful.

If you have any questions about the system, send me a PM and I'll try to help smile.gif

Cheers.

Link to comment
Share on other sites

In a few days time, I will hopefully be able to implement a clickable image, so that everyone can see the code behind what I've written here. In the meantime, you can view the code by either quoting the post (but please don't hit the reply button!) or by hovering your mouse over the image, which should display the math equation as the alternate title for the image.

 

Already doing it :P

Link to comment
Share on other sites

I can't see all of the equations' date=' only about half.

And hitting "Show Picture" doesn't work, either...[/quote']

 

Try hitting refresh. They don't always work for some reason; I think it's to do with the fact that we're storing the images off-site.

Link to comment
Share on other sites

Basically I modified vB slightly to add a math tag (which was the easy bit). Then all you have to do is get something like latexrender and modify it a bit to give you the kind of image you want. It's all very clever :)

Link to comment
Share on other sites

just testing

[math]ds^2=dt^2-(dx^2+dy^2+dz^2)[/math]

[math]\int_a^{\infty} f(x)dx=\lim_{L\to\infty}\int_a^{L}f(x)dx[/math]

[math]$Let$ {v_1,v_2,...,v_k}$be the basis set for the vector space$V$which are linearly independent, then it is possible to construct another basis set${e_1,e_2,...,e_k}$from the original basis set, such that the basis vectors in the new basis set are all orthogonal to each other, i.e.{:content:}lt;e_i,e_j>=0$for$ i≠j$ where{:content:}lt;,>$ is the inner product defined on the Vector Space$V$ [/math]

Link to comment
Share on other sites

why isn't this script coming out properly?

<math>$Let$ {v_1,v_2,...,v_k}$be the basis set for the vector space$V$which are linearly independent, then it is possible to construct another basis set${e_1,e_2,...,e_k}$from the original basis set, such that the basis vectors in the new basis set are all orthogonal to each other, i.e.$<e_i,e_j>=0$for$ i≠j$ where$<,>$ is the inner product defined on the Vector Space$V$ </math>

Link to comment
Share on other sites

The correct syntax is just [ math ] x^2 [ /math ] (without the spaces).

 

If you use the $, it will display it as text since the expression is already surrounded by a \begin{display} thing.

 

It's all at the top of the article.

Link to comment
Share on other sites

Technically speaking the "proper" way to do it is use \mbox{}, like so:

 

[math]\forall \epsilon > 0 \, \exists \,\delta > 0 \mbox{ such that } |x-c| < \delta \Rightarrow \left| \frac{f(x)-f©}{x-c} - f'© \right| < \epsilon[/math]

 

(that's the definition of differentiability at a point c)

Link to comment
Share on other sites

Just going to test the code:

 

[math]e^{j\pi} + 1 = 0[/math]

 

Sweet, thanks dave! This'll make things a little easier ;)

By the way, I had no idea that:

 

[math]\int_{-\infty}^{\infty}e^{-x^2} = \sqrt{\pi}[/math]

 

I'll have to remember that. :)

Link to comment
Share on other sites

Don't think it works because it's too long; I put a max character limit to stop people typing loads of stuff in and getting a stupidly large image for security purposes.

 

(btw I think I needed to add a dx to that integral)

 

(p.s. use i :D)

Link to comment
Share on other sites

oh yeah, dave, can u corrent my script. i just wanna see what it looks like

Mix maths and text to give this:

 

Let [math]\{v_1,v_2,...,v_k\}[/math]be the basis set for the vector space V which are linearly independent, then it is possible to construct another basis set [math]\{e_1,e_2,...,e_k\}[/math]from the original basis set, such that the basis vectors in the new basis set are all orthogonal to each other, i.e. [math]<e_i,e_j>=0[/math] for [math]i \neq j[/math] where [math]<,>[/math] is the inner product defined on the Vector Space V

 

That looks fine to me. Don't forget you need to put \ before { and } to tell [math]\LaTeX[/math] that you really mean those. If dave could put a math button to insert [ math] and [ /math] tags then it will be even easier to type.

Link to comment
Share on other sites

  • Dave unpinned this topic

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.