Size: 609
Comment:
|
Size: 1062
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: |
Line 14: | Line 16: |
linkcolor={black}, citecolor={black}, urlcolor={blue!90!black} } % \hypersetup{draft} % Remove the comment character for printing. |
linkcolor={blue!50!black}, citecolor={blue!50!black}, \tikzifexternalizing{% \renewcommand{\hypersetup[1]}{} }{% \usepackage{hyperref} } % \hypersetup{draft} % Remove the comment character for printing. }}} |
Line 20: | Line 26: |
}}} | === Tikzexternalize and Lualatex === In order to use tikzexternalize in lualatex another package is also necessary: {{{ \usepackage{shellesc} }}} 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{% \renewcommand{\hypersetup[1]}{} }{% \usepackage{hyperref} } \hypersetup{ colorlinks, % These are of course only example options. bookmarksnumbered, linkcolor={blue!50!black}, citecolor={blue!50!black}, \tikzifexternalizing{% \renewcommand{\hypersetup[1]}{} }{% \usepackage{hyperref} } % \hypersetup{draft} % Remove the comment character for printing.
Tikzexternalize and Lualatex
In order to use tikzexternalize in lualatex another package is also necessary:
\usepackage{shellesc}
Other packages also require {shellesc} with lualatex, and therefore it may seem that it is not necessary sometimes. It is always necessary.