LaTeX Creating a LaTeX Project: What You Need to Know

  • Thread starter Thread starter cdhotfire
  • Start date Start date
  • Tags Tags
    Latex Project
AI Thread Summary
To create a LaTeX project, you need a TeX distribution like MiKTeX for Windows, which allows you to install necessary LaTeX add-ons. A recommended interface for writing LaTeX documents is TeXniCenter, and users are encouraged to read introductory materials on LaTeX syntax. For integrating LaTeX with Microsoft Office, MathType is a commercial tool that enhances the equation editor and can export to TeX. To create an index in LaTeX, include the makeidx package and follow a specific processing sequence, while issues with the makeidx package can often be resolved by omitting it if conflicts arise. For graphics, ensure you convert EPS files to PDF if using pdflatex, as it does not support EPS directly.
cdhotfire
Messages
193
Reaction score
0
i couldn't find a place to post this question but this seems to work, so is there a way to make latex outside this forum, like if want to do a project?
if so how.
 
Physics news on Phys.org
First you'll need a TeX distribution. If you're using Windows (I assume you are), MiKTeX is what you want:

http://www.miktex.org

There's a simple executable to download, and it'll let you install all the LaTeX add-ons. Be sure to read any documentation on their site.

Next, you'll need a decent interface to write LaTeX documents. I recommend TeXniCenter:

http://www.toolscenter.org/front_content.php

I also highly recommend reading thoroughly through this document. It's not very long and will introduce you to the subtle differences between writing LaTeX math equations here, writing LaTeX documents in general, and a comprehensive syntax listing:

www.ctan.org/tex-archive/info/lshort/english/lshort.pdf
 
Last edited:
WOW!, thank you very much, I really appreciate your help, there was another thread on this forum, but I didnt understand it :rolleyes: . Now I do, thanks. :smile:
 
Is there any kind of latex plug ins for MS Office programs? The built in equation editor really sucks and I want to use Latex in Word or Excell is possible.
 
DaVinci said:
Is there any kind of latex plug ins for MS Office programs? The built in equation editor really sucks and I want to use Latex in Word or Excell is possible.

There is actually a commercial application called 'MathType,' and it'll export formulas written in Microsoft Word to TeX (not sure about LaTeX, should still work, however). MathType is essentially a replacement for the builtin Microsoft Word equation editor, with much more functionality. I have a colleague that uses it on a daily basis, and he is satisfied with it.

http://www.adeptscience.co.uk/products/mathsim/mathtype/
 
How to make Index in LaTeX?

Please, can anyone tell me how can I use makeindex in LaTeX? I've tried the command \makeindex but nothing happens:devil:
 
You need to do several things:
  • In your preamble, include the makeidx package and invoke the makeindex macro:
    \usepackage{makeidx}
    \makeindex
  • Invoke the index macro in the body of your document to add items to the index.
    \index{word}
  • Invoke the printindex macro at the end of your document (i.e., where you want the index to appear):
    \printindex
  • Process your document using LaTeX. Note well: This first pass will not generate an index. This collects the \indexed items.
  • Process your document again using LaTeX. Note well: This second pass still does not generate an index. It will, however, generate a .idx file based on the items from the first pass.
  • Process your document using the MakeIndex program. This compiles the .idx into a .ind file.
  • Process your document one more time using LaTeX, and possibly,
  • Process your document one last time using LaTeX (the pagination might not be correct).

It helps to use a makefile to do the processing correctly.
 
Last edited:
\makeidx package giving me errors

Thank you for your reply, but the problem is that I'm getting errors when I use the makeidx package as you instructed. I'm getting an error in a file called makeidx.sty with the error: \newcommand*\see[2]{\emph{} #1} Can you please help me?? Thank you
 
Something else (are you using one of the AMS document classes?) is defining \see. Try omitting the \usepackage{makeidx}.
 
  • #10
Finally managed to do it!`

Thanks for your help. I omitted \usepackage{makeidx} and it worked. Thanks so much. Another thing, I need to input some graphs into my pdf file, what program do you suggest? I need graphs like y=sin x and the lot:rolleyes:
 
  • #11
Moreover, how can I input a glossary of terms?
 
  • #12
Hello, who can explain to me how to make a mathematica file saved as an *.eps? thank you
 
  • #13
Can anyone explain to me why I'm getting an error which states that: I could not locate the file with any of these extensions: .png,.pdf,.jpg,.mps,.tif.

I am saving my file as eps, but LaTeX cannot find it. Please help me.
 
  • #14
You are using pdflatex. The pdf format doesn't support encapsulated postscript. Use eps2pdf to convert your encapsulated postcript to pdf.
 
  • #15
How can I do that? I mean use eps2pdft to convert eps to pdf?
 
  • #16
Can anyone explain to me why I'm getting an error which states that: I could not locate the file with any of these extensions: .png,.pdf,.jpg,.mps,.tif.

I am saving my file as eps, but LaTeX cannot find it. Please help me
 

Similar threads

Replies
4
Views
2K
Replies
9
Views
2K
Replies
3
Views
3K
Replies
12
Views
3K
Replies
5
Views
3K
Replies
2
Views
3K
Replies
1
Views
1K
Back
Top