aboutsummaryrefslogtreecommitdiff
path: root/tex/src
diff options
context:
space:
mode:
authorBoud Roukema <boud@cosmo.torun.pl>2020-11-26 22:43:17 +0100
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2020-11-27 22:40:29 +0000
commit29db9cf3eef5046c103737b1afb005eb52b40283 (patch)
tree214d35c226303beedc3480735b67691aceb8e79f /tex/src
parent2f422f590b0f3666e31592a51bcdc91131631ec5 (diff)
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.
Diffstat (limited to 'tex/src')
-rw-r--r--tex/src/preamble-project.tex13
1 files changed, 7 insertions, 6 deletions
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}