Others ⇒ Texlipse can't find Bibtex
Texlipse can't find Bibtex
I use Texlipse for Eclipse, I've heard it is a good plugin for Eclipse User. After I installed the Texlipse, I saw that Texlipse can't find bib, bst, and tex paths, so it can't compile the most Texfiles with Eclipse...
I'm sure that I have installed Texlive, and If I tip "pdflatex xxx.tex" in console, it works.(I use Ubungtu)
Can you give me some advice? Thank you very much!
Edit by localghost: Preferably no external links (see Board Rules). Attachments go onto the forum server where possible.
- Attachments
-
- texlipse.png (44 KiB) Viewed 13846 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Texlipse can't find Bibtex
Code: Select all
which bibtex
But the internal description makes it sound as if it can't find .bib (bibliography) and .bst (bibliography style) files (although the screenshot seems to suggest otherwise!). (Strictly speaking, it's not TeXlipse that needs to know where those are, but BibTeX itself.) What does:
Code: Select all
kpsepath bib
Do you know which it is? What actually happens when you try to run BibTeX on a file through TeXlipse. Do you get any error messages, and if so, what do they say?
Texlipse can't find Bibtex
Thank you very much for the help. I tip the commands and get the result: -----------------Here is my problem------------------------
I simply write my Latex Text and it will be automatic builded by texplise. Then I get the Error:
The BibTex file newlit.bib not found.
So I can't build the Tex File with Texlipse.
I think, my Tex file is correct, because If I use the console to build the Tex File, it works.(I just tip "pdflatex xxx.tex" in console.)
Here is the Screenshot:
Edit by localghost: Preferably no external links (see Board Rules). Attachments go onto the forum server where possible.
Texlipse can't find Bibtex
I don't think the problem is TeXlipse. Running pdflatex from the command line proves nothing. It's not pdflatex that is looking for the bib file; it's bibtex. When you process a LaTeX file---example.tex, say---that uses BibTeX from the command line, you would actually have to run the following sequence of commands.
Code: Select all
pdflatex example
bibtex example
pdflatex example
pdflatex example
Code: Select all
pdflatex example.tex
bibtex example.aux
pdflatex example.tex
pdflatex example.tex
TeXlipse is trying to make your life easier by doing all four of these commands at once with a single click of the mouse (or quick-key, or menu option, or whatever it is). It does the first pdflatex step, just like you are doing from the command line. At that point, it hasn't gotten to the problem yet. It's when it tries to move to the next step (the BibTeX step) that it's encountering this error.
Or that's my guess anyway.

Re: Texlipse can't find Bibtex
You are right absolutly!

If I run "bibtex xxx.aux" in Console, I get the same Error as from the Texlipse.
I have never used Bibtex, I don't know what's that. I used the Example from my Professor, so... I have stuck in the problem for a long time and so confused...

Under your direction, I created a empty File named "newlit.bib", then the problem is gone!

Now, I know Bibtex is a good tool for Referenz, and I learnd a new secret from Texlipse...there are actrually four commands hidding in "run"°°°

Thank you very much for the great help!!!
Texlipse can't find Bibtex
Code: Select all
\bibliography{newlit}
Code: Select all
\bibliographystyle{ <something> }
Then it won't even look for a .bib file.
Re: Texlipse can't find Bibtex
May be I cuted too much code...,so the computer was confused... I was also confused...
