PDA

View Full Version : converting text...


3.14159265358979
Jun20-04, 08:26 PM
how do you convert a text file into a LaTeX file? thank you soooo much...

chroot
Jun20-04, 09:01 PM
I'm not exactly sure what you're asking. Are you asking how do I compose a paper or article in LaTeX?

- Warren

3.14159265358979
Jun20-04, 09:07 PM
i'm teaching myself first year calculus and i wanna write the notes on the computer because of the convience factor....so, i typed out several problems with solutions..

example:
\[ \mathop {\lim }\limits_{x \to 2} {{[(x^2 + 1)(x^2 + 4x)]}} \]
\[ = \mathop {\lim }\limits_{x \to 2} {{(x^2 + 1)}} \mathop {\lim }\limits_{x \to 2} {{(x^2 + 4x)}} \]
\[ = {{((2)^2 + 1)}}{{((2)^2 + 4(2))}} \]
\[ = 60 \]

...now i wanna convert what i have here so i can put it onto an acrobat file...so i have to convert this to LaTex (which i don't know how to do) and then convert that onto acrobat (which i do know how to do...) thanks for your help..

chroot
Jun20-04, 09:21 PM
Well, download and install a package called MikTeX, if you're on Windows -- http://www.miktex.org/

Then, design a LaTeX document. Use a text editor. Put the following "preamble" in the file:

\documentclass{article}
\begin{document}

...your stuff goes in here...

\end{document}


Open a command prompt and run pdflatex myfile.tex and you'll get myfile.pdf, all ready to go.

- Warren

3.14159265358979
Jun20-04, 09:52 PM
ok, i downloaded and installed MikTeX 2.4 and opened it up and it gave me a huge list of things (fonts, programs, ect...) now what? also, you said "use a text editor"....what's that? i'm pretty slow when it comes to computers (as you can surely tell)...thanks again..

chroot
Jun20-04, 09:54 PM
Use any program you'd like that can save plain text files. Notepad is one such editor that comes with Windows, and you can find it under Start -> Programs -> Accessories. If you'd like a more sophisticated editor, I personally prefer a program called TextPad (http://www.textpad.com/), though there are many to choose from.

- Warren

3.14159265358979
Jun20-04, 10:07 PM
i must be doing something wrong because it's still not working..

3.14159265358979
Jun20-04, 10:13 PM
i have all my work in a 'WordPad' document with the MiKTeX program and the 'click to convert' program running...now what?

chroot
Jun20-04, 10:39 PM
Make sure you tell WordPad to save as plain text. By default, WordPad saves formatting information similar to MS Word.

I don't know what the "click to convert" program is. Please just do as I suggested. Open a DOS window, change to your directory, and type pdflatex myfile.tex.

- Warren

Nec
Jun20-04, 11:18 PM
PI, why not use notepad to create the file and then save it with extention of .tex ?
Then run the command line type down pdflatex myfile.tex-as said above to change it into a pdf file...

3.14159265358979
Jun20-04, 11:19 PM
chroot...you are brilliant...thank you soooo much!! it took me a while...but i finally got it...your patience was and is greatly appreciated...*hand shake and a hug*

Nec
Jun20-04, 11:21 PM
Change the file extention-- it might be YOURFILE.rft or YOURFILE.doc--into YOURFILE.tex

Nec
Jun20-04, 11:22 PM
chroot...you are brilliant...thank you soooo much!! it took me a while...but i finally got it...your patience was and is greatly appreciated...*hand shake and a hug*
Hey, I helped you also!

chroot
Jun20-04, 11:24 PM
chroot...you are brilliant...thank you soooo much!! it took me a while...but i finally got it...your patience was and is greatly appreciated...*hand shake and a hug*
Anytime! LaTeX really is a beautiful piece of work, but it has a pretty steep learning curve. If you have any questions about it, please let me know. :smile:

- Warren

3.14159265358979
Jun20-04, 11:27 PM
yeah Nec, you helped too...thanks a bunch..

chroot
Jun20-04, 11:27 PM
Change the file extention-- it might be YOURFILE.rft or YOURFILE.doc--into YOURFILE.tex
That, by itself, is not sufficient to make WordPad save as plain text. Honestly, 3.141.., I'd rather you use NotePad or a more sophisticated editor like TextPad.

- Warren