All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFT PATCH] utilities/toarxiv.sh: Get rid of borders around hyperlinks
@ 2020-01-04 15:40 Akira Yokosawa
  2020-01-06  1:25 ` Paul E. McKenney
  0 siblings, 1 reply; 5+ messages in thread
From: Akira Yokosawa @ 2020-01-04 15:40 UTC (permalink / raw)
  To: Paul E. McKenney; +Cc: perfbook, Akira Yokosawa

From 1edf6fb9b98cd74d37a3580f2b482d4d9c0197ad Mon Sep 17 00:00:00 2001
From: Akira Yokosawa <akiyks@gmail.com>
Date: Sat, 4 Jan 2020 20:15:27 +0900
Subject: [RFT PATCH] utilities/toarxiv.sh: Get rid of borders around hyperlinks

Based on a Q&A on StackExchange [1], putting "nohypertex" in
00README.XXX looks like the cause of all those ugly borders.

To override the default behavior of arxiv's hyperref,
add a boolean "toarxiv" in perfbook.tex and set it "true" in
toarxiv.sh so that the workaround code added in the preamble
shall be enabled.

[1]: https://tex.stackexchange.com/questions/30243/

Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
---
Hi Paul,

I looked at v2019.12.22a on https://arxiv.org/abs/1701.00854 and found that
some pages in the PDF almost impossible to read because of frequent borders
around hyperlinks.

I'm not sure this change in toarxiv.sh and perfbook.tex actually works on
arxiv.org, but can you try building there and see whether it works or not?

        Thanks, Akira
-- 
 perfbook.tex         | 14 +++++++++++++-
 utilities/toarxiv.sh |  4 ++--
 2 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/perfbook.tex b/perfbook.tex
index 0fae78fb..db334ae4 100644
--- a/perfbook.tex
+++ b/perfbook.tex
@@ -110,10 +110,12 @@
 \newboolean{nimbusavail}
 \setboolean{nimbusavail}{false}
 \newcommand{\IfNimbusAvail}[2]{\ifthenelse{\boolean{nimbusavail}}{#1}{#2}}
-
 \newboolean{colorlinks}
 \setboolean{colorlinks}{false}
 \newcommand{\IfColorLinks}[2]{\ifthenelse{\boolean{colorlinks}}{#1}{#2}}
+\newboolean{toarxiv}
+\setboolean{toarxiv}{false}
+\newcommand{\IfToArxiv}[2]{\ifthenelse{\boolean{toarxiv}}{#1}{#2}}
 
 \IfTwoColumn{}{
 \setboolean{colorlinks}{true}
@@ -123,6 +125,16 @@
 \hypersetup{colorlinks=true,allcolors=MediumBlue}
 }{}
 
+\IfToArxiv{
+\hypersetup{
+    colorlinks=true,
+    linkcolor=black,
+    citecolor=black,
+    filecolor=black,
+    urlcolor=black,
+}
+}{}
+
 \IfNimbusAvail{
 \usepackage{nimbusmononarrow}
 }{}
diff --git a/utilities/toarxiv.sh b/utilities/toarxiv.sh
index 29bce4ea..5e1c6388 100644
--- a/utilities/toarxiv.sh
+++ b/utilities/toarxiv.sh
@@ -79,6 +79,6 @@ rm ${destdir}/SMPdesign/DiningPhilosopher5TB.tex
 
 # The following changes work around arxiv.org limitations
 sed	-e '/usepackage{footnotebackref}/d' \
-	-e 's/\[bookmarks=true,bookmarksnumbered=true,pdfborder={0 0 0}]/[bookmarks=false]/' \
+	-e 's/{toarxiv}{false}/{toarxiv}{true}/' \
 	< perfbook.tex > ${destdir}/perfbook.tex
-echo "nohypertex" > ${destdir}/00README.XXX
+# echo "nohypertex" > ${destdir}/00README.XXX
-- 
2.24.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [RFT PATCH] utilities/toarxiv.sh: Get rid of borders around hyperlinks
  2020-01-04 15:40 [RFT PATCH] utilities/toarxiv.sh: Get rid of borders around hyperlinks Akira Yokosawa
@ 2020-01-06  1:25 ` Paul E. McKenney
  2020-01-06  3:31   ` Paul E. McKenney
  0 siblings, 1 reply; 5+ messages in thread
From: Paul E. McKenney @ 2020-01-06  1:25 UTC (permalink / raw)
  To: Akira Yokosawa; +Cc: perfbook

On Sun, Jan 05, 2020 at 12:40:50AM +0900, Akira Yokosawa wrote:
> >From 1edf6fb9b98cd74d37a3580f2b482d4d9c0197ad Mon Sep 17 00:00:00 2001
> From: Akira Yokosawa <akiyks@gmail.com>
> Date: Sat, 4 Jan 2020 20:15:27 +0900
> Subject: [RFT PATCH] utilities/toarxiv.sh: Get rid of borders around hyperlinks
> 
> Based on a Q&A on StackExchange [1], putting "nohypertex" in
> 00README.XXX looks like the cause of all those ugly borders.
> 
> To override the default behavior of arxiv's hyperref,
> add a boolean "toarxiv" in perfbook.tex and set it "true" in
> toarxiv.sh so that the workaround code added in the preamble
> shall be enabled.
> 
> [1]: https://tex.stackexchange.com/questions/30243/
> 
> Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
> ---
> Hi Paul,
> 
> I looked at v2019.12.22a on https://arxiv.org/abs/1701.00854 and found that
> some pages in the PDF almost impossible to read because of frequent borders
> around hyperlinks.
> 
> I'm not sure this change in toarxiv.sh and perfbook.tex actually works on
> arxiv.org, but can you try building there and see whether it works or not?

Queued and pushed.  I have started the arxiv.org processing step, but it
usually takes awhile.  ;-)

							Thanx, Paul

>         Thanks, Akira
> -- 
>  perfbook.tex         | 14 +++++++++++++-
>  utilities/toarxiv.sh |  4 ++--
>  2 files changed, 15 insertions(+), 3 deletions(-)
> 
> diff --git a/perfbook.tex b/perfbook.tex
> index 0fae78fb..db334ae4 100644
> --- a/perfbook.tex
> +++ b/perfbook.tex
> @@ -110,10 +110,12 @@
>  \newboolean{nimbusavail}
>  \setboolean{nimbusavail}{false}
>  \newcommand{\IfNimbusAvail}[2]{\ifthenelse{\boolean{nimbusavail}}{#1}{#2}}
> -
>  \newboolean{colorlinks}
>  \setboolean{colorlinks}{false}
>  \newcommand{\IfColorLinks}[2]{\ifthenelse{\boolean{colorlinks}}{#1}{#2}}
> +\newboolean{toarxiv}
> +\setboolean{toarxiv}{false}
> +\newcommand{\IfToArxiv}[2]{\ifthenelse{\boolean{toarxiv}}{#1}{#2}}
>  
>  \IfTwoColumn{}{
>  \setboolean{colorlinks}{true}
> @@ -123,6 +125,16 @@
>  \hypersetup{colorlinks=true,allcolors=MediumBlue}
>  }{}
>  
> +\IfToArxiv{
> +\hypersetup{
> +    colorlinks=true,
> +    linkcolor=black,
> +    citecolor=black,
> +    filecolor=black,
> +    urlcolor=black,
> +}
> +}{}
> +
>  \IfNimbusAvail{
>  \usepackage{nimbusmononarrow}
>  }{}
> diff --git a/utilities/toarxiv.sh b/utilities/toarxiv.sh
> index 29bce4ea..5e1c6388 100644
> --- a/utilities/toarxiv.sh
> +++ b/utilities/toarxiv.sh
> @@ -79,6 +79,6 @@ rm ${destdir}/SMPdesign/DiningPhilosopher5TB.tex
>  
>  # The following changes work around arxiv.org limitations
>  sed	-e '/usepackage{footnotebackref}/d' \
> -	-e 's/\[bookmarks=true,bookmarksnumbered=true,pdfborder={0 0 0}]/[bookmarks=false]/' \
> +	-e 's/{toarxiv}{false}/{toarxiv}{true}/' \
>  	< perfbook.tex > ${destdir}/perfbook.tex
> -echo "nohypertex" > ${destdir}/00README.XXX
> +# echo "nohypertex" > ${destdir}/00README.XXX
> -- 
> 2.24.1
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [RFT PATCH] utilities/toarxiv.sh: Get rid of borders around hyperlinks
  2020-01-06  1:25 ` Paul E. McKenney
@ 2020-01-06  3:31   ` Paul E. McKenney
  2020-01-06 15:17     ` Akira Yokosawa
  0 siblings, 1 reply; 5+ messages in thread
From: Paul E. McKenney @ 2020-01-06  3:31 UTC (permalink / raw)
  To: Akira Yokosawa; +Cc: perfbook

And I placed the arxiv PDF here:

http://www2.rdrop.com/~paulmck/submission/perfbook-arxiv.pdf

Thoughts?

							Thanx, Paul

On Sun, Jan 05, 2020 at 05:25:31PM -0800, Paul E. McKenney wrote:
> On Sun, Jan 05, 2020 at 12:40:50AM +0900, Akira Yokosawa wrote:
> > >From 1edf6fb9b98cd74d37a3580f2b482d4d9c0197ad Mon Sep 17 00:00:00 2001
> > From: Akira Yokosawa <akiyks@gmail.com>
> > Date: Sat, 4 Jan 2020 20:15:27 +0900
> > Subject: [RFT PATCH] utilities/toarxiv.sh: Get rid of borders around hyperlinks
> > 
> > Based on a Q&A on StackExchange [1], putting "nohypertex" in
> > 00README.XXX looks like the cause of all those ugly borders.
> > 
> > To override the default behavior of arxiv's hyperref,
> > add a boolean "toarxiv" in perfbook.tex and set it "true" in
> > toarxiv.sh so that the workaround code added in the preamble
> > shall be enabled.
> > 
> > [1]: https://tex.stackexchange.com/questions/30243/
> > 
> > Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
> > ---
> > Hi Paul,
> > 
> > I looked at v2019.12.22a on https://arxiv.org/abs/1701.00854 and found that
> > some pages in the PDF almost impossible to read because of frequent borders
> > around hyperlinks.
> > 
> > I'm not sure this change in toarxiv.sh and perfbook.tex actually works on
> > arxiv.org, but can you try building there and see whether it works or not?
> 
> Queued and pushed.  I have started the arxiv.org processing step, but it
> usually takes awhile.  ;-)
> 
> 							Thanx, Paul
> 
> >         Thanks, Akira
> > -- 
> >  perfbook.tex         | 14 +++++++++++++-
> >  utilities/toarxiv.sh |  4 ++--
> >  2 files changed, 15 insertions(+), 3 deletions(-)
> > 
> > diff --git a/perfbook.tex b/perfbook.tex
> > index 0fae78fb..db334ae4 100644
> > --- a/perfbook.tex
> > +++ b/perfbook.tex
> > @@ -110,10 +110,12 @@
> >  \newboolean{nimbusavail}
> >  \setboolean{nimbusavail}{false}
> >  \newcommand{\IfNimbusAvail}[2]{\ifthenelse{\boolean{nimbusavail}}{#1}{#2}}
> > -
> >  \newboolean{colorlinks}
> >  \setboolean{colorlinks}{false}
> >  \newcommand{\IfColorLinks}[2]{\ifthenelse{\boolean{colorlinks}}{#1}{#2}}
> > +\newboolean{toarxiv}
> > +\setboolean{toarxiv}{false}
> > +\newcommand{\IfToArxiv}[2]{\ifthenelse{\boolean{toarxiv}}{#1}{#2}}
> >  
> >  \IfTwoColumn{}{
> >  \setboolean{colorlinks}{true}
> > @@ -123,6 +125,16 @@
> >  \hypersetup{colorlinks=true,allcolors=MediumBlue}
> >  }{}
> >  
> > +\IfToArxiv{
> > +\hypersetup{
> > +    colorlinks=true,
> > +    linkcolor=black,
> > +    citecolor=black,
> > +    filecolor=black,
> > +    urlcolor=black,
> > +}
> > +}{}
> > +
> >  \IfNimbusAvail{
> >  \usepackage{nimbusmononarrow}
> >  }{}
> > diff --git a/utilities/toarxiv.sh b/utilities/toarxiv.sh
> > index 29bce4ea..5e1c6388 100644
> > --- a/utilities/toarxiv.sh
> > +++ b/utilities/toarxiv.sh
> > @@ -79,6 +79,6 @@ rm ${destdir}/SMPdesign/DiningPhilosopher5TB.tex
> >  
> >  # The following changes work around arxiv.org limitations
> >  sed	-e '/usepackage{footnotebackref}/d' \
> > -	-e 's/\[bookmarks=true,bookmarksnumbered=true,pdfborder={0 0 0}]/[bookmarks=false]/' \
> > +	-e 's/{toarxiv}{false}/{toarxiv}{true}/' \
> >  	< perfbook.tex > ${destdir}/perfbook.tex
> > -echo "nohypertex" > ${destdir}/00README.XXX
> > +# echo "nohypertex" > ${destdir}/00README.XXX
> > -- 
> > 2.24.1
> > 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [RFT PATCH] utilities/toarxiv.sh: Get rid of borders around hyperlinks
  2020-01-06  3:31   ` Paul E. McKenney
@ 2020-01-06 15:17     ` Akira Yokosawa
  2020-01-06 17:45       ` Paul E. McKenney
  0 siblings, 1 reply; 5+ messages in thread
From: Akira Yokosawa @ 2020-01-06 15:17 UTC (permalink / raw)
  To: paulmck; +Cc: perfbook, Akira Yokosawa

On Sun, 5 Jan 2020 19:31:47 -0800, Paul E. McKenney wrote:
> And I placed the arxiv PDF here:
> 
> http://www2.rdrop.com/~paulmck/submission/perfbook-arxiv.pdf
> 
> Thoughts?

Thank you for testing this.
It looks mostly identical to our -2c build, give or take the
footnotebackref package. So the workaround code seems to work!

Didn't you get any warning message from arxiv's build system?

Arxiv.org says it has TeX Live 2016 installed now, and I guess
footnotebackref should also be available. 

        Thanks, Akira

> 
> 							Thanx, Paul
> 
> On Sun, Jan 05, 2020 at 05:25:31PM -0800, Paul E. McKenney wrote:
>> On Sun, Jan 05, 2020 at 12:40:50AM +0900, Akira Yokosawa wrote:
>>> >From 1edf6fb9b98cd74d37a3580f2b482d4d9c0197ad Mon Sep 17 00:00:00 2001
>>> From: Akira Yokosawa <akiyks@gmail.com>
>>> Date: Sat, 4 Jan 2020 20:15:27 +0900
>>> Subject: [RFT PATCH] utilities/toarxiv.sh: Get rid of borders around hyperlinks
>>>
>>> Based on a Q&A on StackExchange [1], putting "nohypertex" in
>>> 00README.XXX looks like the cause of all those ugly borders.
>>>
>>> To override the default behavior of arxiv's hyperref,
>>> add a boolean "toarxiv" in perfbook.tex and set it "true" in
>>> toarxiv.sh so that the workaround code added in the preamble
>>> shall be enabled.
>>>
>>> [1]: https://tex.stackexchange.com/questions/30243/
>>>
>>> Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
>>> ---
>>> Hi Paul,
>>>
>>> I looked at v2019.12.22a on https://arxiv.org/abs/1701.00854 and found that
>>> some pages in the PDF almost impossible to read because of frequent borders
>>> around hyperlinks.
>>>
>>> I'm not sure this change in toarxiv.sh and perfbook.tex actually works on
>>> arxiv.org, but can you try building there and see whether it works or not?
>>
>> Queued and pushed.  I have started the arxiv.org processing step, but it
>> usually takes awhile.  ;-)
>>
>> 							Thanx, Paul
>>
>>>         Thanks, Akira
>>> -- 
>>>  perfbook.tex         | 14 +++++++++++++-
>>>  utilities/toarxiv.sh |  4 ++--
>>>  2 files changed, 15 insertions(+), 3 deletions(-)
>>>
>>> diff --git a/perfbook.tex b/perfbook.tex
>>> index 0fae78fb..db334ae4 100644
>>> --- a/perfbook.tex
>>> +++ b/perfbook.tex
>>> @@ -110,10 +110,12 @@
>>>  \newboolean{nimbusavail}
>>>  \setboolean{nimbusavail}{false}
>>>  \newcommand{\IfNimbusAvail}[2]{\ifthenelse{\boolean{nimbusavail}}{#1}{#2}}
>>> -
>>>  \newboolean{colorlinks}
>>>  \setboolean{colorlinks}{false}
>>>  \newcommand{\IfColorLinks}[2]{\ifthenelse{\boolean{colorlinks}}{#1}{#2}}
>>> +\newboolean{toarxiv}
>>> +\setboolean{toarxiv}{false}
>>> +\newcommand{\IfToArxiv}[2]{\ifthenelse{\boolean{toarxiv}}{#1}{#2}}
>>>  
>>>  \IfTwoColumn{}{
>>>  \setboolean{colorlinks}{true}
>>> @@ -123,6 +125,16 @@
>>>  \hypersetup{colorlinks=true,allcolors=MediumBlue}
>>>  }{}
>>>  
>>> +\IfToArxiv{
>>> +\hypersetup{
>>> +    colorlinks=true,
>>> +    linkcolor=black,
>>> +    citecolor=black,
>>> +    filecolor=black,
>>> +    urlcolor=black,
>>> +}
>>> +}{}
>>> +
>>>  \IfNimbusAvail{
>>>  \usepackage{nimbusmononarrow}
>>>  }{}
>>> diff --git a/utilities/toarxiv.sh b/utilities/toarxiv.sh
>>> index 29bce4ea..5e1c6388 100644
>>> --- a/utilities/toarxiv.sh
>>> +++ b/utilities/toarxiv.sh
>>> @@ -79,6 +79,6 @@ rm ${destdir}/SMPdesign/DiningPhilosopher5TB.tex
>>>  
>>>  # The following changes work around arxiv.org limitations
>>>  sed	-e '/usepackage{footnotebackref}/d' \
>>> -	-e 's/\[bookmarks=true,bookmarksnumbered=true,pdfborder={0 0 0}]/[bookmarks=false]/' \
>>> +	-e 's/{toarxiv}{false}/{toarxiv}{true}/' \
>>>  	< perfbook.tex > ${destdir}/perfbook.tex
>>> -echo "nohypertex" > ${destdir}/00README.XXX
>>> +# echo "nohypertex" > ${destdir}/00README.XXX
>>> -- 
>>> 2.24.1
>>>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [RFT PATCH] utilities/toarxiv.sh: Get rid of borders around hyperlinks
  2020-01-06 15:17     ` Akira Yokosawa
@ 2020-01-06 17:45       ` Paul E. McKenney
  0 siblings, 0 replies; 5+ messages in thread
From: Paul E. McKenney @ 2020-01-06 17:45 UTC (permalink / raw)
  To: Akira Yokosawa; +Cc: perfbook

On Tue, Jan 07, 2020 at 12:17:07AM +0900, Akira Yokosawa wrote:
> On Sun, 5 Jan 2020 19:31:47 -0800, Paul E. McKenney wrote:
> > And I placed the arxiv PDF here:
> > 
> > http://www2.rdrop.com/~paulmck/submission/perfbook-arxiv.pdf
> > 
> > Thoughts?
> 
> Thank you for testing this.
> It looks mostly identical to our -2c build, give or take the
> footnotebackref package. So the workaround code seems to work!
> 
> Didn't you get any warning message from arxiv's build system?

It said that the processing went well, and does not contain the string
footnotebackref.  If you really want the full LaTeX output, let me know,
and I will send it along.  Or let me know what you would like me to
search for.

> Arxiv.org says it has TeX Live 2016 installed now, and I guess
> footnotebackref should also be available. 

It does look better.  My thought is to leave the current release as
is, and update somewhat sooner than a year from now.  ;-)

							Thanx, Paul

>         Thanks, Akira
> 
> > 
> > 							Thanx, Paul
> > 
> > On Sun, Jan 05, 2020 at 05:25:31PM -0800, Paul E. McKenney wrote:
> >> On Sun, Jan 05, 2020 at 12:40:50AM +0900, Akira Yokosawa wrote:
> >>> >From 1edf6fb9b98cd74d37a3580f2b482d4d9c0197ad Mon Sep 17 00:00:00 2001
> >>> From: Akira Yokosawa <akiyks@gmail.com>
> >>> Date: Sat, 4 Jan 2020 20:15:27 +0900
> >>> Subject: [RFT PATCH] utilities/toarxiv.sh: Get rid of borders around hyperlinks
> >>>
> >>> Based on a Q&A on StackExchange [1], putting "nohypertex" in
> >>> 00README.XXX looks like the cause of all those ugly borders.
> >>>
> >>> To override the default behavior of arxiv's hyperref,
> >>> add a boolean "toarxiv" in perfbook.tex and set it "true" in
> >>> toarxiv.sh so that the workaround code added in the preamble
> >>> shall be enabled.
> >>>
> >>> [1]: https://tex.stackexchange.com/questions/30243/
> >>>
> >>> Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
> >>> ---
> >>> Hi Paul,
> >>>
> >>> I looked at v2019.12.22a on https://arxiv.org/abs/1701.00854 and found that
> >>> some pages in the PDF almost impossible to read because of frequent borders
> >>> around hyperlinks.
> >>>
> >>> I'm not sure this change in toarxiv.sh and perfbook.tex actually works on
> >>> arxiv.org, but can you try building there and see whether it works or not?
> >>
> >> Queued and pushed.  I have started the arxiv.org processing step, but it
> >> usually takes awhile.  ;-)
> >>
> >> 							Thanx, Paul
> >>
> >>>         Thanks, Akira
> >>> -- 
> >>>  perfbook.tex         | 14 +++++++++++++-
> >>>  utilities/toarxiv.sh |  4 ++--
> >>>  2 files changed, 15 insertions(+), 3 deletions(-)
> >>>
> >>> diff --git a/perfbook.tex b/perfbook.tex
> >>> index 0fae78fb..db334ae4 100644
> >>> --- a/perfbook.tex
> >>> +++ b/perfbook.tex
> >>> @@ -110,10 +110,12 @@
> >>>  \newboolean{nimbusavail}
> >>>  \setboolean{nimbusavail}{false}
> >>>  \newcommand{\IfNimbusAvail}[2]{\ifthenelse{\boolean{nimbusavail}}{#1}{#2}}
> >>> -
> >>>  \newboolean{colorlinks}
> >>>  \setboolean{colorlinks}{false}
> >>>  \newcommand{\IfColorLinks}[2]{\ifthenelse{\boolean{colorlinks}}{#1}{#2}}
> >>> +\newboolean{toarxiv}
> >>> +\setboolean{toarxiv}{false}
> >>> +\newcommand{\IfToArxiv}[2]{\ifthenelse{\boolean{toarxiv}}{#1}{#2}}
> >>>  
> >>>  \IfTwoColumn{}{
> >>>  \setboolean{colorlinks}{true}
> >>> @@ -123,6 +125,16 @@
> >>>  \hypersetup{colorlinks=true,allcolors=MediumBlue}
> >>>  }{}
> >>>  
> >>> +\IfToArxiv{
> >>> +\hypersetup{
> >>> +    colorlinks=true,
> >>> +    linkcolor=black,
> >>> +    citecolor=black,
> >>> +    filecolor=black,
> >>> +    urlcolor=black,
> >>> +}
> >>> +}{}
> >>> +
> >>>  \IfNimbusAvail{
> >>>  \usepackage{nimbusmononarrow}
> >>>  }{}
> >>> diff --git a/utilities/toarxiv.sh b/utilities/toarxiv.sh
> >>> index 29bce4ea..5e1c6388 100644
> >>> --- a/utilities/toarxiv.sh
> >>> +++ b/utilities/toarxiv.sh
> >>> @@ -79,6 +79,6 @@ rm ${destdir}/SMPdesign/DiningPhilosopher5TB.tex
> >>>  
> >>>  # The following changes work around arxiv.org limitations
> >>>  sed	-e '/usepackage{footnotebackref}/d' \
> >>> -	-e 's/\[bookmarks=true,bookmarksnumbered=true,pdfborder={0 0 0}]/[bookmarks=false]/' \
> >>> +	-e 's/{toarxiv}{false}/{toarxiv}{true}/' \
> >>>  	< perfbook.tex > ${destdir}/perfbook.tex
> >>> -echo "nohypertex" > ${destdir}/00README.XXX
> >>> +# echo "nohypertex" > ${destdir}/00README.XXX
> >>> -- 
> >>> 2.24.1
> >>>
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-01-06 17:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-04 15:40 [RFT PATCH] utilities/toarxiv.sh: Get rid of borders around hyperlinks Akira Yokosawa
2020-01-06  1:25 ` Paul E. McKenney
2020-01-06  3:31   ` Paul E. McKenney
2020-01-06 15:17     ` Akira Yokosawa
2020-01-06 17:45       ` Paul E. McKenney

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.