Login

Welcome, Guest. Please login or register.

May 29, 2025, 01:04:45 pm

Author Topic: Problem with using LaTeX for doing professional documents  (Read 2684 times)  Share 

0 Members and 1 Guest are viewing this topic.

QuantumJG

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1748
  • Applied Mathematics Student at UoM
  • Respect: +82
Problem with using LaTeX for doing professional documents
« on: January 15, 2010, 08:20:25 pm »
0
hey guys,

I'm considering using to make my uni assignments look more professional, but I can't seem to get it working.

I tried following these steps (http://www.pinteric.com/miktex.html), but kind of got confused.

Please help!

:(
2008: Finished VCE

2009 - 2011: Bachelor of Science (Mathematical Physics)

2012 - 2014: Master of Science (Applied Mathematics/Mathematical Physics)

2016 - 2018: Master of Engineering (Civil)

Semester 1:[/b] Engineering Mechanics, Fluid Mechanics, Engineering Risk Analysis, Sustainable Infrastructure Engineering

Semester 2:[/b] Earth Processes for Engineering, Engineering Materials, Structural Theory and Design, Systems Modelling and Design

TrueTears

  • TT
  • Honorary Moderator
  • Great Wonder of ATAR Notes
  • *******
  • Posts: 16363
  • Respect: +667
PhD @ MIT (Economics).

Interested in asset pricing, econometrics, and social choice theory.

kyzoo

  • Victorian
  • ATAR Notes Superstar
  • ******
  • Posts: 2040
  • Respect: +23
Re: Problem with using LaTeX for doing professional documents
« Reply #2 on: January 15, 2010, 08:26:36 pm »
0
Just use MathType if it's a word document.
2009
~ Methods (Non-CAS) [48 --> 49.4]

2010
~ Spesh [50 --> 51.6]
~ Physics [50 --> 50]
~ Chem [43 --> 46.5]
~ English [46 --> 46.2]
~ UMEP Maths [5.0]

2010 ATAR: 99.90
Aggregate 206.8

NOTE: PLEASE CONTACT ME ON EMAIL - [email protected] if you are looking for a swift reply.

stonecold

  • Victorian
  • Great Wonder of ATAR Notes
  • *******
  • Posts: 5335
  • Respect: +255
  • School Grad Year: 2010
Re: Problem with using LaTeX for doing professional documents
« Reply #3 on: January 15, 2010, 08:29:40 pm »
0
Just use MathType if it's a word document.

+1

Just go word options, customize, then add commands.  Then add formula and fraction options to your word toolbar.
2011-13: BBiomed (Microbiology & Immunology Major) @ UniMelb


VCE 2009'10: English 46 | English Language 49 | Chemistry 50 | Biology 50 | Further Mathematics 48 | Mathematical Methods CAS 39
ATAR: 99.85

"Failure is not when one falls down but rather when one fails to get up" - unknown

GerrySly

  • Victorian
  • Forum Leader
  • ****
  • Posts: 790
  • Respect: +5
Re: Problem with using LaTeX for doing professional documents
« Reply #4 on: January 15, 2010, 08:33:03 pm »
0
I'm considering using to make my uni assignments look more professional, but I can't seem to get it working.
Something completely unrelated to the thread. Latex actually has their own graphic in the set of images, so you don't have to make it up heh



Now back to the question at hand. I just used tex2pdf then just learnt the syntax that way. Took ages to make up my reference book with it, but by the end it was 10x faster then anything else for maths.

Just use MathType if it's a word document.

MathType is no good when you are creating large maths documents where you need all the spacing and formatting to be perfect and in line.
VCE 2009
English, Methods, Specialist, IT: Software Development, Religion & Society, French

QuantumJG

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1748
  • Applied Mathematics Student at UoM
  • Respect: +82
Re: Problem with using LaTeX for doing professional documents
« Reply #5 on: January 15, 2010, 09:04:15 pm »
0
http://www.artofproblemsolving.com/Wiki/index.php/LaTeX:Downloads

Thanks, you basically allowed me to do in 5 minutes, what I spent 5 hours on today!
2008: Finished VCE

2009 - 2011: Bachelor of Science (Mathematical Physics)

2012 - 2014: Master of Science (Applied Mathematics/Mathematical Physics)

2016 - 2018: Master of Engineering (Civil)

Semester 1:[/b] Engineering Mechanics, Fluid Mechanics, Engineering Risk Analysis, Sustainable Infrastructure Engineering

Semester 2:[/b] Earth Processes for Engineering, Engineering Materials, Structural Theory and Design, Systems Modelling and Design

Mao

  • CH41RMN
  • Honorary Moderator
  • Great Wonder of ATAR Notes
  • *******
  • Posts: 9181
  • Respect: +390
  • School: Kambrya College
  • School Grad Year: 2008
Re: Problem with using LaTeX for doing professional documents
« Reply #6 on: January 15, 2010, 09:15:48 pm »
0
Code: [Select]
\documentclass[a4paper]{article}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{fancyhdr}
\usepackage{multicol}
\usepackage[top=2.5cm,bottom=2.5cm,left=2cm,right=2cm]{geometry}

\pagestyle{fancy}
\fancyhead{}
\fancyfoot{}
\lhead{left header}
\chead{center footer}
\rhead{right header}
\lfoot{left footer}
\cfoot{center footer}
\rfoot{Page \thepage}

\title{This is your title}
\author{This is the author name}

\begin{document}

\maketitle

Some body goes in here, $y = x^2 + 2\sqrt{x} - 1$. Notice the formatting of header/footer doesn't apply to the first page.

\[ \frac{d}{dx}\left( \int_{a}^{x} f(t)\; dt \right) = f(x) \]

\begin{align*}
a & = 2x^2 \\
\frac{a}{2} & = x^2 \\
x & = \sqrt{\frac{a}{2}} \\
\end{align*}

\newpage

This is on the second page.

\end{document}

Some sample code, this basically outlines the difference between using here and using it to do whole documents. There are some packages you need to install, they are all 'included' in the above code, install them as the program asks. :)
Editor for ATARNotes Chemistry study guides.

VCE 2008 | Monash BSc (Chem., Appl. Math.) 2009-2011 | UoM BScHon (Chem.) 2012 | UoM PhD (Chem.) 2013-2015

Cthulhu

  • Guest
Re: Problem with using LaTeX for doing professional documents
« Reply #7 on: February 08, 2010, 03:17:22 pm »
0
The here sucks! amsmath ftw

Mao

  • CH41RMN
  • Honorary Moderator
  • Great Wonder of ATAR Notes
  • *******
  • Posts: 9181
  • Respect: +390
  • School: Kambrya College
  • School Grad Year: 2008
Re: Problem with using LaTeX for doing professional documents
« Reply #8 on: February 09, 2010, 12:16:39 am »
0
I think the here has amsmath? [Otherwise aligning equations wouldn't work.]
Editor for ATARNotes Chemistry study guides.

VCE 2008 | Monash BSc (Chem., Appl. Math.) 2009-2011 | UoM BScHon (Chem.) 2012 | UoM PhD (Chem.) 2013-2015

enwiabe

  • Putin
  • ATAR Notes Legend
  • *******
  • Posts: 4358
  • Respect: +529
Re: Problem with using LaTeX for doing professional documents
« Reply #9 on: February 09, 2010, 12:19:34 am »
0
Hi. Download Lyx. http://www.lyx.org

It's like the LaTeX version of "Word", except instead of being WYSIWYG (what you see is what you get) as is with word, it's WYSIWYM (what you see is what you mean).

It uses templates, and I've found it extremely easy to use to type up documents of any structure and length.

humph

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1437
  • Respect: +16
Re: Problem with using LaTeX for doing professional documents
« Reply #10 on: February 09, 2010, 12:17:40 pm »
0
Ugh but Lyx documents are so much uglier than normal TeX :(

I use TeXnicCenter :) Though the computers at ANU only have WinEdt installed, which is annoying.
Anyway, check this out for comparisons:
http://en.wikipedia.org/wiki/Comparison_of_TeX_editors
VCE 2006
PhB (Hons) (Sc), ANU, 2007-2010
MPhil, ANU, 2011-2012
PhD, Princeton, 2012-2017
Research Associate, University College London, 2017-2020
Assistant Professor, University of Virginia, 2020-

Feel free to ask me about (advanced) mathematics.

enwiabe

  • Putin
  • ATAR Notes Legend
  • *******
  • Posts: 4358
  • Respect: +529
Re: Problem with using LaTeX for doing professional documents
« Reply #11 on: February 09, 2010, 12:40:01 pm »
0
LyX documents are the same as TeX :-/

There's literally no difference, all it does is shortcut the code so you're not constantly having to compile to make sure you didn't leave off a curly brace somewhere.

humph

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1437
  • Respect: +16
Re: Problem with using LaTeX for doing professional documents
« Reply #12 on: February 09, 2010, 12:58:36 pm »
0
Hmmmm well maybe it's just my friend's computer then - he uses Lyx on his Mac and for some reason it looks horrid.
VCE 2006
PhB (Hons) (Sc), ANU, 2007-2010
MPhil, ANU, 2011-2012
PhD, Princeton, 2012-2017
Research Associate, University College London, 2017-2020
Assistant Professor, University of Virginia, 2020-

Feel free to ask me about (advanced) mathematics.

enwiabe

  • Putin
  • ATAR Notes Legend
  • *******
  • Posts: 4358
  • Respect: +529
Re: Problem with using LaTeX for doing professional documents
« Reply #13 on: February 09, 2010, 01:25:36 pm »
0
http://www.sendspace.com/file/srf4d9

I wrote that entirely in LyX
« Last Edit: February 09, 2010, 01:27:19 pm by enwiabe »

Mao

  • CH41RMN
  • Honorary Moderator
  • Great Wonder of ATAR Notes
  • *******
  • Posts: 9181
  • Respect: +390
  • School: Kambrya College
  • School Grad Year: 2008
Re: Problem with using LaTeX for doing professional documents
« Reply #14 on: February 10, 2010, 11:26:16 pm »
0
I use TeXnicCenter :) Though the computers at ANU only have WinEdt installed, which is annoying.
Anyway, check this out for comparisons:
http://en.wikipedia.org/wiki/Comparison_of_TeX_editors

Same here. But for the reason that I don't want to graphically render everything as I'm typing. I like controlling my equations with text-based syntax.
Editor for ATARNotes Chemistry study guides.

VCE 2008 | Monash BSc (Chem., Appl. Math.) 2009-2011 | UoM BScHon (Chem.) 2012 | UoM PhD (Chem.) 2013-2015