"J. Alejandro Noli" <[EMAIL PROTECTED]> writes:

> Hi!
>
> I've got this log trying to publish with C-c C-T -> book-pdf
>
> I think it's related with spanish translation.  How can be fixed?  I'm
> using debian and the last version of muse.

It is probably an encoding mismatch. Do you have a utf-8 locale or utf-8
language setup in Emacs? If so, you'll probably want to change the
inputenc option in muse-latex-header [obviously, you'll want to change
the babel option too [to spanish, perhaps?]...]:

(setq muse-latex-header
  "\\documentclass{article}

\\usepackage[british]{babel}
\\usepackage[utf8]{inputenc}
\\usepackage[T1]{fontenc}
\\usepackage{hyperref}
\\usepackage[pdftex]{graphicx}

\\newcommand{\\comment}[1]{}

\\begin{document}

\\title{<lisp>(muse-publishing-directive \"title\")</lisp>}
\\author{<lisp>(muse-publishing-directive \"author\")</lisp>}
\\date{<lisp>(muse-publishing-directive \"date\")</lisp>}

\\maketitle

<lisp>(and muse-publish-generate-contents
           (not muse-latex-permit-contents-tag)
           \"\\\\tableofcontents\n\\\\newpage\")</lisp>\n\n")


Regards,

-- 
Jim Ottaway

_______________________________________________
Muse-el-discuss mailing list
[email protected]
https://mail.gna.org/listinfo/muse-el-discuss

Reply via email to