From: Matthijs Kooijman Date: Fri, 9 Oct 2009 13:50:56 +0000 (+0200) Subject: Add macros for definitions and inmargin references to them. X-Git-Tag: final-thesis~213 X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fmaster-project%2Freport.git;a=commitdiff_plain;h=9c009df865db69a97c1eac0d2de4a8fdab692c41;hp=35ce834593526d613598a431723cd5be7fe440af Add macros for definitions and inmargin references to them. --- diff --git a/Utils/Shortcuts.tex b/Utils/Shortcuts.tex index 75bff27..c5308e9 100644 --- a/Utils/Shortcuts.tex +++ b/Utils/Shortcuts.tex @@ -7,3 +7,24 @@ % TODO: Prevent this macro from globbing the following space \define[0]\eg{{\em e.g.}} \define[0]\ie{{\em i.e.}} + + +% Define a new reference to a definition of the term. The text of the +% reference is the term itself, the name is the term with def: prefixed. +% For example, \defref{some defined term} defines the reference named +% "def:some defined term" to point to this location with the text "some +% defined term". +% You can refer to this reference with refdef, e.g., +% \refdef{def:some defined term}. +\define[1]\defref{\defreftxt{#1}{#1}} + +% Define a new reference with a text different from the name, #1 is the name +% of the reference, #2 is the text. +% This automatically prefixes the reference name with def: +\define[2]\defreftxt{\reference[def:#1]{#2}} + +% Reference a defined reference (using \defref). Will put the reference text +% and a page number in the margin. We use \inothermargin, since it is slightly +% bigger. +% This automatically prefixes the reference name with def: +\define[1]\refdef{\inothermargin{\ref[t][def:#1] p.\ref[p][def:#1]}}