summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2022-11-29 21:12:17 +0000
committerKarl Berry <karl@freefriends.org>2022-11-29 21:12:17 +0000
commit00d87261416e9bd5268d231188c8ded6a759e0e4 (patch)
treea26ee1860359f1ce9585534b3eb8893cdb258b55
parent6f25a6db4bd678d25f7b70dc6ee8a555251211e6 (diff)
csbulletin (29nov22)
git-svn-id: svn://tug.org/texlive/trunk@65146 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Master/texmf-dist/doc/latex/csbulletin/README8
-rw-r--r--Master/texmf-dist/doc/latex/csbulletin/csbulletin.pdfbin264133 -> 276573 bytes
-rw-r--r--Master/texmf-dist/doc/latex/csbulletin/csbulletin.tex2
-rw-r--r--Master/texmf-dist/doc/latex/csbulletin/example-czech.tex42
-rw-r--r--Master/texmf-dist/doc/latex/csbulletin/example-english.tex43
-rw-r--r--Master/texmf-dist/doc/latex/csbulletin/example-slovak.tex42
-rw-r--r--Master/texmf-dist/doc/latex/csbulletin/example.bib19
-rw-r--r--Master/texmf-dist/tex/latex/csbulletin/csbulacronym.sty76
-rw-r--r--Master/texmf-dist/tex/latex/csbulletin/csbulletin.cls4
-rw-r--r--Master/texmf-dist/tex/latex/csbulletin/csbulobalka.sty6
10 files changed, 156 insertions, 86 deletions
diff --git a/Master/texmf-dist/doc/latex/csbulletin/README b/Master/texmf-dist/doc/latex/csbulletin/README
index e54672784c6..cc91b62aee0 100644
--- a/Master/texmf-dist/doc/latex/csbulletin/README
+++ b/Master/texmf-dist/doc/latex/csbulletin/README
@@ -1,9 +1,9 @@
=============================================================================
-Package: csbulletin 10 January 2020
+Package: csbulletin 29 November 2022
=============================================================================
-The package provides the class for articles for the CSTUG Bulletin
-(Zpravodaj Ceskoslovenskeho sdruzeni uzivatelu TeXu). You can see the
-structure of a document by looking to the source file of this manual. The
+The package provides the class for articles for the CSTUG Bulletin
+(Zpravodaj Ceskoslovenskeho sdruzeni uzivatelu TeXu). You can see the
+structure of a document by looking to the source file of this manual. The
package can be used and distributed according to the LaTeX Project Public
License.
diff --git a/Master/texmf-dist/doc/latex/csbulletin/csbulletin.pdf b/Master/texmf-dist/doc/latex/csbulletin/csbulletin.pdf
index 00edd67d5bf..25b26cf7df5 100644
--- a/Master/texmf-dist/doc/latex/csbulletin/csbulletin.pdf
+++ b/Master/texmf-dist/doc/latex/csbulletin/csbulletin.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/csbulletin/csbulletin.tex b/Master/texmf-dist/doc/latex/csbulletin/csbulletin.tex
index faae0e23a4f..a9d644de602 100644
--- a/Master/texmf-dist/doc/latex/csbulletin/csbulletin.tex
+++ b/Master/texmf-dist/doc/latex/csbulletin/csbulletin.tex
@@ -1,6 +1,6 @@
%% $Id$
\documentclass{csbulletin}
-\DeclareRobustCommand\version{\unskip~2020/01/10}
+\DeclareRobustCommand\version{\unskip~2022/11/29}
\let\pkg\textsc
\usepackage[pdftitle=LaTeX\ Class\ for\ CSTUG\ Bulletin, pdfauthor={Zdenek\ Wagner, Vit\ Novotny},
diff --git a/Master/texmf-dist/doc/latex/csbulletin/example-czech.tex b/Master/texmf-dist/doc/latex/csbulletin/example-czech.tex
new file mode 100644
index 00000000000..3512eb2b4f4
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/csbulletin/example-czech.tex
@@ -0,0 +1,42 @@
+\documentclass{csbulletin}
+\selectlanguage{czech}
+\usepackage[utf8]{inputenc}
+\usepackage[all]{nowidow}
+\usepackage{csquotes}
+\usepackage[
+ backend=biber,
+ style=iso-numeric,
+ sortlocale=cs,
+ autolang=other,
+ bibencoding=UTF8,
+ mincitenames=2,
+ maxcitenames=2,
+]{biblatex}
+\addbibresource{example.bib}
+\usepackage[
+ implicit=false,
+ hidelinks,
+]{hyperref}
+\begin{document}
+
+\title{Český název článku}
+\EnglishTitle{Anglický název článku}
+\author{Jméno autora}
+\podpis{Jméno autora, e-mailová adresa autora}
+\maketitle
+
+\begin{abstract}
+Český abstrakt článku.
+\end{abstract}
+\klicovaslova: první klíčové slovo, druhé klíčové slovo, třetí klíčové slovo, …
+
+\section{Název sekce}
+\TeX{} je program pro digitální sazbu. Kniha \citetitle{knuth-ttp}~\cite{knuth-ttp} obsahuje komentovaný zdrojový kód \TeX u. \textcite{knuth-tb} popisuje \TeX{} z pohledu uživatele.
+
+\printbibliography
+
+\begin{summary}
+Anglický abstrakt článku.
+\keywords: první anglické klíčové slovo, druhé anglické klíčové slovo, …
+\end{summary}
+\end{document}
diff --git a/Master/texmf-dist/doc/latex/csbulletin/example-english.tex b/Master/texmf-dist/doc/latex/csbulletin/example-english.tex
new file mode 100644
index 00000000000..ae137ac0da0
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/csbulletin/example-english.tex
@@ -0,0 +1,43 @@
+\documentclass{csbulletin}
+\selectlanguage{english}
+\usepackage[utf8]{inputenc}
+\usepackage[all]{nowidow}
+\usepackage{csquotes}
+\usepackage[
+ backend=biber,
+ style=iso-numeric,
+ sortlocale=en,
+ autolang=other,
+ bibencoding=UTF8,
+ mincitenames=2,
+ maxcitenames=2,
+]{biblatex}
+\addbibresource{example.bib}
+\usepackage[
+ implicit=false,
+ hidelinks,
+]{hyperref}
+\begin{document}
+
+\title{English Title}
+\EnglishTitle{English Title}
+\author{Name Surname}
+\podpis{Name Surname, e-mail address}
+\maketitle
+
+\begin{abstract}
+English abstract.
+\keywords: first English keyword, second English keyword, third English …
+\end{abstract}
+
+\section{Section Title}
+\TeX{} is a digital typesetting system. The book \citetitle{knuth-ttp}~\cite{knuth-ttp} is a detailed account of \TeX's source code, whereas \textcite{knuth-tb} focuses more on the end user.
+
+\printbibliography
+
+\section*{Czech Title}
+\begin{otherlanguage}{czech}
+Czech abstract.
+\end{otherlanguage}
+\klicovaslova: first Czech keyword, second Czech keyword, third Czech …
+\end{document}
diff --git a/Master/texmf-dist/doc/latex/csbulletin/example-slovak.tex b/Master/texmf-dist/doc/latex/csbulletin/example-slovak.tex
new file mode 100644
index 00000000000..20f50f84e00
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/csbulletin/example-slovak.tex
@@ -0,0 +1,42 @@
+\documentclass{csbulletin}
+\selectlanguage{slovak}
+\usepackage[utf8]{inputenc}
+\usepackage[all]{nowidow}
+\usepackage{csquotes}
+\usepackage[
+ backend=biber,
+ style=iso-numeric,
+ sortlocale=sk,
+ autolang=other,
+ bibencoding=UTF8,
+ mincitenames=2,
+ maxcitenames=2,
+]{biblatex}
+\addbibresource{example.bib}
+\usepackage[
+ implicit=false,
+ hidelinks,
+]{hyperref}
+\begin{document}
+
+\title{Slovenský názov článku}
+\EnglishTitle{Anglický názov článku}
+\author{Meno autora}
+\podpis{Meno autora, e-mailová adresa autora}
+\maketitle
+
+\begin{abstract}
+Slovenský abstrakt článku.
+\end{abstract}
+\klucoveslova: prvé kľúčové slovo, druhé kľúčové slovo, tretí kľúčové slovo, …
+
+\section{Názov sekcie}
+\TeX{} je program pre digitálnu sadzbu. Kniha \citetitle{knuth-ttp}~\cite{knuth-ttp} obsahuje komentovaný zdrojový kód \TeX u. \textcite{knuth-tb} popisuje \TeX{} z pohľadu užívateľa.
+
+\printbibliography
+
+\begin{summary}
+Anglický abstrakt článku.
+\keywords: prvé anglické kľúčové slovo, druhé anglické kľúčové slovo, …
+\end{summary}
+\end{document}
diff --git a/Master/texmf-dist/doc/latex/csbulletin/example.bib b/Master/texmf-dist/doc/latex/csbulletin/example.bib
new file mode 100644
index 00000000000..d882b6520b4
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/csbulletin/example.bib
@@ -0,0 +1,19 @@
+@book{knuth-tb,
+ author = {Donald Ervin Knuth},
+ title = {The \TeX book},
+ location = {Reading (MA, USA)},
+ publisher = {Addison-Wesley},
+ year = {1986},
+ pagetotal = {x+483},
+ isbn = {0-201-13448-9},
+}
+
+@book{knuth-ttp,
+ author = {Donald Ervin Knuth},
+ title = {\TeX: The Program},
+ location = {Reading (MA, USA)},
+ publisher = {Addison-Wesley},
+ year = {1986},
+ pagetotal = {624},
+ isbn = {0-201-13437-3},
+}
diff --git a/Master/texmf-dist/tex/latex/csbulletin/csbulacronym.sty b/Master/texmf-dist/tex/latex/csbulletin/csbulacronym.sty
deleted file mode 100644
index 374627b45bf..00000000000
--- a/Master/texmf-dist/tex/latex/csbulletin/csbulacronym.sty
+++ /dev/null
@@ -1,76 +0,0 @@
-\ProvidesPackage{csbulacronym}[2020/01/10 Acronyms for CSTUG bulletin]
-\PackageInfo{csbulacronym}{$Id$}
-
-%==================================================== TeX logos
-\DeclareRobustCommand\CS[1]{\def\next{#1}\leavevmode{$\cal C$}\kern-.3em
- \lower .67ex\hbox{$\cal S$}\if E\next\kern-.045em\else
- \kern-.145em\fi#1}
-\DeclareRobustCommand\CSTeX{\leavevmode{$\cal C$}\kern-.3em
- \lower .67ex\hbox{$\cal S$}\kern-.145em\TeX}
-\let\cstex\CSTeX
-\DeclareRobustCommand\csplain{\leavevmode{$\cal C$}\kern-.3em
- \lower .67ex\hbox{$\cal S$}\kern-.145emplain}
-\DeclareRobustCommand\CSLaTeX{\leavevmode{$\cal C$}\kern-.3em
- \lower .67ex\hbox{$\cal S$}\LaTeX}
-\let\cslatex\CSLaTeX
-\DeclareRobustCommand\CSTUG{\leavevmode{$\cal C$}\kern-.3em
- \lower .67ex\hbox{$\cal S$}\kern-.145em TUG}
-\let\cstug\CSTUG
-\DeclareRobustCommand\CSED{{$\cal C$}\kern-.3em
- \lower .67ex\hbox{$\cal S$}\kern-.045emED}
-\let\csed\CSED
-\DeclareRobustCommand\lm{L\kern-.4em\raise.4ex\hbox{$\scriptstyle\cal A$}\kern-.2em
- \lower.4ex\hbox{$\scriptstyle{\cal M}$}\kern-.1em{$\cal S$}-\TeX}
-\DeclareRobustCommand\lmb{L\kern-.35em\raise.35ex\hbox{$\scriptstyle\cal A$}\kern-.15em
- \lower.4ex\hbox{$\cal M$}\kern-.05em{$\cal S$}-\TeX}
-\let\LAmSTeX\lm
-\DeclareRobustCommand\AmSTeX{\protect\AmS-\protect\TeX}
-\let\AMSTeX\AmSTeX
-\let\amstex\AmSTeX
-\DeclareRobustCommand\AmS{{$\cal\protect A\kern-.1667em\lower.5ex
- \hbox{$\cal M$}\kern-.125emS$}}
-\let\AMS\AmS
-\def\manual{\fontencoding{U}\fontfamily{logo}\selectfont}
-\DeclareRobustCommand\font@mp{\fontencoding{U}\fontfamily{mplogo}\selectfont}
-\DeclareRobustCommand\MF{{\manual META}\-{\manual FONT}} \let\mf\MF
-\DeclareRobustCommand\MP{{\manual META}\-{\manual POST}} \let\mp\MP
-\DeclareRobustCommand\BibTeX{{\sc Bib}\TeX} \let\BIBTeX\BibTeX
-\DeclareRobustCommand\PiC{P\kern-.12em\lower.5ex\hbox{I}\kern-.075emC}
-\DeclareRobustCommand\PiCTeX{\PiC\kern-.11em\TeX}
-\DeclareRobustCommand\SliTeX{{\rm S\kern-.06em{\sc l\kern-.035emi}\kern-.06em\TeX}}
-\let\SLiTeX\SliTeX
-\DeclareRobustCommand\WPtoLaTeX{%
-W\kern-.06em\hbox{P}\kern-.2em\lower.7ex\hbox{2}\kern-.07em\LaTeX}
-\let\Protected@LaTeX\LaTeX
-\let\Protected@LaTeXe\LaTeXe
-%\DeclareRobustCommand\LaTeX{\Protected@LaTeX}
-%\DeclareRobustCommand\LaTeXe{\Protected@LaTeXe}
-\DeclareRobustCommand\miktex{MiK\TeX}\let\MikTeX\miktex \let\MiKTeX\miktex \let\Miktex\miktex
-
-\DeclareRobustCommand\ForTeX{\leavevmode\lower.5ex\hbox{4}\kern-.1667em\TeX}
-\DeclareRobustCommand\ForAllTeX{\leavevmode\lower.3ex\hbox{4}all\TeX}
-\DeclareRobustCommand\LyX{L\kern\minus.1667em\lower.25em\hbox{Y}\kern\minus.125emX\spacefactor1000}
-\DeclareRobustCommand\OzTeX{Oz\kern\minus.1em\TeX}
-\DeclareRobustCommand\eTeX{$\varepsilon$\minus\TeX}
-\DeclareRobustCommand\NTS{$\cal N$\kern\minus.1667em\lower.5ex\hbox{$\cal T$}%
- \kern\minus.125em$\cal S$}
-
-\DeclareRobustCommand\XeTeX{X\kern-.125em\lower.5ex\hbox{\csname
- reflectbox\endcsname{E}}\kern-.1667em\TeX}
-\DeclareRobustCommand\XeLaTeX{X\kern-.125em\lower.5ex\hbox{\csname
- reflectbox\endcsname{E}}\LaTeX}
-
-\DeclareRobustCommand\THANH{H\`an Th\^e\llap{\raise 0.5ex\hbox{\'{}}} Th\`anh}
-\DeclareRobustCommand\Thanh{Th\`anh}
-\DeclareRobustCommand\ConTeXt{\textsc{Con\kern-.15em\TeX t}}
-
-\DeclareRobustCommand\ps{PostScript}\let\PS\ps
-
-\chardef\bs`\\
-\let\bslash\bs
-\DeclareRobustCommand\cmd[1]{\texttt{\bs#1}}
-{\catcode`\#=12
-\gdef\hash{#}}
-
-\def\bul#1(#2)#3(#4){Zpravodaj \v Ceskoslovensk\'eho sdru\v zen\'i u\v zivatel\r{u} \TeX u,
-\textbf{#1}\,(#2), \hbox{#3}~(#4)}
diff --git a/Master/texmf-dist/tex/latex/csbulletin/csbulletin.cls b/Master/texmf-dist/tex/latex/csbulletin/csbulletin.cls
index 0b0a63df695..7a4ec6c207f 100644
--- a/Master/texmf-dist/tex/latex/csbulletin/csbulletin.cls
+++ b/Master/texmf-dist/tex/latex/csbulletin/csbulletin.cls
@@ -1,4 +1,4 @@
-\ProvidesClass{csbulletin}[2020/01/10 CSTUG Bulletin class]
+\ProvidesClass{csbulletin}[2022/11/29 CSTUG Bulletin class]
\ClassInfo{csbulletin}{$Id$}
% Switch
@@ -79,7 +79,7 @@
\ifpdf
\IfFileExists{microtype.sty}{\RequirePackage
- [protrusion=true,expansion=true,stretch=8,shrink=24,step=4]{microtype}}{}
+ [protrusion=true,expansion=true,stretch=8,shrink=24,step=4,nopatch=item]{microtype}}{}
\fi
\IfFileExists{array.sty}{\RequirePackage{array}}{}
diff --git a/Master/texmf-dist/tex/latex/csbulletin/csbulobalka.sty b/Master/texmf-dist/tex/latex/csbulletin/csbulobalka.sty
index 2926f1babda..226ddbe8029 100644
--- a/Master/texmf-dist/tex/latex/csbulletin/csbulobalka.sty
+++ b/Master/texmf-dist/tex/latex/csbulletin/csbulobalka.sty
@@ -1,4 +1,4 @@
-\ProvidesPackage{csbulobalka}[2020/01/10 Obalka + tiraz]
+\ProvidesPackage{csbulobalka}[2021/03/19 Obalka + tiraz]
\PackageInfo{csbulobalka}{$Id$}
%
% 3/4/2003 pridal jsem vetveni pro novou adresu sdruzeni (PS)
@@ -296,7 +296,7 @@ Z\v r\'izen\'e po\v stovn\'i aliasy sdru\v zen\'i \CSTUG:
\ifnum\the\rok>2001 \small\fi
-\tir@ni\path|bulletin@cstug.cz|, \path|zpravodaj@cstug.cz|\\
+\tir@ni\path|bulletin@cstug.cz|\\
korespondence ohledn\v e Zpravodaje sdru\v zen\'i
\tir@ni\path|board@cstug.cz|\\ korespondence \v clen\r um v\'yboru
\tir@ni\path|cstug@cstug.cz|, \path|president@cstug.cz| \\
@@ -508,7 +508,7 @@ p\v{r}\'{i}stup na Internet, m\r{u}\v{z}ete zaslat p\v{r}\'{i}sp\v{e}vek na disk
Zden\v{e}k Wagner\\
Vinohradsk\'{a} 114\\
130 00 Praha 3\par \smallskip
-\texttt{zpravodaj@cstug.cz}\par
+\texttt{bulletin@cstug.cz}\par
}
\medskip