From 9c607048a2b38322f0a2aee0ebd7e70f0134032e Mon Sep 17 00:00:00 2001 From: Ludovic Court`es Date: Thu, 18 Jan 2007 14:57:42 +0000 Subject: `latex' engine: Removed stupid uses of `bold'. * src/guile/skribilo/engine/latex.scm (&bib-entry-title): Don't use a bold typeface for the text. (&bib-entry-url): Use italics rather than bold for the URL itself. git-archimport-id: lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-6 --- src/guile/skribilo/engine/latex.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/guile/skribilo/engine/latex.scm b/src/guile/skribilo/engine/latex.scm index 407e1b3..d1a38e3 100644 --- a/src/guile/skribilo/engine/latex.scm +++ b/src/guile/skribilo/engine/latex.scm @@ -1626,7 +1626,7 @@ :predicate (lambda (n e) (engine-custom e 'hyperref)) :action (lambda (n e) - (let* ((t (bold (markup-body n))) + (let* ((t (markup-body n)) (en (handle-ast (ast-parent n))) (url (markup-option en 'url)) (ht (if url (ref :url (markup-body url) :text t) t))) @@ -1648,7 +1648,7 @@ :action (lambda (n e) (let* ((en (handle-ast (ast-parent n))) (url (markup-option en 'url)) - (t (bold (markup-body url)))) + (t (it (markup-body url)))) (skribe-eval (ref :url (markup-body url) :text t) e)))) ;*---------------------------------------------------------------------*/ -- cgit v1.2.3