summaryrefslogtreecommitdiff
path: root/biblio
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2023-10-28 03:01:16 +0000
committerNorbert Preining <norbert@preining.info>2023-10-28 03:01:16 +0000
commit27f547140ee908fb4ce9e4b8297af7d5bf8d7ff9 (patch)
treee369cbac6d7ab890e1139cd73f5034e45af74b8b /biblio
parente7c703c953f148411c70d5ca86dc1c1023d73806 (diff)
CTAN sync 202310280301
Diffstat (limited to 'biblio')
-rw-r--r--biblio/bibtex/utils/bib2dvi/bib2dvi.bak156
-rw-r--r--biblio/ctan-bibdata/ctan.bib31
-rw-r--r--biblio/ctan-bibdata/ctan.pdfbin3719904 -> 3721975 bytes
3 files changed, 21 insertions, 166 deletions
diff --git a/biblio/bibtex/utils/bib2dvi/bib2dvi.bak b/biblio/bibtex/utils/bib2dvi/bib2dvi.bak
deleted file mode 100644
index 99acdeaa0f..0000000000
--- a/biblio/bibtex/utils/bib2dvi/bib2dvi.bak
+++ /dev/null
@@ -1,156 +0,0 @@
-#!/bin/sh
-#
-# bib2dvi - generates a .dvi file from a .bib file
-#
-# Version 0.13 (October 22, 1992)
-#
-# Copyright (c) L.L. Frederiks, 1992
-#
-# Usage: bib2dvi [file.bib] [-d|-e] [-s plain|abbrv|alpha|unsrt] [-v]
-#
-# Output: filename.dvi
-#
-
-USAGE='Usage: '`basename $0`' <file.bib> [-d|-e] [-s <style>] [-h] [-v]'
-BIB2DVIDIR=//dino/users/cad/loek/postscript/bib2ps
-TEXINPUTDIR=//dino/arbortext/inputs
-STYLE=english
-BSTYLE=plain
-NAMES="abbrv alpha plain unsrt"
-VERBOSE=false
-
-if [ "$1" = "" ]
-then
- echo bib2dvi 0.13 \(October 22, 1992\)
- echo Copyright \(c\) L.L. Frederiks, 1992
- echo "$USAGE" 1>&2
- echo " "where options are:
- echo " "-d Dutch
- echo " "-e English \(default\)
- echo " "-s Bibtex style: abbrv,alpha,unsrt,plain \(default\)
- echo " "-h help
- echo " "-v verbose
- exit 1
-fi
-
-if [ -f $1 ]
-then
- BIBALL=$1
-else
- echo "Argument not an existing file." 1>&2
- echo "$USAGE" 1>&2
- echo " "where options are:
- echo " "-d Dutch
- echo " "-e English \(default\)
- echo " "-s Bibtex style: abbrv,alpha,unsrt,plain \(default\)
- echo " "-h help
- echo " "-v verbose
- exit 1
-fi
-
-for arg in $*
-do
- case $arg in
- -h) echo bib2dvi 0.13 \(October 22, 1992\)
- echo Copyright \(c\) L.L. Frederiks, 1992
- echo "$USAGE" 1>&2
- echo " "where options are:
- echo " "-d Dutch
- echo " "-e English \(default\)
- echo " "-s Bibtex style: abbrv,alpha,unsrt,plain \(default\)
- echo " "-h help
- echo " "-v verbose
- exit 1;;
- -d) STYLE=dutch;;
- -e) STYLE=english;;
- -v) VERBOSE=true;;
- -s) for NAME in $* ; do
- for SUBNAME in $NAMES ; do
- if [ $SUBNAME = $NAME ]
- then
- BSTYLE=$SUBNAME
- fi
- done
- done
- esac
-done
-
-BIBLIO=`basename $BIBALL .bib`
-
-echo bib2dvi, version 0.12 \(October 22, 1992\)....
-
-sed -e "s/xxx/${BIBALL}/" -e "s/yyy/${USER}/" -e "s/ddd/${STYLE}/" > $BIBLIO.tmp1 << PART1
-\documentstyle[11pt,twoside,${BIB2DVIDIR}/bib2dvi,${BIB2DVIDIR}/ddd]{report}
-\pagestyle{plain}
-
-\begin{document}
-\noindent
-
-\title{xxx}
-PART1
-
-sed -e "s/ggg/${USER}/" > $BIBLIO.awk1 << PART2
-{
- creator="ggg";\\
- FS = ":,";\\
- str= "\author{";\\
- acco3 = "}";\\
- if (\$1 == creator)
- {print \$5};\\
-}
-PART2
-
-cat /etc/passwd > $BIBLIO.pass
-
-awk -f $BIBLIO.awk1 $BIBLIO.pass > $BIBLIO.tmp0
-
-awk -f $BIB2DVIDIR/bib2dvi2.awk $BIBLIO.tmp0 > $BIBLIO.tmp2
-
-sed -e "s/zzz/${BIBLIO}/" -e "s/uuu/${BSTYLE}/" > $BIBLIO.tmp3 << PART2
-
-\bibliographystyle{${TEXINPUTDIR}/uuu}
-\bibliography{zzz}
-
-\end{document}
-PART2
-
-echo Generating .tex file....
-awk -f $BIB2DVIDIR/bib2dvi1.awk $BIBALL > $BIBLIO.tmp4
-
-cat $BIBLIO.tmp1 $BIBLIO.tmp2 $BIBLIO.tmp4 $BIBLIO.tmp3 > $BIBLIO.tex
-
-echo Latex....
-
-if [ $VERBOSE = false ]
-then
- echo bye | latex $BIBLIO > /dev/null
-else
- echo bye | latex $BIBLIO
-fi
-
-echo Bibtex....
-
-if [ $VERBOSE = false ]
-then
- echo bye | bibtex $BIBLIO > /dev/null
-else
- echo bye | bibtex $BIBLIO
-fi
-
-echo Latex....
-
-if [ $VERBOSE = false ]
-then
- echo bye | latex $BIBLIO > /dev/null
-else
- echo bye | latex $BIBLIO
-fi
-
-# cleaning up ....
-
-rm -f $BIBLIO.tmp0 $BIBLIO.tmp1 $BIBLIO.tmp2 $BIBLIO.tmp3 $BIBLIO.tmp4 \
- $BIBLIO.pass $BIBLIO.tex $BIBLIO.aux $BIBLIO.bbl $BIBLIO.blg \
- $BIBLIO.log $BIBLIO.awk1
-
-echo Done....
-
diff --git a/biblio/ctan-bibdata/ctan.bib b/biblio/ctan-bibdata/ctan.bib
index cacdc8bee8..00a2d35e58 100644
--- a/biblio/ctan-bibdata/ctan.bib
+++ b/biblio/ctan-bibdata/ctan.bib
@@ -1,7 +1,7 @@
%% bib file of all CTAN packages
%% (C) Herbert Voß
%%
-%% created at 27-10-2023, 02:05:50
+%% created at 28-10-2023, 02:01:07
%%
%% This file is provided under the terms of the LPPL v1.3 or
@@ -10473,6 +10473,17 @@
things.},
}
+@manual{ctan-calcfrac,
+ title = {The \texttt{calcfrac} package},
+ subtitle = {Calculates the value of an expression containing fractions},
+ author = {{Unknown}},
+ date = {2023-10-27},
+ version = {0.1},
+ license = {lppl1.3c},
+ mirror = {https://mirror.ctan.org/macros/generic/calcfrac},
+ url = {https://ctan.org/pkg/calcfrac},
+}
+
@manual{ctan-calctab,
title = {The \texttt{calctab} package},
subtitle = {Language for numeric tables},
@@ -16789,7 +16800,7 @@
title = {The \texttt{customenvs} package},
subtitle = {Custom environments (MCQ, list with picked items, ...)},
author = {Cédric Pierquet},
- date = {2023-10-24},
+ date = {2023-10-27},
version = {0.1.1},
license = {lppl1.3c},
mirror = {https://mirror.ctan.org/macros/latex/contrib/customenvs},
@@ -34772,7 +34783,7 @@
title = {The \texttt{isosafety} package},
subtitle = {Provides ISO signs and colors according to the standards 7010 and 3864},
author = {Ben Steinhauer},
- date = {2023-10-26},
+ date = {2023-10-27},
version = {1.0},
license = {lppl1.3c},
mirror = {https://mirror.ctan.org/macros/latex/contrib/isosafety},
@@ -48437,8 +48448,8 @@
title = {The \texttt{newpx} package},
subtitle = {Alternative uses of the PX fonts, with improved metrics},
author = {Michael Sharpe},
- date = {2023-10-26},
- version = {1.531},
+ date = {2023-10-27},
+ version = {1.532},
license = {lppl,ofl},
mirror = {https://mirror.ctan.org/fonts/newpx},
url = {https://ctan.org/pkg/newpx},
@@ -66585,8 +66596,8 @@
title = {The \texttt{tagpdf} package},
subtitle = {Tools for experimenting with tagging using pdf\LaTeX{} and LuaLaTeX},
author = {Ulrike Fischer},
- date = {2023-08-31},
- version = {0.98l},
+ date = {2023-10-27},
+ version = {0.98m},
license = {lppl1.3c},
mirror = {https://mirror.ctan.org/macros/latex/contrib/tagpdf},
url = {https://ctan.org/pkg/tagpdf},
@@ -70793,8 +70804,8 @@
title = {The \texttt{titlesec} package},
subtitle = {Select alternative section titles},
author = {Javier Bezos López},
- date = {2023-10-17},
- version = {2.15},
+ date = {2023-10-27},
+ version = {2.16},
license = {mit},
mirror = {https://mirror.ctan.org/macros/latex/contrib/titlesec},
url = {https://ctan.org/pkg/titlesec},
@@ -70927,7 +70938,7 @@
title = {The \texttt{tkz-elements} package},
subtitle = {A Lua library for drawing Euclidean geometry with TikZ or tkz-euclide},
author = {Alain Matthes},
- date = {2023-10-26},
+ date = {2023-10-27},
version = {1.00b},
license = {lppl1.3},
mirror = {https://mirror.ctan.org/macros/latex/contrib/tkz/tkz-elements},
diff --git a/biblio/ctan-bibdata/ctan.pdf b/biblio/ctan-bibdata/ctan.pdf
index 4117f685c2..84ae36502f 100644
--- a/biblio/ctan-bibdata/ctan.pdf
+++ b/biblio/ctan-bibdata/ctan.pdf
Binary files differ