Estou tentando entender a última parte da resposta,Interface de valor-chavenumeração de páginas, no tópicoComo gerar TOC por rótulos personalizados no início dos documentos anexados?
Gostaria de colorir o número da página para vermelho e criar um link para ele, de volta à primeira página do documento (ToC, por exemplo). Acho que fancypagestyle
não é o ideal aqui no tópicoComo rotular todos os números de página no TOC no rodapé sofisticado?
Minha proposta é saber como aplicá-las ao cristãoInterface de valor-chavenumeração de páginas
\usepackage{xcolor}
então{\color{red} pagenumber}
com um link para ToC, o pseudocódigo a seguir, mas não tenho certeza de como fazer um interno aqui
\href{some-how-link-to-1st-page-of-document}{{\color{red} pagenumber}}
Parte relevante do código cristão
% https://tex.stackexchange.com/a/365580/13173
\usepackage{pdfpages}
\usepackage{hyperref} % for links in TOC
% https://tex.stackexchange.com/q/56316/13173
\usepackage{fancyhdr}
\renewcommand{\headrulewidth}{0pt} % Werner, remove top margin border
% https://tex.stackexchange.com/a/338919/13173
\usepackage{letltxmacro}
\makeatletter
\LetLtxMacro\pdfpages@@includepdf\includepdf
\RenewDocumentCommand{\includepdf}{O{}mo}{%
\begingroup
\IfValueTF{#3}{% Is there a 3rd argument? Yes
% Process the keys for the \includepdf first in order to get the value of 'pages=...' option
% This is stored to \AM@pagestemp (see pdfpages.sty)
\setkeys{pdfpages}{#1}%
\SetupPdfInclude{label={label#2\AM@pagestemp},page={\AM@pagestemp}, heading={#2},#3}
% Call the old command with the options for addtotoc
\pdfpages@@includepdf[pagecommand={\thispagestyle{fancy}},addtotoc={\retrieveoption{page},\retrieveoption{section},\retrieveoption{level},\retrieveoption{heading},\retrieveoption{label}},#1]{#2}
}{% No, no 3rd. argument}
\pdfpages@@includepdf[pagecommand={\thispagestyle{fancy}},#1]{#2}
}%
\endgroup% Prevent leaking of key values to the next call of the command
}
\makeatother
SO: Debian 8.7
Hardware: Asus Zenbook UX303UB
Responder1
Tente um \hypersetup{linkcolor}{red}\hyperlink{mytoc\jobname}{\thepage}}
( red
embora seja a cor padrão para links)`
Como isso ocorre em um grupo, \hypersetup
não vaza para fora do grupo local.
\documentclass{article}
\usepackage{blindtext}
\usepackage{fancyhdr}
\usepackage{xcolor}
\usepackage[colorlinks]{hyperref} % for links in TOC
\renewcommand{\headrulewidth}{0pt}
\fancypagestyle{plain}{%
\fancyhf{}
\fancyfoot[L]{\hypersetup{linkcolor=blue}\hyperlink{docstart\jobname}{First page}}
\fancyfoot[C]{\hypersetup{linkcolor=red}\hyperlink{mytoc\jobname}{\thepage}}
}
\begin{document}
\pagestyle{plain}
\phantomsection
\hypertarget{docstart\jobname}{}
\blindtext[10]
\phantomsection
\hypertarget{mytoc\jobname}{}
\tableofcontents
\clearpage
\section{Beginning Foo}
\blindtext[10]
\end{document}
Com fancy
estilo de página:
\documentclass{article}
\usepackage{blindtext}
\usepackage{fancyhdr}
\usepackage{xcolor}
\usepackage[colorlinks]{hyperref} % for links in TOC
\renewcommand{\headrulewidth}{0pt}
% Now for fancy pagestyle
\fancyhf{}
\fancyfoot[L]{\hypersetup{linkcolor=blue}\hyperlink{docstart\jobname}{First page}}
\fancyfoot[C]{\hypersetup{linkcolor=red}\hyperlink{mytoc\jobname}{\thepage}}
\begin{document}
\pagestyle{fancy}
\phantomsection
\hypertarget{docstart\jobname}{}
\blindtext[10]
\phantomsection
\hypertarget{mytoc\jobname}{}
\tableofcontents
\clearpage
\section{Beginning Foo}
\blindtext[10]
\end{document}