summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/docshots
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2024-01-10 03:03:23 +0000
committerNorbert Preining <norbert@preining.info>2024-01-10 03:03:23 +0000
commitcdb8117b8f1ac752d1927b82759c5be9f0ec0ab5 (patch)
treeebd07d36ab12076de3523b744cc87f975747f3e0 /macros/latex/contrib/docshots
parent140e2f7f1509acd423172e2895d0d7839e5b88c6 (diff)
CTAN sync 202401100303
Diffstat (limited to 'macros/latex/contrib/docshots')
-rw-r--r--macros/latex/contrib/docshots/DEPENDS.txt23
-rw-r--r--macros/latex/contrib/docshots/LICENSE.txt2
-rw-r--r--macros/latex/contrib/docshots/README.md2
-rw-r--r--macros/latex/contrib/docshots/docshots.dtx24
-rw-r--r--macros/latex/contrib/docshots/docshots.ins4
-rw-r--r--macros/latex/contrib/docshots/docshots.pdfbin340901 -> 341476 bytes
6 files changed, 36 insertions, 19 deletions
diff --git a/macros/latex/contrib/docshots/DEPENDS.txt b/macros/latex/contrib/docshots/DEPENDS.txt
index 42b2d30ead..e3b60fe89b 100644
--- a/macros/latex/contrib/docshots/DEPENDS.txt
+++ b/macros/latex/contrib/docshots/DEPENDS.txt
@@ -1,10 +1,21 @@
-hard iexec
hard fancyvrb
-hard pdfcrop
-hard pgf
-hard pgfopts
+hard iexec
hard listings
hard minted
+hard pdfcrop
hard pdftexcmds
-hard ifluatex
-hard ifxetex
+hard pgf
+hard pgfopts
+soft biber
+soft biblatex
+soft ffcode
+soft href-ul
+soft hypdoc
+soft l3build
+soft libertine
+soft microtype
+soft newtx
+soft scheme-basic
+soft tools
+soft xetex
+soft upquote \ No newline at end of file
diff --git a/macros/latex/contrib/docshots/LICENSE.txt b/macros/latex/contrib/docshots/LICENSE.txt
index bd949ffdab..1f211e0287 100644
--- a/macros/latex/contrib/docshots/LICENSE.txt
+++ b/macros/latex/contrib/docshots/LICENSE.txt
@@ -1,6 +1,6 @@
(The MIT License)
-Copyright (c) 2021-2022 Yegor Bugayenko
+Copyright (c) 2021-2024 Yegor Bugayenko
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the 'Software'), to deal
diff --git a/macros/latex/contrib/docshots/README.md b/macros/latex/contrib/docshots/README.md
index 839ad7a513..675a17cb3b 100644
--- a/macros/latex/contrib/docshots/README.md
+++ b/macros/latex/contrib/docshots/README.md
@@ -28,7 +28,7 @@ For more informaiton, read \TeX{} Book by Donald Knuth.
\end{document}
```
-Otherwise, you can download [`docshots.sty`](https://raw.githubusercontent.com/yegor256/docshots/gh-pages/docshots/docshots.sty) and add to your project.
+Otherwise, you can download [`docshots.sty`](https://yegor256.github.io/docshots/docshots.sty) and add to your project.
If you want to contribute yourself, make a fork, then create a branch,
then run `l3build ctan` in the root directory.
diff --git a/macros/latex/contrib/docshots/docshots.dtx b/macros/latex/contrib/docshots/docshots.dtx
index 438938f870..393f867408 100644
--- a/macros/latex/contrib/docshots/docshots.dtx
+++ b/macros/latex/contrib/docshots/docshots.dtx
@@ -1,7 +1,7 @@
% \iffalse meta-comment
% (The MIT License)
%
-% Copyright (c) 2021-2022 Yegor Bugayenko
+% Copyright (c) 2021-2024 Yegor Bugayenko
%
% Permission is hereby granted, free of charge, to any person obtaining a copy
% of this software and associated documentation files (the 'Software'), to deal
@@ -50,7 +50,7 @@
%<package>\NeedsTeXFormat{LaTeX2e}
%<package>\ProvidesPackage{docshots}
%<*package>
-[2022-11-29 0.4.0 TeX Samples Next to Their PDF Snapshots in DTX]
+[2024-01-09 0.4.1 TeX Samples Next to Their PDF Snapshots in DTX]
%</package>
%<*driver>
\documentclass{ltxdoc}
@@ -623,16 +623,22 @@ Hello, world!
% \end{macrocode}
% We configure |fancyvrb|:
% \begin{macrocode}
- \fvset{numbers=left,numbersep=3pt}%
- \fvset{frame=leftline,framerule=.2pt,rulecolor=\color{gray}}%
- \fvset{samepage=true}%
- \fvset{baselinestretch=1}%
+ \def\docshots@xopts{
+ numbers=left,numbersep=3pt,
+ frame=leftline,framerule=.2pt,rulecolor=\color{gray},
+ samepage=true,
+ commandchars=none,
+ baselinestretch=1
+ }%
\ifdefined\docshots@small%
- \fvset{fontsize=\small}%
+ \edef\docshots@xopts{\unexpanded\expandafter{\docshots@xopts},fontsize=\small}%
\fi%
\ifdefined\docshots@tiny%
- \fvset{fontsize=\scriptsize}%
+ \edef\docshots@xopts{\unexpanded\expandafter{\docshots@xopts},fontsize=\scriptsize}%
\fi%
+ \ifdefined\docshots@opts
+ \edef\docshots@xopts{\unexpanded\expandafter{\docshots@xopts},\docshots@opts}
+ \fi
% \end{macrocode}
% Finally, we render the two-column content:
% \begin{macrocode}
@@ -654,7 +660,7 @@ Hello, world!
{\docshots@inputminted}
{\docshots@tmpdir/\jobname/\hash.tex}%
\else%
- \expandafter\VerbatimInput\expandafter[\docshots@opts]
+ \expandafter\VerbatimInput\expandafter[\docshots@xopts]
{\docshots@tmpdir/\jobname/\hash.tex}%
\fi\fi%
\vspace{0pt}%
diff --git a/macros/latex/contrib/docshots/docshots.ins b/macros/latex/contrib/docshots/docshots.ins
index d7ba42bfee..aac261d2d4 100644
--- a/macros/latex/contrib/docshots/docshots.ins
+++ b/macros/latex/contrib/docshots/docshots.ins
@@ -1,6 +1,6 @@
%% (The MIT License)
%%
-%% Copyright (c) 2021-2022 Yegor Bugayenko
+%% Copyright (c) 2021-2024 Yegor Bugayenko
%%
%% Permission is hereby granted, free of charge, to any person obtaining a copy
%% of this software and associated documentation files (the 'Software'), to deal
@@ -26,7 +26,7 @@
\preamble
(The MIT License)
-Copyright (c) 2021-2022 Yegor Bugayenko
+Copyright (c) 2021-2024 Yegor Bugayenko
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the 'Software'), to deal
diff --git a/macros/latex/contrib/docshots/docshots.pdf b/macros/latex/contrib/docshots/docshots.pdf
index a9b34346b3..903ad5d3ce 100644
--- a/macros/latex/contrib/docshots/docshots.pdf
+++ b/macros/latex/contrib/docshots/docshots.pdf
Binary files differ