LaTeX Is LaTeX only used for typesetting math equations?

  • Thread starter Thread starter basty
  • Start date Start date
  • Tags Tags
    Latex
AI Thread Summary
LaTeX is a comprehensive typesetting system that extends beyond just math equations, allowing for complex document formatting. To align equations at the equals sign, users can utilize the "align" environment and the double backslash for new lines. The multiplication sign is represented by "\times," and parentheses can be sized for better visual clarity. For those looking to use LaTeX on a PC, MikTeX is recommended as it includes the necessary engine and editor. Resources like guidebooks and online wikis are available for further learning and support.
basty
Messages
94
Reaction score
0
How do you write on latex like this

##A = (1+2) * (4+7) * (2+9)##
##= 3 * 11 * 11##
##= 363##

Instead of this?

##A = (1+2) * (4+7) * (2+9)
= 3 * 11 * 11
= 363##

How do you align at = in Latex?

I would like to use Latex which is used in physicsforums in my PC. Please send me the download link.

Thank you
 
Physics news on Phys.org
The double backslash gets you a newline, and you can align equations using the "align" environment.
A multiplication sign is \times.
You can also size the parentheses.

What you asked for:
$$A=(1+2)(4+7)(2+9) \\=3\times 11\times 11 \\= 363$$

Using the align environment and sizing the parentheses:
$$\begin{align} A &=\big(1+2\big)\big(4+7\big)\big(2+9\big) \\ &=3\times 11\times 11 \\ &= 363 \end{align}$$

If you are going to be using LaTeX more (recommended) then you'll need a decent guidebook:
https://tobi.oetiker.ch/lshort/lshort.pdf < this is what I use
http://latex.wikia.com/wiki/Main_Page < wiki format
 
For LaTeX on PC, the standard and probably easiest way to go is Miktex It contains the latex engine, simple editor and previewer.
 
Oh yeah...
http://latex-project.org/ftp.html
... see the latex project for more.

There's also a short intro on the help page...
https://www.physicsforums.com/help/

LaTeX is a complete document typesetting system, not just for typesetting maths.
Using it in place of the built-in equation editor in a wysiwig editor like word is a bit more involved.

I use commandline with TexLive myself... but then it comes with the os.
 
Last edited:

Similar threads

Back
Top