diff options
author | Ludovic Court`es | 2007-01-18 14:57:42 +0000 |
---|---|---|
committer | Ludovic Court`es | 2007-01-18 14:57:42 +0000 |
commit | 9c607048a2b38322f0a2aee0ebd7e70f0134032e (patch) | |
tree | 2b9a63baf8a41ad8981d1c40815b972273cad79a /src | |
parent | e78ee03ca101700ee5839f6a86037d3028d65ae3 (diff) | |
download | skribilo-9c607048a2b38322f0a2aee0ebd7e70f0134032e.tar.gz skribilo-9c607048a2b38322f0a2aee0ebd7e70f0134032e.tar.lz skribilo-9c607048a2b38322f0a2aee0ebd7e70f0134032e.zip |
`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
Diffstat (limited to 'src')
-rw-r--r-- | src/guile/skribilo/engine/latex.scm | 4 |
1 files 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)))) ;*---------------------------------------------------------------------*/ |