welcome: please sign in
location: Diff for "Computer/Latex/Tikzexternalize_Hyperref"
Differences between revisions 1 and 10 (spanning 9 versions)
Revision 1 as of 2018-11-24 19:51:36
Size: 609
Editor: leif
Comment:
Revision 10 as of 2019-01-08 18:08:48
Size: 1042
Editor: leif
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
=== Hyperref and Tikz Externalize === ## page was renamed from Computer/Latex/Hyperref_tikzexternalize
=== Tikz Externalize and Hyperref ===
Line 6: Line 7:
   \tikzifexternalizing{%
      \renewcommand{\hypersetup[1]}{}
   }{%
      \usepackage{hyperref}
   }
   \hypersetup{
      colorlinks, % These are of course only example options.
      bookmarksnumbered,
      linkcolor={black},
      citecolor={black},
      urlcolor={blue!90!black}
    }
    % \hypersetup{draft} % Remove the comment character for printing.
Line 20: Line 8:
\tikzifexternalizing{%
   \newcommand{\hypersetup}[1]{}
}{%
   \usepackage{hyperref}
}
\hypersetup{
   colorlinks, % These are of course only example options.
   bookmarksnumbered,
   linkcolor={blue!60!black},
   citecolor={blue!60!black},
   urlcolor={blue!60!black}
}

% \hypersetup{draft} % Remove the comment character for printing.
 
Line 21: Line 24:

=== Tikz Externalize and Lualatex ===
In order to use tikzexternalize in lualatex another package is also necessary:

{{{ \usepackage{shellesc} }}}

This package may also be used with latex and pdflatex, but is necessary with lualatex.
Other packages also require `{shellesc}` with lualatex, and therefore it may seem that it is not necessary sometimes. It is always necessary.

Tikz Externalize and Hyperref

Tikz Externalize does not work well with Hyperref without some extra measures. In order to get around the problem, include the following lines in your preamble

\tikzifexternalizing{%
   \newcommand{\hypersetup}[1]{}
}{%
   \usepackage{hyperref}  
}
\hypersetup{
   colorlinks,           % These are of course only example options.
   bookmarksnumbered,
   linkcolor={blue!60!black},
   citecolor={blue!60!black}, 
   urlcolor={blue!60!black}
}

% \hypersetup{draft}    % Remove the comment character for printing. 

Tikz Externalize and Lualatex

In order to use tikzexternalize in lualatex another package is also necessary:

  \usepackage{shellesc} 

This package may also be used with latex and pdflatex, but is necessary with lualatex. Other packages also require {shellesc} with lualatex, and therefore it may seem that it is not necessary sometimes. It is always necessary.

Computer/Latex/Tikzexternalize_Hyperref (last edited 2022-06-01 14:34:14 by leif)