summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2020-07-15 22:18:52 +0000
committerKarl Berry <karl@freefriends.org>2020-07-15 22:18:52 +0000
commita86b1fe8a0aace2f577be38ae4b4d1263b044d89 (patch)
tree23a36ccd17f8b6793e6e89e7642942a013f41b69 /Master
parentcc9a1c90f254a17ae525f6cd58d97f9ae738c6d3 (diff)
langsci-avm (15jul20)
git-svn-id: svn://tug.org/texlive/trunk@55846 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r--Master/texmf-dist/doc/latex/langsci-avm/langsci-avm.pdfbin113978 -> 114198 bytes
-rw-r--r--Master/texmf-dist/source/latex/langsci-avm/langsci-avm.dtx16
-rw-r--r--Master/texmf-dist/tex/latex/langsci-avm/langsci-avm.sty14
3 files changed, 19 insertions, 11 deletions
diff --git a/Master/texmf-dist/doc/latex/langsci-avm/langsci-avm.pdf b/Master/texmf-dist/doc/latex/langsci-avm/langsci-avm.pdf
index 6d125865e89..73f036d8af4 100644
--- a/Master/texmf-dist/doc/latex/langsci-avm/langsci-avm.pdf
+++ b/Master/texmf-dist/doc/latex/langsci-avm/langsci-avm.pdf
Binary files differ
diff --git a/Master/texmf-dist/source/latex/langsci-avm/langsci-avm.dtx b/Master/texmf-dist/source/latex/langsci-avm/langsci-avm.dtx
index 1a54c0aa208..72346d4f51a 100644
--- a/Master/texmf-dist/source/latex/langsci-avm/langsci-avm.dtx
+++ b/Master/texmf-dist/source/latex/langsci-avm/langsci-avm.dtx
@@ -83,7 +83,7 @@ Please report any bugs or feature requests to
% Please submit bug reports and feature requests to
% \protect\url{https://github.com/langsci/langsci-avm/issues}.
% }}
-% \date{Version 0.2 -- 29th June 2020}
+% \date{Version 0.2.1 -- 15th July 2020}
% \maketitle
% \frenchspacing
% \begin{documentation}
@@ -575,7 +575,7 @@ Please report any bugs or feature requests to
%
% \begin{macrocode}
\ProvidesExplPackage {langsci-avm}
- {2020-06-29} {0.2}
+ {2020-07-15} {0.2.1}
{AVMs and feature structures in LaTeX3}
% \end{macrocode}
% \begin{macro}{\avm}
@@ -607,13 +607,13 @@ Please report any bugs or feature requests to
\keys_define:nn { avm }
{
- stretch .code:n = {\def\arraystretch{#1}},
+ stretch .tl_set:N = \l__avm_arraystretch_tl,
stretch .initial:n = {0.9},
- columnsep .dim_set:N = \tabcolsep,
+ columnsep .dim_set:N = \l__avm_tabcolsep_dim,
columnsep .initial:n = {.5ex},
- delimfactor .int_set:N = \delimiterfactor,
+ delimfactor .int_set:N = \l__avm_delimfactor_int,
delimfactor .initial:n = {1000},
- delimfall .dim_set:N = \delimitershortfall,
+ delimfall .dim_set:N = \l__avm_delimshortfall_dim,
delimfall .initial:n = {0pt},
attributes .code:n = {\cs_set:Nn \__avm_font_attribute: {#1}},
attributes .initial:n = {\scshape},
@@ -826,6 +826,10 @@ Please report any bugs or feature requests to
\cs_new:Nn \__avm_initialise_document_commands:
{
+ \def\arraystretch{\tl_use:N \l__avm_arraystretch_tl}
+ \tabcolsep=\l__avm_tabcolsep_dim
+ \delimiterfactor=\l__avm_delimfactor_int
+ \delimitershortfall=\l__avm_delimshortfall_dim
\cs_if_exist:NTF \tag
{ \RenewDocumentCommand{\tag}{m}{ \__avm_controls_tag:n {##1} } }
{ \NewDocumentCommand{\tag}{m}{ \__avm_controls_tag:n {##1} } }
diff --git a/Master/texmf-dist/tex/latex/langsci-avm/langsci-avm.sty b/Master/texmf-dist/tex/latex/langsci-avm/langsci-avm.sty
index a5249d69619..e7908b7d273 100644
--- a/Master/texmf-dist/tex/latex/langsci-avm/langsci-avm.sty
+++ b/Master/texmf-dist/tex/latex/langsci-avm/langsci-avm.sty
@@ -46,7 +46,7 @@
%% ------------------------------------------------------------------------------
\RequirePackage{xparse,array}
\ProvidesExplPackage {langsci-avm}
- {2020-06-29} {0.2}
+ {2020-07-15} {0.2.1}
{AVMs and feature structures in LaTeX3}
\NewDocumentCommand{\avm}{ O{} +m }
{
@@ -64,13 +64,13 @@
\keys_define:nn { avm }
{
- stretch .code:n = {\def\arraystretch{#1}},
+ stretch .tl_set:N = \l__avm_arraystretch_tl,
stretch .initial:n = {0.9},
- columnsep .dim_set:N = \tabcolsep,
+ columnsep .dim_set:N = \l__avm_tabcolsep_dim,
columnsep .initial:n = {.5ex},
- delimfactor .int_set:N = \delimiterfactor,
+ delimfactor .int_set:N = \l__avm_delimfactor_int,
delimfactor .initial:n = {1000},
- delimfall .dim_set:N = \delimitershortfall,
+ delimfall .dim_set:N = \l__avm_delimshortfall_dim,
delimfall .initial:n = {0pt},
attributes .code:n = {\cs_set:Nn \__avm_font_attribute: {#1}},
attributes .initial:n = {\scshape},
@@ -234,6 +234,10 @@
\cs_new:Nn \__avm_initialise_document_commands:
{
+ \def\arraystretch{\tl_use:N \l__avm_arraystretch_tl}
+ \tabcolsep=\l__avm_tabcolsep_dim
+ \delimiterfactor=\l__avm_delimfactor_int
+ \delimitershortfall=\l__avm_delimshortfall_dim
\cs_if_exist:NTF \tag
{ \RenewDocumentCommand{\tag}{m}{ \__avm_controls_tag:n {##1} } }
{ \NewDocumentCommand{\tag}{m}{ \__avm_controls_tag:n {##1} } }