gzz-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gzz-commits] gzz/metacode latex2e.py


From: Benja Fallenstein
Subject: [Gzz-commits] gzz/metacode latex2e.py
Date: Sun, 09 Feb 2003 21:32:34 -0500

CVSROOT:        /cvsroot/gzz
Module name:    gzz
Changes by:     Benja Fallenstein <address@hidden>      03/02/09 21:32:34

Modified files:
        metacode       : latex2e.py 

Log message:
        More awful hackery for multiple citations, i.e. \cite{foo, bar}:
        you have to write '[hill94extending-andalso-carr95dls]_'...

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/metacode/latex2e.py.diff?tr1=1.7&tr2=1.8&r1=text&r2=text

Patches:
Index: gzz/metacode/latex2e.py
diff -u gzz/metacode/latex2e.py:1.7 gzz/metacode/latex2e.py:1.8
--- gzz/metacode/latex2e.py:1.7 Sun Feb  9 17:32:50 2003
+++ gzz/metacode/latex2e.py     Sun Feb  9 21:32:34 2003
@@ -3,8 +3,8 @@
 """
 :Author: Engelbert Gruber (hacked by the Gzz project)
 :Contact: address@hidden
-:Revision: $Revision: 1.7 $
-:Date: $Date: 2003/02/09 22:32:50 $
+:Revision: $Revision: 1.8 $
+:Date: $Date: 2003/02/10 02:32:34 $
 :Copyright: This module has been placed in the public domain.
 
 LaTeX2e document tree Writer.
@@ -440,7 +440,7 @@
         href = ''
         if node.has_key('refid'):
             href = node['refid']
-        self.body.append('\\cite{%s}' % href)
+        self.body.append('\\cite{%s}' % ','.join(href.split('-andalso-')))
         self.body.append(None)
 
         ##elif node.has_key('refname'):




reply via email to

[Prev in Thread] Current Thread [Next in Thread]