summaryrefslogtreecommitdiff
path: root/macros/latex
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex')
-rw-r--r--macros/latex/contrib/animate/ChangeLog3
-rw-r--r--macros/latex/contrib/animate/animate.pdfbin3887825 -> 3898615 bytes
-rw-r--r--macros/latex/contrib/animate/animate.sty33
-rw-r--r--macros/latex/contrib/animate/animate.tex1
-rw-r--r--macros/latex/contrib/translator/translator-basic-dictionary-English.dict3
-rw-r--r--macros/latex/contrib/translator/translator-basic-dictionary-French.dict3
-rw-r--r--macros/latex/contrib/translator/translator-basic-dictionary-German.dict3
-rw-r--r--macros/latex/contrib/translator/translator-basic-dictionary-Italian.dict3
-rw-r--r--macros/latex/contrib/translator/translator-basic-dictionary-Norsk.dict3
-rw-r--r--macros/latex/contrib/translator/translator-basic-dictionary-Nynorsk.dict3
-rw-r--r--macros/latex/contrib/translator/translator-basic-dictionary-Spanish.dict4
-rw-r--r--macros/latex/contrib/translator/translator.pdfbin208567 -> 209036 bytes
-rw-r--r--macros/latex/contrib/translator/translator.sty3
13 files changed, 36 insertions, 26 deletions
diff --git a/macros/latex/contrib/animate/ChangeLog b/macros/latex/contrib/animate/ChangeLog
index 10ca7c56f0..6638dbfa3f 100644
--- a/macros/latex/contrib/animate/ChangeLog
+++ b/macros/latex/contrib/animate/ChangeLog
@@ -1,3 +1,6 @@
+2020-08-04
+ * fix: typesetting failure with `latex-dev'
+
2020-05-29
* fix: `autoplay' option non-functional in combination with `poster=last';
missing mention of KDE Okular in the list of supported PDF viewers
diff --git a/macros/latex/contrib/animate/animate.pdf b/macros/latex/contrib/animate/animate.pdf
index 9fcccf84fa..de2203afcf 100644
--- a/macros/latex/contrib/animate/animate.pdf
+++ b/macros/latex/contrib/animate/animate.pdf
Binary files differ
diff --git a/macros/latex/contrib/animate/animate.sty b/macros/latex/contrib/animate/animate.sty
index 64d1291144..ae65243dba 100644
--- a/macros/latex/contrib/animate/animate.sty
+++ b/macros/latex/contrib/animate/animate.sty
@@ -13,7 +13,7 @@
\NeedsTeXFormat{LaTeX2e}
-\def\@anim@version{2020/05/29}
+\def\@anim@version{2020/08/04}
\ProvidesPackage{animate}
[\@anim@version\space PDF & SVG animations from files and inline graphics]
@@ -235,22 +235,6 @@
\fi
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-\ifpdf\else
- \if@anim@dvipdfmx\else
- \if@anim@dvisvgm\else % dvips
- %if geometry package is loaded, execute `\geometry{dvips}' right before
- % `\begin{document}'; not sure whether still needed at all
- \let\@anim@document\document
- \def\document{%
- \endgroup%
- \@ifpackageloaded{geometry}{\geometry{dvips}}{}%
- \begingroup%
- \@anim@document%
- }
- \fi
- \fi
-\fi
-
%\pdfmdfivesum is used for hashing object references of embedded files based
%on their MD5 digest (in order to avoid multiple inclusion); if it is not
%available, hashing will be based on the file name
@@ -2013,7 +1997,10 @@
% insert widget
\if@anim@js%
\@anim@annot{\@anim@btnsize}{\@anim@btnsize}{\z@}{%
- cursor='pointer' onmousedown='\@anim@btnJS{#1}{\@anim@arg}'%
+ cursor='pointer' onmousedown='%
+ event.preventDefault();event.stopPropagation();%
+ \@anim@btnJS{#1}{\@anim@arg}%
+ '%
}%
\@anim@updatebbox{\@anim@btnsize}{\@anim@btnsize}{0pt}%
\hbox to \@anim@btnsize {%
@@ -2056,7 +2043,6 @@
/T (#1.#2)%
\@anim@tooltip%
\if@anim@js%
- %/A <</S/JavaScript/JS (\@anim@btnJS{#1}{\@anim@arg})>>%
/AA <</D <</S/JavaScript/JS (\@anim@btnJS{#1}{\@anim@arg})>>>>%
\fi%
}%
@@ -4355,8 +4341,7 @@
\@anim@wdgtUpJS{#1}%
}$%
function onTouchEndWdgt(event){$%
- event.preventDefault();$%
- event.stopPropagation();$%
+ event.preventDefault();event.stopPropagation();$%
\if@anim@step\else
if(a#1_playing){try{a#1_pause();}catch(e){}}else{$%
\fi%
@@ -4366,13 +4351,11 @@
\fi%
}$%
function onMouseDownWdgt(event){$%
- event.preventDefault();$%
- event.stopPropagation();$%
+ event.preventDefault();event.stopPropagation();$%
\@anim@wdgtDownJS{#1}%
}$%
function onMouseUpWdgt(event){$%
- event.preventDefault();$%
- event.stopPropagation();$%
+ event.preventDefault();event.stopPropagation();$%
onWidgetUpAction(event);$%
}$%
\fi%
diff --git a/macros/latex/contrib/animate/animate.tex b/macros/latex/contrib/animate/animate.tex
index 82979a475d..14316a68dd 100644
--- a/macros/latex/contrib/animate/animate.tex
+++ b/macros/latex/contrib/animate/animate.tex
@@ -1,3 +1,4 @@
+\listfiles
% Copyright 2007--\today Alexander Grahn
%
% This material is subject to the LaTeX Project Public License. See
diff --git a/macros/latex/contrib/translator/translator-basic-dictionary-English.dict b/macros/latex/contrib/translator/translator-basic-dictionary-English.dict
index 9649cacef3..07323c86b9 100644
--- a/macros/latex/contrib/translator/translator-basic-dictionary-English.dict
+++ b/macros/latex/contrib/translator/translator-basic-dictionary-English.dict
@@ -85,3 +85,6 @@
\providetranslation{table}{table}
\providetranslation{To}{To}
\providetranslation{to}{to}
+\providetranslation{Who?}{Who?}
+\providetranslation{From?}{From?}
+\providetranslation{When?}{When?}
diff --git a/macros/latex/contrib/translator/translator-basic-dictionary-French.dict b/macros/latex/contrib/translator/translator-basic-dictionary-French.dict
index 71a9472644..ca9329eb8f 100644
--- a/macros/latex/contrib/translator/translator-basic-dictionary-French.dict
+++ b/macros/latex/contrib/translator/translator-basic-dictionary-French.dict
@@ -85,3 +85,6 @@
\providetranslation{table}{table}
\providetranslation{To}{Vers}%??
\providetranslation{to}{vers}%??
+\providetranslation{Who?}{Qui?}
+\providetranslation{From?}{D'o\`u?}
+\providetranslation{When?}{Quand?}
diff --git a/macros/latex/contrib/translator/translator-basic-dictionary-German.dict b/macros/latex/contrib/translator/translator-basic-dictionary-German.dict
index 48b7c8622b..15f3615048 100644
--- a/macros/latex/contrib/translator/translator-basic-dictionary-German.dict
+++ b/macros/latex/contrib/translator/translator-basic-dictionary-German.dict
@@ -85,3 +85,6 @@
\providetranslation{table}{Tabelle}
\providetranslation{To}{An}
\providetranslation{to}{an}
+\providetranslation{Who?}{Wer?}
+\providetranslation{From?}{Woher?}
+\providetranslation{When?}{Wann?}
diff --git a/macros/latex/contrib/translator/translator-basic-dictionary-Italian.dict b/macros/latex/contrib/translator/translator-basic-dictionary-Italian.dict
index 3f14069ac2..64e6970fd3 100644
--- a/macros/latex/contrib/translator/translator-basic-dictionary-Italian.dict
+++ b/macros/latex/contrib/translator/translator-basic-dictionary-Italian.dict
@@ -85,3 +85,6 @@
\providetranslation{table}{tabella}
\providetranslation{To}{A}
\providetranslation{to}{a}
+\providetranslation{Who?}{Chi?}
+\providetranslation{From?}{Da?}
+\providetranslation{When?}{Quando?}
diff --git a/macros/latex/contrib/translator/translator-basic-dictionary-Norsk.dict b/macros/latex/contrib/translator/translator-basic-dictionary-Norsk.dict
index 196abaea08..24b58da128 100644
--- a/macros/latex/contrib/translator/translator-basic-dictionary-Norsk.dict
+++ b/macros/latex/contrib/translator/translator-basic-dictionary-Norsk.dict
@@ -82,3 +82,6 @@
\providetranslation{table}{tabell}
\providetranslation{To}{Til}
\providetranslation{to}{til}
+\providetranslation{Who?}{Hvem?}
+\providetranslation{From?}{Fra?}
+\providetranslation{When?}{N\r{a}r?}
diff --git a/macros/latex/contrib/translator/translator-basic-dictionary-Nynorsk.dict b/macros/latex/contrib/translator/translator-basic-dictionary-Nynorsk.dict
index 610b26adfe..0f24709adb 100644
--- a/macros/latex/contrib/translator/translator-basic-dictionary-Nynorsk.dict
+++ b/macros/latex/contrib/translator/translator-basic-dictionary-Nynorsk.dict
@@ -82,3 +82,6 @@
\providetranslation{table}{tabell}
\providetranslation{To}{Til}
\providetranslation{to}{til}
+\providetranslation{Who?}{Kven?}
+\providetranslation{From?}{Fr\r{a}?}
+\providetranslation{When?}{N\r{a}r?}
diff --git a/macros/latex/contrib/translator/translator-basic-dictionary-Spanish.dict b/macros/latex/contrib/translator/translator-basic-dictionary-Spanish.dict
index 5d5c982d76..ba1c0cf97d 100644
--- a/macros/latex/contrib/translator/translator-basic-dictionary-Spanish.dict
+++ b/macros/latex/contrib/translator/translator-basic-dictionary-Spanish.dict
@@ -85,3 +85,7 @@
\providetranslation{table}{tabla}
\providetranslation{To}{Hasta}
\providetranslation{to}{hasta}
+\providetranslation{Who?}{¿Quién?}
+\providetranslation{From?}{¿Desde?}
+\providetranslation{When?}{¿Cuándo?}
+
diff --git a/macros/latex/contrib/translator/translator.pdf b/macros/latex/contrib/translator/translator.pdf
index 680bbaa16d..4a174bbfe2 100644
--- a/macros/latex/contrib/translator/translator.pdf
+++ b/macros/latex/contrib/translator/translator.pdf
Binary files differ
diff --git a/macros/latex/contrib/translator/translator.sty b/macros/latex/contrib/translator/translator.sty
index 897e887965..e87dc2b2bd 100644
--- a/macros/latex/contrib/translator/translator.sty
+++ b/macros/latex/contrib/translator/translator.sty
@@ -11,7 +11,7 @@
% See the documentation file for more details.
\ProvidesPackage{translator}
- [2020-07-27 v1.12b Easy translation of strings in LaTeX]
+ [2020-08-03 v1.12c Easy translation of strings in LaTeX]
\RequirePackage{keyval}
@@ -33,6 +33,7 @@
\DeclareOption{acadian} {\trans@use@and@alias{french} {Acadian,French}}
\DeclareOption{afrikaans} {\trans@use@and@alias{afrikaans} {Afrikaans,Dutch}}
\DeclareOption{american} {\trans@use@and@alias{american} {AmericanEnglish,English}}
+\DeclareOption{arabic} {\trans@use@and@alias{arabic} {Arabic}}
\DeclareOption{austrian} {\trans@use@and@alias{austrian} {Austrian1997,Austrian,German1997,German}}
\DeclareOption{bahasa} {\trans@use@and@alias{bahasa} {Bahasa}}
\DeclareOption{basque} {\trans@use@and@alias{basque} {Basque}}