summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog25
-rw-r--r--src/guile/skribilo/biblio/template.scm1
-rw-r--r--src/guile/skribilo/package/eq.scm3
-rw-r--r--src/guile/skribilo/package/eq/lout.scm1
4 files changed, 29 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c4318c3..3ee382e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,31 @@
 # arch-tag: automatic-ChangeLog--skribilo@sv.gnu.org--2006/skribilo--devo--1.2
 #
 
+2007-06-01 17:59:55 GMT	Ludovic Court`es <ludovic.courtes@laas.fr>	patch-95
+
+    Summary:
+      eq/biblio: Small additions.
+    Revision:
+      skribilo--devo--1.2--patch-95
+
+    * src/guile/skribilo/biblio/template.scm
+      (make-bib-entry-template/default): Issue `institution' for `misc'
+      entries.
+    
+    * src/guile/skribilo/package/eq.scm (%operators): Added `modulo'.
+      (eq:modulo): New.
+    
+    * src/guile/skribilo/package/eq/lout.scm (eq:modulo): New writer.
+
+    modified files:
+     ChangeLog src/guile/skribilo/biblio/template.scm
+     src/guile/skribilo/package/eq.scm
+     src/guile/skribilo/package/eq/lout.scm
+
+    new patches:
+     lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-54
+
+
 2007-05-22 13:56:04 GMT	Ludovic Court`es <ludovic.courtes@laas.fr>	patch-94
 
     Summary:
diff --git a/src/guile/skribilo/biblio/template.scm b/src/guile/skribilo/biblio/template.scm
index dfdef6c..37eb803 100644
--- a/src/guile/skribilo/biblio/template.scm
+++ b/src/guile/skribilo/biblio/template.scm
@@ -183,6 +183,7 @@
               (if month " " ", ") year "."))
     ((misc)
      '(author ". " (or title url documenturl) ". "
+              (institution ", ")
               (publisher ", ")
               (address ", ")
               (month " ") year ". "
diff --git a/src/guile/skribilo/package/eq.scm b/src/guile/skribilo/package/eq.scm
index 90db17b..ec6bbc7 100644
--- a/src/guile/skribilo/package/eq.scm
+++ b/src/guile/skribilo/package/eq.scm
@@ -66,7 +66,7 @@
 
 
 (define %operators
-  '(/ * + - = != ~= < > <= >= sqrt expt sum product script
+  '(/ * + - modulo = != ~= < > <= >= sqrt expt sum product script
     in notin apply limit combinations set))
 
 (define %symbols
@@ -271,6 +271,7 @@ a symbol representing the mathematical operator denoted by @var{m} (e.g.,
 
 (define-simple-markup eq:+)
 (define-simple-markup eq:-)
+(define-simple-markup eq:modulo)
 
 (define-simple-markup eq:=)
 (define-simple-markup eq:!=)
diff --git a/src/guile/skribilo/package/eq/lout.scm b/src/guile/skribilo/package/eq/lout.scm
index bd4ccc7..bb243f6 100644
--- a/src/guile/skribilo/package/eq/lout.scm
+++ b/src/guile/skribilo/package/eq/lout.scm
@@ -185,6 +185,7 @@
                                   (let ((eq (ast-parent n)))
                                     (markup-option eq :div-style)))))
                            #f)
+(simple-lout-markup-writer modulo "mod")
 (simple-lout-markup-writer =)
 (simple-lout-markup-writer <)
 (simple-lout-markup-writer >)