
Add a `link-render-style` syntax property to control the rendering of section links --- so that HTML output can say "section <number>", and so that Latex/PDF output can have just the section number hperlinked (as in acmart). It seems unfortunate that the link rendering is so hardwired into each rendering back-end, but maybe this can be made even more configurable in the future. Meanwhile, Latex macros already provide an additional layer of rendering control (but not enough, it turns out, to easily perform the same adjustments as the 'number mode that matches acmart). For `scriblib/figure` make `figure-ref` and `Figure-ref` similarly sensitive to the link-rendering style. For `scriblib/autobib`, change the hyperlinking of references so that the color can be overridden, and make `scribble/acmart` override it.
43 lines
1.4 KiB
TeX
43 lines
1.4 KiB
TeX
\usepackage{ccaption}
|
|
|
|
% \legend relies on \belowcaptionskip, which is not defined
|
|
% by the JFP class file:
|
|
\makeatletter
|
|
\@ifundefined{belowcaptionskip}{\newlength{\belowcaptionskip}}{}
|
|
\makeatother
|
|
|
|
\newcommand{\Legend}[1]{~
|
|
|
|
\hrule width \hsize height .33pt
|
|
\vspace{4pt}
|
|
\legend{#1}}
|
|
|
|
\newcommand{\LegendContinued}[1]{\Legend{#1}}
|
|
|
|
\newcommand{\FigureTarget}[2]{#1}
|
|
\newcommand{\FigureRef}[2]{#1}
|
|
|
|
\newlength{\FigOrigskip}
|
|
\FigOrigskip=\parskip
|
|
|
|
% Put this before the figure content, so that a hyperref goes to
|
|
% the start of the content:
|
|
\newcommand{\FigureSetRef}{\refstepcounter{figure}}
|
|
|
|
\newenvironment{Figure}{\begin{figure}\FigureSetRef}{\end{figure}}
|
|
\newenvironment{FigureMulti}{\begin{figure*}[t!p]\FigureSetRef}{\end{figure*}}
|
|
\newenvironment{FigureMultiWide}{\begin{FigureMulti}\FigureSetRef}{\end{FigureMulti}}
|
|
\newenvironment{Herefigure}{\begin{figure}[ht!]\FigureSetRef\centering}{\end{figure}}
|
|
|
|
\newenvironment{Centerfigure}{\begin{Xfigure}\centering\item}{\end{Xfigure}}
|
|
\newenvironment{Leftfigure}{\begin{Xfigure}\item}{\end{Xfigure}}
|
|
\newenvironment{Rightfigure}{\begin{Xfigure}\item}{\end{Xfigure}}
|
|
|
|
\newenvironment{Xfigure}{\begin{list}{}{\leftmargin=0pt\topsep=0pt\parsep=\FigOrigskip\partopsep=0pt}}{\end{list}}
|
|
|
|
\newenvironment{FigureInside}{}{}
|
|
|
|
\newcommand{\Centertext}[1]{\begin{center}#1\end{center}}
|
|
|
|
|