I've tried to make the citation and bibliography commands detect where your installation is, so that you shouldn't have to set any environment variables for those any more. So once again, those brave among you and with no paper deadlines, please remove any special PATH specifications that you had made just for LaTeX TM (likely based on previous recommendations by me), and let me know if the commands still work for you, and if not then also where, to the best of your knowledge, your tex binaries are. (Probably doing: "which kpsewhich" from the terminal should give that to you.
Thank you all again for your patience in this transitive period. Haris
Hi again!
My TeX installation is at /usr/local/teTeX/bin/i386-apple-darwin-current/
now I get
\cite{Could not find file } \ref{Could not find file }
Helge
Charilaos Skiadas schrieb:
I've tried to make the citation and bibliography commands detect where your installation is, so that you shouldn't have to set any environment variables for those any more. So once again, those brave among you and with no paper deadlines, please remove any special PATH specifications that you had made just for LaTeX TM (likely based on previous recommendations by me), and let me know if the commands still work for you, and if not then also where, to the best of your knowledge, your tex binaries are. (Probably doing: "which kpsewhich" from the terminal should give that to you.
Thank you all again for your patience in this transitive period. Haris
Hi!
Latex Document Outline gives
(Errno::ENOENT) from /tmp/temp_textmate.ZrANDE:28:in `outline_points' from /tmp/temp_textmate.ZrANDE:36:in `outline_points' from /tmp/temp_textmate.ZrANDE:34:in `each_with_index' from /tmp/temp_textmate.ZrANDE:34:in `each' from /tmp/temp_textmate.ZrANDE:34:in `each_with_index' from /tmp/temp_textmate.ZrANDE:34:in `outline_points' from /tmp/temp_textmate.ZrANDE:36:in `outline_points' from /tmp/temp_textmate.ZrANDE:34:in `each_with_index' from /tmp/temp_textmate.ZrANDE:34:in `each' from /tmp/temp_textmate.ZrANDE:34:in `each_with_index' from /tmp/temp_textmate.ZrANDE:34:in `outline_points' from /tmp/temp_textmate.ZrANDE:36:in `outline_points' from /tmp/temp_textmate.ZrANDE:34:in `each_with_index' from /tmp/temp_textmate.ZrANDE:34:in `each' from /tmp/temp_textmate.ZrANDE:34:in `each_with_index' from /tmp/temp_textmate.ZrANDE:34:in `outline_points' from /tmp/temp_textmate.ZrANDE:43
LaTeX Document Outline LaTeX
Helge Hartmann schrieb:
Hi again!
My TeX installation is at /usr/local/teTeX/bin/i386-apple-darwin-current/
now I get
\cite{Could not find file } \ref{Could not find file }
Helge
Charilaos Skiadas schrieb:
I've tried to make the citation and bibliography commands detect where your installation is, so that you shouldn't have to set any environment variables for those any more. So once again, those brave among you and with no paper deadlines, please remove any special PATH specifications that you had made just for LaTeX TM (likely based on previous recommendations by me), and let me know if the commands still work for you, and if not then also where, to the best of your knowledge, your tex binaries are. (Probably doing: "which kpsewhich" from the terminal should give that to you.
Thank you all again for your patience in this transitive period. Haris
It's really strange. for my one project I posted, I get the same error. Even when I set the PATH variable in TextMate it is not working.
In my bigger project it is working, although there are no other preferences set. But the command "Label based on current word" gives a list with duplicated entries. For the command "Citation based on current word" I get duplicated entries, if the TM_LATEX_BIB variable is set.
Charilaos Skiadas schrieb:
On Dec 23, 2006, at 11:47 AM, Helge Hartmann wrote:
Hi again!
My TeX installation is at /usr/local/teTeX/bin/i386-apple-darwin-current/
now I get
\cite{Could not find file } \ref{Could not find file }
Do you still have the same problem in the latest version?
Helge
Haris
On Dec 24, 2006, at 12:36 PM, Helge Hartmann wrote:
In my bigger project it is working, although there are no other preferences set. But the command "Label based on current word" gives a list with duplicated entries.
Hm, that is a bit surprising I must say. Do you by any chance have any \include lines that have been commented out, but if they were not then the same file would be included twice?
For the command "Citation based on current word" I get duplicated entries, if the TM_LATEX_BIB variable is set.
Yes this is a problem I need to fix, somehow. When TM_LATEX_BIB is set, and it is also referred to via a \bibliography command, it will be loaded twice.
Haris
On Dec 24, 2006, at 12:36 PM, Helge Hartmann wrote:
\cite{Could not find file } \ref{Could not find file }
Ok, I think I spotted the source of these problems, in that you had commented out some \include lines, perhaps for files that were no longer there? The parser was trying to scan those as well. I changed it to exclude all commented \include lines.
Haris
Yes, that's right. I had a line
%\input{example2.tex}
Now it's working. I will try my other examples after christmas.
Charilaos Skiadas schrieb:
On Dec 24, 2006, at 12:36 PM, Helge Hartmann wrote:
\cite{Could not find file } \ref{Could not find file }
Ok, I think I spotted the source of these problems, in that you had commented out some \include lines, perhaps for files that were no longer there? The parser was trying to scan those as well. I changed it to exclude all commented \include lines.
Haris
Charilaos Skiadas <skiadas@...> writes:
I've tried to make the citation and bibliography commands detect where your installation is, so that you shouldn't have to set any environment variables for those any more. So once again, those brave among you and with no paper deadlines, please remove any special PATH specifications that you had made just for LaTeX TM (likely based on previous recommendations by me), and let me know if the commands still work for you, and if not then also where, to the best of your knowledge, your tex binaries are. (Probably doing: "which kpsewhich" from the terminal should give that to you.
Thank you all again for your patience in this transitive period. Haris
Hello,
And thanks for your excellent work!
Just a remark: I had some problems with the citation/bibliography command. I took me a while to figure out why. Maybe this could help other people.
The problem came from the XFig figure that were included in my LaTeX file: I usually ask XFig to export PDF files, in such a way that I just have to insert the command "\input{my_xfig_figure.pdftex_t}" into my main LaTeX file. But when I have such inputs in my file, the citation/bibliography command does no longer work. It suffices to transform the .pdftex_t into .tex for all included figures to make it work again.
Olivier.
Hi Olivier, On Mar 31, 2007, at 5:30 AM, Olivier Vert wrote:
Hello,
And thanks for your excellent work!
Just a remark: I had some problems with the citation/bibliography command. I took me a while to figure out why. Maybe this could help other people.
The problem came from the XFig figure that were included in my LaTeX file: I usually ask XFig to export PDF files, in such a way that I just have to insert the command "\input{my_xfig_figure.pdftex_t}" into my main LaTeX file. But when I have such inputs in my file, the citation/bibliography command does no longer work. It suffices to transform the .pdftex_t into .tex for all included figures to make it work again.
Could you send me an example demonstrating the problem?
Olivier.
Haris Skiadas Department of Mathematics and Computer Science Hanover College