Creating a LaTeX Project: What You Need to Know

  • Context: LaTeX 
  • Thread starter Thread starter cdhotfire
  • Start date Start date
  • Tags Tags
    Latex Project
Click For Summary

Discussion Overview

The discussion revolves around creating LaTeX projects, including setting up a TeX distribution, using LaTeX with MS Office, and addressing specific LaTeX commands and errors. Participants explore various tools, plugins, and commands related to LaTeX document preparation.

Discussion Character

  • Technical explanation
  • Homework-related
  • Debate/contested

Main Points Raised

  • Some participants suggest installing a TeX distribution like MiKTeX for Windows to work on LaTeX projects.
  • Recommendations for using TeXniCenter as a writing interface for LaTeX documents are provided.
  • There is a discussion about the limitations of the built-in equation editor in MS Office, with some participants asking for LaTeX plugins.
  • MathType is mentioned as a commercial application that can export Microsoft Word equations to TeX, though its compatibility with LaTeX is uncertain.
  • One participant inquires about how to create an index in LaTeX using the makeidx package, and another provides a detailed step-by-step process.
  • Errors related to the makeidx package are reported by participants, with suggestions to omit the package if conflicts arise.
  • There are questions about including graphs in LaTeX documents, with a request for recommendations on programs to generate graphs.
  • Participants discuss issues with saving files in different formats, particularly concerning the use of .eps files and the pdflatex command.

Areas of Agreement / Disagreement

Participants express a range of views on the best tools and methods for using LaTeX, with some solutions being proposed while others encounter issues or errors. There is no consensus on the best approach to certain problems, such as the use of the makeidx package or graph inclusion.

Contextual Notes

Some participants face errors related to specific LaTeX packages and commands, indicating potential limitations in their setups or conflicts with other packages. The discussion includes unresolved issues regarding file format compatibility and the proper use of certain LaTeX commands.

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 1 ·
Replies
1
Views
4K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 9 ·
Replies
9
Views
3K
  • · Replies 3 ·
Replies
3
Views
4K
  • · Replies 12 ·
Replies
12
Views
4K
  • · Replies 5 ·
Replies
5
Views
4K
  • · Replies 2 ·
Replies
2
Views
4K
  • · Replies 6 ·
Replies
6
Views
4K
  • · Replies 36 ·
2
Replies
36
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K