16 lines
495 B
TeX
Raw Permalink Normal View History

2022-12-22 11:15:27 +00:00
%
% Custom macros
%
% Will encapsule a text in italic << >>
\newcommand{\enpointy}[1]{\emph{\textlangle\textlangle{#1}\textrangle\textrangle}}
% Will add a vertical line to tables
\newcommand{\tblVline}{\vline\hspace{2mm}}
% Will do a full reference, with both a number AND a caption. Like '1.2.3 Coding the code'
2023-01-27 03:10:19 +01:00
\newcommand{\fullref}[1]{\enpointy{\ref{#1} \nameref{#1}}}
% Will do a word-by-word citation-style, text italic, and in quotes
\newcommand{\quotecite}[1]{\enquote{\textit{#1}}}