diff options
author | Ludovic Court`es | 2007-01-19 17:13:37 +0000 |
---|---|---|
committer | Ludovic Court`es | 2007-01-19 17:13:37 +0000 |
commit | 00cdc3a5d3419fb546c09e55817e43abd1246fca (patch) | |
tree | 2b9a63baf8a41ad8981d1c40815b972273cad79a /src | |
parent | b6c2b6e4bda26e618f4372971f113228f0798fa7 (diff) | |
parent | 9c607048a2b38322f0a2aee0ebd7e70f0134032e (diff) | |
download | skribilo-00cdc3a5d3419fb546c09e55817e43abd1246fca.tar.gz skribilo-00cdc3a5d3419fb546c09e55817e43abd1246fca.tar.lz skribilo-00cdc3a5d3419fb546c09e55817e43abd1246fca.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: skribilo@sv.gnu.org--2006/skribilo--devo--1.2--patch-43
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)))) ;*---------------------------------------------------------------------*/ |