<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel about="http://blog.gmane.org/gmane.emacs.auctex.devel">
    <title>gmane.emacs.auctex.devel</title>
    <link>http://blog.gmane.org/gmane.emacs.auctex.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.auctex.devel/2314"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.auctex.devel/2311"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.auctex.devel/2310"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.auctex.devel/2302"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.auctex.devel/2298"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.auctex.devel/2297"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.auctex.devel/2291"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.auctex.devel/2289"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.auctex.devel/2286"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.auctex.devel/2285"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.auctex.devel/2279"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.auctex.devel/2278"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.auctex.devel/2277"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.auctex.devel/2276"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.auctex.devel/2272"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.auctex.devel/2268"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.auctex.devel/2256"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.auctex.devel/2247"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.auctex.devel/2242"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.auctex.devel/2241"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2314">
    <title>Wrong heading with outline-regexp</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2314</link>
    <description>Hi there,

Let's assume the following sentences is in the LaTeX source file:

"To use bibliography in your \LaTeX{} document, add the following at the
end but before \verb|\end{document}|:"

Now if you use outline mode, you can see the line with
\verb|\end{document}| also becomes a heading, which is undesired.

Best,
</description>
    <dc:creator>Leo</dc:creator>
    <dc:date>2008-11-27T21:45:55</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2311">
    <title>AUCTeX failed to detect SyncTeX</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2311</link>
    <description>The function `TeX-source-correlate-determine-method' does not detect
SyncTeX correctly because (string-match "^-synctex" help) always returns
nil.

An example output of `latex --help' with latest MikTeX is attached. 2.7.

Usage: latex [OPTION...] [COMMAND...]
  -alias=APP                      Pretend to be APP.  This affects both the
                                  format used and the search path.
  -aux-directory=DIR              Use DIR as the directory to write auxiliary
                                  files to.
  -buf-size=N                     Set buf_size to N.
  -c-style-errors                 Enable file:line:error style messages.
  -disable-8bit-chars             Make only 7-bit characters printable by.
  -disable-installer              Disable the package installer.  Missing
                                  files will not be installed.
  -disable-pipes                  Disable input (output) from (to) processes.
  -disable-write18                Disable the \write18{COMMAND} construct.
  -dont</description>
    <dc:creator>Leo</dc:creator>
    <dc:date>2008-11-21T02:19:39</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2310">
    <title>TeX-auto-global confusing doc string</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2310</link>
    <description>Hi there,

The value of TeX-auto-global was not set in any way during the
installation. After installation, I got a value that conflicts with its
documentation, which says that it must end with a directory separator.

(defcustom TeX-auto-global
    "/tmp/AUC/var/auctex"
  "*Directory containing automatically generated information.
Must end with a directory separator.

For storing automatic extracted information about the TeX macros
shared by all users of a site."
  :group 'TeX-file
  :type 'directory)

Maybe this is a bug?

Bye,
</description>
    <dc:creator>Leo</dc:creator>
    <dc:date>2008-11-18T01:01:12</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2302">
    <title>patch for preview-latex to reduce file clutter andnot overwrite document</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2302</link>
    <description>Hello,

First, I must thank the developers of preview-latex for this really
great package.

Included is a small patch for preview-latex that does three things:

1) Greatly reduces file clutter.  When generating previews, only two
    things are added to the main tex directory, a directory called
    MASTERTEXFILE.prv and a file called file _region_.tex.  All other
    files generated when creating previews, including previews of
    regions, are placed in the directory MASTERTEXFILE.prv.

2) Any typeset version of the document, such as a .pdf or .dvi file is
    left alone.  Previously they were deleted when generating a preview.

3) Auxilary files are created for previews since there is no longer
    any danger of clobbering anything.

Regards,

Tim

_______________________________________________
auctex-devel mailing list
auctex-devel&lt; at &gt;gnu.org
http://lists.gnu.org/mailman/listinfo/auctex-devel
</description>
    <dc:creator>Tim Toolan</dc:creator>
    <dc:date>2008-10-30T13:50:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2298">
    <title>preview of \ref commands in preview-latex</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2298</link>
    <description>
Hello,

It is possible to replace the \ref type commands in preview mode with  
the actual resolved labels as they appear in the preview images in a  
robust way by using the .aux information generated when generating the  
previews.  It also would allow adding new references using the number  
as it appears in the preview images.

I am interested in implementing this, but would like to know if people  
feel that this would be a useful addition, and if there are any  
suggestions about how people would like it to work before I start.

Regards,

Tim
</description>
    <dc:creator>Tim Toolan</dc:creator>
    <dc:date>2008-10-26T11:52:05</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2297">
    <title>Math macros and `TeX-insert-macro'</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2297</link>
    <description>Hi,

you've likely seen the (slightly obnoxious) message about math macros
not being available for completion with `TeX-insert-macro'.  I've been
wondering myself why this is the case.  Could somebody think of a reason
why we would not want them to be available for completion (in LaTeX
mode)?

I'd probably add them if nobody objects.  An alternative would be to
make them available through a separate function and key binding but I
don't think this is necessary.

</description>
    <dc:creator>Ralf Angeli</dc:creator>
    <dc:date>2008-10-25T16:33:34</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2291">
    <title>reftex patch to support resolved labels</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2291</link>
    <description>Hello,

Attached is a patch which adds support for resolved labels as they
appear the typeset document to the reftex-reference command.  It
places them where the counter used to be, and enables interactive
filtering based on these resolved labels.  It makes selecting labels
significantly more efficient when looking at typeset document.

To reference a label, run reftex-reference "C-c )", then enter the
number as it appears in the typeset document (ie. "1.2", "IV", "123").  If
there is more than one exact match, such as section 3, equation 3, and
figure 3, press tab to cycle between these choices.

When in this filtering mode, any special commands that are printable
characters (like "f" to toggle follow mode) must be preceded by a
"C-c" prefix.  At any time, press the delete key to toggle between
filter mode and the previous behavior for reftex-reference.

It is currently setup to disable prompting for reference macro type
and label type by default, and going directly to the filter selection
process.  To reve</description>
    <dc:creator>Tim Toolan</dc:creator>
    <dc:date>2008-10-21T19:42:38</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2289">
    <title>`TeX-insert-macro' inserts braces {}</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2289</link>
    <description>Hello

I have added some trivial macros via
 (TeX-add-symbols
 '("gll")
 '("glt")
 '("glend"))


However TeX-insert-macro inserts \gll{} unfortunately this results after
running latex is a slightly different output compared to 
\gll. So how can I achieve that TeX-insert-macro inserts \gll and not
\gll{}?


thanks

Uwe Brauer 
</description>
    <dc:creator>Uwe Brauer</dc:creator>
    <dc:date>2008-10-21T18:46:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2286">
    <title>LaTeX-fill-region and very long lines</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2286</link>
    <description>Hello

More and more people send me LaTeX files with very long lines, most
likely using the latest version of windedit, which does not use the
traditional line break after 70 chars, but uses something which
corresponds to long-line-mode in (X)emacs.

However I find this inconvenient, fortunately running LaTeX-fill-region
over most of the buffer, formats nicely and break most
longlines. However there are two type of long lines this function cannot
deal with, (mostly in math formula)

    -  one is one where there is really no space, so it is written like
       (f)_{a}+5=7 etc etc

    -  the other one is more subtle. The point is, when I jump to the
       end of that long line and type space (auto-fill-mode on) then the
       line is broken correctly, but LaTeX-fill-region does not break
       it.
Here is an example which I attach since long lines in email is a bad
idea
  \begin{eqnarray}
    g_{\alpha,\beta}-\eta_{\alpha,\beta} &amp;\in&amp; C^0\left([0,T],H_{s,\delta}\right)\cap
    C^1\left([0,T],H_{s-1,\delta</description>
    <dc:creator>Uwe Brauer</dc:creator>
    <dc:date>2008-10-14T15:41:06</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2285">
    <title>LaTeX-close-environment should ignore commented env</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2285</link>
    <description>
Hello consider the following example 
\begin{equation}
  \label{eq:1}
%\begin{cases}
% \int f dx = 0
% \end{cases}
LaTeX-close-environment 

Leads to 

\begin{equation}
  \label{eq:1}
%\begin{cases}
% \int f dx = 0
% \end{cases}
\end{document}


Instead of 
\begin{equation}
  \label{eq:1}
%\begin{cases}
% \int f dx = 0
% \end{cases}
\end{equation}

Could this behavior be changed. 

Thanks 

Uwe Brauer 
</description>
    <dc:creator>Uwe Brauer</dc:creator>
    <dc:date>2008-10-13T11:09:08</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2279">
    <title>unable to make latest CVS auctex (Mac OS X 10.5.5)</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2279</link>
    <description>_______________________________________________
auctex-devel mailing list
auctex-devel&lt; at &gt;gnu.org
http://lists.gnu.org/mailman/listinfo/auctex-devel
</description>
    <dc:creator>Artemio Gonzalez Lopez</dc:creator>
    <dc:date>2008-10-12T20:49:20</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2278">
    <title>RefTeX: Reference macro selection</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2278</link>
    <description>Hi,

the last major change in RefTeX (which hasn't been released yet) was
concerned with the possibility to select the macro for references.  So
once you type `C-c )', select a label type and are presented with the
label selection screen you can also switch between different reference
macros.  Typing &lt;s&gt; to toggle between macros for numbered references
(like \ref) and page references (like \pageref).  In each class there
can be multiple macros which can be cycled by typing &lt;v&gt; (forward) or
&lt;V&gt; (backward).

I thought a bit about this approach and think that the user interface
might be too convoluted.  First, the user is confronted with two
selection processes at once: the label and the reference macro.  Second,
the user has to keep in mind that there are two rings with macros.
Third, macros cannot be selected directly.  Fourth, the interface is not
consistent with the way citation macros are selected.

So perhaps a good idea to get rid of these problems would be to
present the reference macro selection in the</description>
    <dc:creator>Ralf Angeli</dc:creator>
    <dc:date>2008-10-12T13:35:12</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2277">
    <title>Switching TeX engines</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2277</link>
    <description>Okay, I got rid of the minor modes for XeTeX and Omega.  (To be precise,
the one for Omega is being kept for compatibility reasons for the time
being.)  Instead, there is a variable called `TeX-engine' which can be
used to select the engine.  Since we don't have a way to set stuff for a
document, it is global at the moment but can obviously also be set
file-locally.  The three engine options are currently `default', `xetex'
and `omega'.  One could probably add PDFTeX as well but I didn't see a
need for that because it is already handled by `TeX-DVI-via-PDFTeX'.
The engine can be set through the TeXing options menu or with `M-x
TeX-engine-set &lt;RET&gt;'.

Lemme know what you think.

</description>
    <dc:creator>Ralf Angeli</dc:creator>
    <dc:date>2008-10-05T18:43:48</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2276">
    <title>Deleting generated intermediate files in Emacs+AUCTeX</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2276</link>
    <description>Let us consider the following example, using current CVS Emacs 23.1 and
current AUCTeX CVS.

The directory Foo_dir contains Foo.tex (the main file of a document),
and the directory FrontBackmatter which contains TitlePage.tex:

$ ls -lrtR Foo_dir
...
-rw-r--r-- 1 ... 948 Sep 29 00:07 Foo.tex
drwxr-xr-x+ 2 ... 0 Sep 29 10:25  FrontBackmatter

Foo_dir/FrontBackmatter:
totale 9
...
-rw-r--r-- 1 ... 707 Sep 28 23:54 TitlePage.tex


Foo.tex includes TitlePage.tex with:

\include{FrontBackmatter/TitlePage}

In Foo.tex there is:

%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End:

while in TitlePage.tex:

%%% Local Variables:
%%% mode: latex
%%% TeX-master: "../Foo"
%%% End:

Building the document, it creates Foo.log and Foo.aux in Foo_dir, and
TitlePage.aux in FrontBackmatter.

When I decide to delete the generated intermediate files, it deletes
only those in Foo_dir not those in FrontBackmatter, even if I repeat the
operation (clik on toolbar delete icon) from the frame/window
containing TitlePage.te</description>
    <dc:creator>Angelo Graziosi</dc:creator>
    <dc:date>2008-09-29T14:58:33</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2272">
    <title>Development of refstyle.sty support</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2272</link>
    <description>Hey,
I've read some messages about implementing support for refstyle.sty (and
maybe other referencing packages). I widely use some things like
\figlabel{bla} and then \figref{bla} to reference it. Is there some
ongoing (and maybe already working) patches which I can try?
I'm not really experienced with Lisp and/or Emacs and/or AucTeX,
therefor I hope somebody can explain some steps in detail here.
Thanks in advance
Andreas
</description>
    <dc:creator>Andreas Neiser</dc:creator>
    <dc:date>2008-09-21T16:13:33</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2268">
    <title>the xemacs pkg sync:tex-wizard.el is *not* needed?</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2268</link>
    <description>Hello                                           

We are almost done with the sync. (I said this a couple of weeks ago, I
know).
I just realized that the auctex source dir contains a file called
tex-wizard.el
This file is *not* included in the xemacs pkg provided by the auctex
team, therefore we also will not include it. But just out of curiosity 
this file is only used in GNU emacs?


Uwe Brauer  
</description>
    <dc:creator>Uwe Brauer</dc:creator>
    <dc:date>2008-09-10T10:43:44</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2256">
    <title>REftex: bug in reftex-create-bibtex-file</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2256</link>
    <description>
Hello

4 years ago, I asked Carsten about a BUG in this reftex function.
Since now the auctex team maintains reftex, Carsten suggested to contact
you. 

Here are the relevant emails:


</description>
    <dc:creator>Uwe Brauer</dc:creator>
    <dc:date>2008-09-05T10:41:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2247">
    <title>adventures with --prefix,TeX-data-directory and style files</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2247</link>
    <description>



I recently noticed that the auctex style files were not being loaded.
Following some investigation, I've discovered the cause, and thought I would
relate the story. 


With a bit of fiddling, I tracked the problem down to TeX-data-directory,
which is my case is set wrong, specifically to 

~/emacs/packages/auctex-11.58/auctex

Notice the extra "auctex". Hence the style files were not being found. 

I traced this back to 

(defvar TeX-lisp-directoryr
  (expand-file-name "auctex" (file-name-directory load-file-name))
  "The directory where most of the AUCTeX lisp files are located.
For the location of lisp files associated with
styles, see the variables TeX-style-* (hand-generated lisp) and
TeX-auto-* (automatically generated lisp).")


where the problem is evident. 


I normally install auctex by unpacking the tar ball in ~/emacs/packages
(creating auctex-x.x where x is the version number), and doing ./configure,
make, but no make install. This is how I install most packages and it works
well for me; I ju</description>
    <dc:creator>Phillip Lord</dc:creator>
    <dc:date>2008-09-01T18:27:30</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2242">
    <title>specific developer wanted</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2242</link>
    <description>
I would like to hire someone who is an experienced auctex hacker.  
Hopefully, it will be an hour of work, and I am offering $75 obo.  I 
need a local addon that I can stick into my .emacs file, that does the 
following:

* if the filename ends in .sltx, then load auctex but execute the 
following set of modifications:

# becomes the comment character, not %
$ and % lose their special meanings; they become ordinary characters
\m{...} has its arguments set as if its math mode.
\nl is like \\
\be is like \begin{equation}
\ee is like \end{equation}

I want indentation and highlighting to work right.  That's it.  It needs 
to go into my .emacs file, simply because I want it to survive the next 
auctex release upgrade.

Help appreciated.

Regards,

/iaw
</description>
    <dc:creator>ivo welch</dc:creator>
    <dc:date>2008-08-17T20:04:37</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2241">
    <title>looking for student programmer</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2241</link>
    <description>
auctex does seem a bit too daunting for me to hack.  so, I would like to 
hire someone for 3 hours to put together a hack that does the following 
(posted earlier):

I will use a preprocessor for latex, which does a couple of things, most importantly:

   #    replaces % as the comment character
   \1,\2..    replaces #1, #2,.. as macro arguments
   \ns    replaces \#
   \nl    replaces \\
   \lcp    replaces \{
   \rcp    replaces \}
   \math{}    replaces $...$
   \be    replaces \[
    \ee    replaces \]
   $,%    become ordinary characters


and I also plan to extend the namespace of macros to include [0-9.:] by
mangling it into spelled out versions.  Maybe I want to allow ';' as a
terminating character that forces interpretation as '{\macro}'.  Now, I need
a hack that changes the syntax highlighting in auctex.  preferably, it would
go into my .emacs file, so that future updates to auctex do not need internal
tweaking.


So, if you know how this would be done, and I can afford your help, I 
would love t</description>
    <dc:creator>ivo welch</dc:creator>
    <dc:date>2008-08-14T13:41:26</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.auctex.devel/2239">
    <title>changing parameters</title>
    <link>http://comments.gmane.org/gmane.emacs.auctex.devel/2239</link>
    <description>
dear auctex-wizards:

I am planning to write a preprocessor for latex, which does a couple of
things, most importantly:

    #    replaces % as the comment character
    \1,\2..    replaces #1, #2,.. as macro arguments
    \ns    replaces \#
    \nl    replaces \\
    \lcp    replaces \{
    \rcp    replaces \}
    \math{}    replaces $...$
    \be    replaces \[
     \ee    replaces \]
    $,%    become ordinary characters

and I also plan to extend the namespace of macros to include [0-9.:] by
mangling it into spelled out versions.  Maybe I want to allow ';' as a
terminating character that forces interpretation as '{\macro}'.

It is trivial to write a perl preprocessor to handle these changes.
the big advantage is that with these changes, writing a tex-&gt;anything
transcoder becomes a lot simpler.  (transcoder, not parser, of course.)

...except that I really would like to maintain basic auctex visibility while
editing.  would it be very difficult to define, say, '.pltx' which is 
like latex
mode, but knows</description>
    <dc:creator>ivo welch</dc:creator>
    <dc:date>2008-08-13T12:40:51</dc:date>
  </item>
  <textinput about="http://search.gmane.org/?group=$group=gmane.emacs.auctex.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.emacs.auctex.devel</link>
  </textinput>
</rdf:RDF>
