From 29db9cf3eef5046c103737b1afb005eb52b40283 Mon Sep 17 00:00:00 2001 From: Boud Roukema Date: Thu, 26 Nov 2020 22:43:17 +0100 Subject: Clickable links in appendices This commit makes the numbered links to references such as [13] [14] [15] in the appendices clickable in the pdf. The solution was to call the "\newcites" command from the "multilibs" package *after* loading "hyperref". First do "rm -fv .build/tex/build/*.bbl .build/tex/build/*.aux" and then "./project make" a few times. --- tex/src/preamble-project.tex | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'tex/src') diff --git a/tex/src/preamble-project.tex b/tex/src/preamble-project.tex index 3d0c0ae..5caf976 100644 --- a/tex/src/preamble-project.tex +++ b/tex/src/preamble-project.tex @@ -5,12 +5,6 @@ %% \cite{} output to follow that of the IEEE. \usepackage{cite} -%% To have multiple bibliographies (one for the main paper, one for the -%% appendix). With 'multibib' we need to specify a name for each -%% bibliography. -\usepackage{multibib} -\newcites{appendix}{Bibliography} - %% For the `\url' command. \usepackage{url} @@ -27,6 +21,13 @@ linktocpage]{hyperref} \renewcommand\UrlFont{\rmfamily} +%% To have multiple bibliographies (one for the main paper, one for the +%% appendix). With 'multibib' we need to specify a name for each +%% bibliography. +\usepackage{multibib} +\newcites{appendix}{Bibliography} + + %% To have typewriter font \usepackage{courier} -- cgit v1.2.1