[AUCTeX-diffs] [自動応答]Yahoo! オークションカスタマーサービスより

2007-07-05 Thread auction-reminder
**
[EMAIL PROTECTED]
**

いつもYahoo!オークションをご利用いただきありがとうございます。
こちらは、Yahoo!オークションの送信専用メールアドレスとなりますので、
お問い合わせいただきましてもお答えすることができません。

お手数をおかけいたしますが、Yahoo!オークションについてのご質問は、
以下の「お問い合わせフォーム」を利用してお問い合わせください。

■パソコンからのお問い合わせ
http://ms.yahoo.co.jp/bin/auction-exa/feedback

なお、ウォッチリストリマインダーの停止をご希望の場合には、
以下のヘルプページをご参照ください。

■通知先や通知の受け取り設定を変更するには
http://help.yahoo.co.jp/help/jp/auct/tool/tool-42.html

=
Yahoo!オークション
http://auctions.yahoo.co.jp/jp/
Yahoo!オークションヘルプ
http://help.yahoo.co.jp/help/jp/auct/


___
auctex-diffs mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/auctex-diffs


RE: [AUCTeX] AucTeX preview error: DviPS sentinel: Spawning child process: invalid argument

2007-07-05 Thread mirko.vukovic
 -Original Message-
 From: David Kastrup [mailto:[EMAIL PROTECTED] 
 Sent: Monday, July 02, 2007 5:05 PM
 To: TTCA Vukovic, Mirko
 Cc: auctex@gnu.org
 Subject: Re: [AUCTeX] AucTeX preview error: DviPS sentinel: 
 Spawning child process: invalid argument
 
 [EMAIL PROTECTED] writes:
 
  Package: 11.84
  ==
  (setq
 
 [...]
 
   preview-gs-command /gswin32c.exe
 
 Could you check whether this is set in your .emacs file (in 
 which case it is your own fault) or in preview-latex.el?  If 
 it is the latter, you might want to give us the contents of 
 preview/config.log to figure out what went wrong.
 
 --
 David Kastrup, Kriemhildstr. 15, 44793 Bochum
 
I changed the value of preview-gs-command to gswin32c.exe via the customize 
feature, and preview now works.  Beautiful!



___
auctex mailing list
auctex@gnu.org
http://lists.gnu.org/mailman/listinfo/auctex


Re: [AUCTeX] C-h m does not display documentation about the mode

2007-07-05 Thread Ralf Angeli
Please keep the list copied.

* Damien Cassou (2007-07-05) writes:

 It does not work anymore and I don't remember having changed anything.

What does not work anymore?

 The AUCTeX Ubuntu package is NOT installed. I think it's only the
 documentation which has a problem because useful commands like C-c C-r
 and C-c C-s work as before.

 Can you help me please?

If I were able to decipher your message I might have a chance.

-- 
Ralf


___
auctex mailing list
auctex@gnu.org
http://lists.gnu.org/mailman/listinfo/auctex


Re: [AUCTeX] debugging of multifile documents with TeX-next-error (2)

2007-07-05 Thread Ralf Angeli
* Stefan Vollmar (2007-07-05) writes:

 Dear Ralf,

 Am 04.07.2007 um 23:12 schrieb Ralf Angeli:

 Judging by the general quality (again: I have only scratched the
 surface of all the beautiful and powerful features) of a reportedly
 mature tool like AUCTeX this must be the case - because otherwise
 people would have that kind of problem all the time.

 It's likely more a case of people not using the feature.

 This touches the last question of my previous posting: so  
 (experienced?) users of AUCTeX simply have other (better?) ways of  
 debugging their TeX code than using TeX-next-error?

Or they do not read the documentation and are not aware of the feature.

-- 
Ralf


___
auctex mailing list
auctex@gnu.org
http://lists.gnu.org/mailman/listinfo/auctex


Re: [AUCTeX] RefTeX referencing a custom environment

2007-07-05 Thread Ralf Angeli
* Sebastian P. Luque (2007-07-05) writes:

 I would like to have 'C-c r' (reftex-reference) recognize the label for a
 custom table environment (of course with threeparttable package loaded):

 \newenvironment{msportraittable}[4]{%

(info (reftex)Figure Wrapper)

-- 
Ralf


___
auctex mailing list
auctex@gnu.org
http://lists.gnu.org/mailman/listinfo/auctex


[AUCTeX] font lock user-defined commands

2007-07-05 Thread Hans Halvorson
Regarding font-locking of user-defined commands, I have tried to
follow the instructions in the manual, and I am still unable to get it
to work.  

As a test, I am trying to get \defin to highlight.  I have tried
both of the following in the custom variables in my .emacs:

(font-latex-user-keyword-classes (quote ((defin (defin) (:foreground 
cyan) (command 1)

(font-latex-match-bold-command-keywords '(defin))

Neither of these is making any difference -- \defin and
\defin{foobar} are still showing up in light gray.  What am I doing
wrong here?  (I am running AucTeX 11.84 on Emacs CVS 22.1.50.)

Thanks,
Hans


___
auctex mailing list
auctex@gnu.org
http://lists.gnu.org/mailman/listinfo/auctex


[AUCTeX] Re: debugging of multifile documents with TeX-next-error (2)

2007-07-05 Thread Ralf Angeli
* David Kastrup (2007-07-03) writes:

 Ralf Angeli [EMAIL PROTECTED] writes:

 Hm, but pasting together random stuff will not be trivial.

 Would be the job of the filter routine.

Doing a simple proof-of-concept implementation (without safety checks
and optimization) turned out to be rather easy:

--- tex-buf.el  29 Apr 2007 16:39:36 +0200  1.260
+++ tex-buf.el  05 Jul 2007 22:59:20 +0200  
@@ -1051,6 +1051,10 @@
(goto-char pt)
(insert-before-markers string)
(set-marker (process-mark process) (point))
+   (while ( (point) pt)
+ (end-of-line 0)
+ (when (= (current-column) 79) (delete-char 1)))
+   (goto-char (marker-position (process-mark process)))
(while (and pt
(skip-chars-backward ^] pt)
( (point) pt))


 Given TeX's byte-centricity,
 it would have to be done even before decoding the byte stream into
 characters.

Is the string passed to the filter function still a byte stream?

-- 
Ralf



___
auctex mailing list
auctex@gnu.org
http://lists.gnu.org/mailman/listinfo/auctex


Re: [AUCTeX] font-latex-quotes

2007-07-05 Thread David Kastrup
Ralf Angeli [EMAIL PROTECTED] writes:

 * Radu Grigore (2007-07-05) writes:

 Could you please add the setting nil as an option?

 This was already implemented some time ago and is available via CVS.

Maybe it is time to release again.  I don't remember what the holdup
for 11.85 (?) was.  Anybody think of a showstopper?

-- 
David Kastrup, Kriemhildstr. 15, 44793 Bochum


___
auctex mailing list
auctex@gnu.org
http://lists.gnu.org/mailman/listinfo/auctex


[AUCTeX] Re: RefTeX referencing a custom environment

2007-07-05 Thread Sebastian P . Luque
On Thu, 05 Jul 2007 22:35:15 +0200,
Ralf Angeli [EMAIL PROTECTED] wrote:

[...]

 (info (reftex)Figure Wrapper)

Thanks, I've read this before but didn't remember its relevance here.

I'm having some trouble getting it right.  Here's a minimal example:

--cut here---start-
\documentclass[12pt]{article} %
\usepackage{booktabs,relsize,threeparttable}

% Custom table environment
\newenvironment{msportraittable}[4]{%
  \begin{table}[p]%
\centering
\begin{small}%
  \begin{threeparttable}%
\caption{#1} \label{#2}
#3
\begin{tablenotes}%
  \smaller{#4}}{%
\end{tablenotes}%
  \end{threeparttable}%
\end{small}%
  \end{table}}

\begin{document}

Table.

\begin{msportraittable} %
  {Dummy table.} {tab:1}{%
\begin{tabular}[p]{}
  \toprule
  A  B  C  D \\
  \midrule
  X\tnote{a}  0  1  2 \\
   0  1  2 \\
  Y\tnote{b}  0  1  2 \\
   0  1  2 \\
  \bottomrule
\end{tabular}}{%
  \item[a] Note a.
  \item[b] Note b.}
\end{msportraittable}

\end{document}
--cut here---end---

so I set the alist like this:

(setq reftex-label-alist
  '((\\msportraittable{}{*}{}{} ?t nil nil 1)))

but doing 'C-c r' with point just after Table above brings up a
reference for #2, which comes from the environment definition in the
preamble.  I don't understand from the docstring what options I have for
the TYPE-KEY element of the alist, which might be what is wrong in my
setting above.  Any further suggestions welcome.


-- 
Seb



___
auctex mailing list
auctex@gnu.org
http://lists.gnu.org/mailman/listinfo/auctex


Re: [AUCTeX] Recognition of .bib files

2007-07-05 Thread David Scott

On Thu, 5 Jul 2007, Ralf Angeli wrote:


* David Scott (2007-07-05) writes:


I am running XEmacs 21.4.19, with AUCTeX 1.47 and RefTeX 1.34 on Windows
XP.

I can't get XEmacs to recognise a .bib file.


BibTeX mode is not part of AUCTeX or RefTeX.  And it would be easier to
identify the cause of the problem if you described what actually
happens, e.g. which mode the BibTeX file is opened with.

--
Ralf


The mode is showing as Fundamental

David Scott
_
David Scott Department of Statistics, Tamaki Campus
The University of Auckland, PB 92019
Auckland 1142,NEW ZEALAND
Phone: +64 9 373 7599 ext 86830 Fax: +64 9 373 7000
Email:  [EMAIL PROTECTED]

Graduate Officer, Department of Statistics
Director of Consulting, Department of Statistics



___
auctex mailing list
auctex@gnu.org
http://lists.gnu.org/mailman/listinfo/auctex


Re: [AUCTeX] Recognition of .bib files

2007-07-05 Thread Ralf Angeli
* David Scott (2007-07-06) writes:

 On Thu, 5 Jul 2007, Ralf Angeli wrote:

 BibTeX mode is not part of AUCTeX or RefTeX.  And it would be easier to
 identify the cause of the problem if you described what actually
 happens, e.g. which mode the BibTeX file is opened with.

 The mode is showing as Fundamental

What's the output of `M-x locate-library RET bibtex RET'?

-- 
Ralf


___
auctex mailing list
auctex@gnu.org
http://lists.gnu.org/mailman/listinfo/auctex


Re: [AUCTeX] font-latex-quotes

2007-07-05 Thread Ralf Angeli
* David Kastrup (2007-07-05) writes:

 Maybe it is time to release again.  I don't remember what the holdup
 for 11.85 (?) was.  Anybody think of a showstopper?

Font locking.  If we stick with the current implementation of
font-latex.el, the style files would have to be adapted.  Another option
would be to back out the changes I made since 11.84.  Thereby the
changes could be put into another file to be loaded as an alternative
for font-latex.

-- 
Ralf


___
auctex mailing list
auctex@gnu.org
http://lists.gnu.org/mailman/listinfo/auctex