emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] Re: changing \href to \myhref in LaTex export


From: Sébastien Vauban
Subject: [Orgmode] Re: changing \href to \myhref in LaTex export
Date: Wed, 20 Jan 2010 09:40:40 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux)

Hi Martin,

"Martin G. Skjæveland" wrote:
>
> is it possible to change how hyperlinks are exported to LaTex without going
> into to org-latex.el, but setting by a variable or similar in my .emacs
> file?
>
> I would like to export hyperlinks in Latex as \myhref (or something else)
> instead of \href, so that I can redefine \myhref using \href, like this
>
>    \usepackage{ifthen}
>    \newcommand{\myhref}[2]{
>      \ifthenelse{\equal{#1}{#2}}
>        {\href{#1}{#2}}
>        {\href{#1}{#2}\footnote{\url{#1}}}
>      }
>
> and thus include the URLs of the links as footnotes.

Not answering clearly your question, but an alternative (that works) is to
redefine \href either in your private class (if you use one) or in your TeX
file.

In the latter case, put the `renewcommand' in your Org source, so that it gets
exported every time.

Example (with a `newcommand' here):

--8<---------------cut here---------------start------------->8---
#+LaTeX_HEADER: \newcommand{\figtext}[2]{\begin{tikzpicture} \draw 
(-#1/2,-#1/2) rectangle (#1/2,#1/2); \node[text width=#1] at (0,0) 
{\color{blue}\scriptsize{#2}}; \end{tikzpicture}}
--8<---------------cut here---------------end--------------->8---

I think, for this case, this offers more flexibility and allows you to get
what you want.

Best regards,
  Seb

-- 
Sébastien Vauban





reply via email to

[Prev in Thread] Current Thread [Next in Thread]