diff options
author | Karl Berry <karl@freefriends.org> | 2016-05-04 21:01:14 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2016-05-04 21:01:14 +0000 |
commit | 6e6b00930df3ed6b7e295b3b0ed3ef024686a9de (patch) | |
tree | 1077a504661c10169fca0c97aa98d339297c06b0 | |
parent | 231ee51d8d56184431d4c5d9aed9119099e95fcd (diff) |
tasks (4may16)
git-svn-id: svn://tug.org/texlive/trunk@40888 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/texmf-dist/doc/latex/tasks/README | 2 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/tasks/tasks_en.pdf | bin | 460111 -> 459630 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/tasks/tasks_en.tex | 8 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/tasks/tasks.cfg | 2 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/tasks/tasks.sty | 9 |
5 files changed, 11 insertions, 10 deletions
diff --git a/Master/texmf-dist/doc/latex/tasks/README b/Master/texmf-dist/doc/latex/tasks/README index 44cbc24ce37..e48a0e7c818 100644 --- a/Master/texmf-dist/doc/latex/tasks/README +++ b/Master/texmf-dist/doc/latex/tasks/README @@ -1,5 +1,5 @@ -------------------------------------------------------------------------- -the TASKS package v0.11 2016/05/03 +the TASKS package v0.11a 2016/05/04 Horizontal columned lists. diff --git a/Master/texmf-dist/doc/latex/tasks/tasks_en.pdf b/Master/texmf-dist/doc/latex/tasks/tasks_en.pdf Binary files differindex 3d917f069e5..5aa33732721 100644 --- a/Master/texmf-dist/doc/latex/tasks/tasks_en.pdf +++ b/Master/texmf-dist/doc/latex/tasks/tasks_en.pdf diff --git a/Master/texmf-dist/doc/latex/tasks/tasks_en.tex b/Master/texmf-dist/doc/latex/tasks/tasks_en.tex index 30023ac9729..35b56f74a26 100644 --- a/Master/texmf-dist/doc/latex/tasks/tasks_en.tex +++ b/Master/texmf-dist/doc/latex/tasks/tasks_en.tex @@ -290,7 +290,8 @@ following ones that can be set using a setup command: item. \keyval{item-format}{code}\Default \sinceversion{0.11}Can be used to apply a formatting like, \eg, - \cs*{bfseries} to the items. + \cs*{bfseries} to the items. This may be a macro accepting the item as + mandatory argument. \keyval{item-indent}{dim}\Default{2.5em} \sinceversion{0.9a}The indent of an item, \ie, the horizontal space available for both label and label-offset. If @@ -406,9 +407,8 @@ already on page~\pageref{debug}): \end{example} \section{Available Instances}\label{sec:tasks:instances} -When you use the package option \option{more} of the \Tasks\ package or load -\ExSheets\ with the \option{load-tasks} option there are currently three -additional instances for the \code{tasks} object available: +There are currently three additional instances for the \code{tasks} object +available: \begin{description} \item[itemize] uses \cs*{labelitemi} as labels. \item[enumerate] enumerates the items with 1., 2., \ldots diff --git a/Master/texmf-dist/tex/latex/tasks/tasks.cfg b/Master/texmf-dist/tex/latex/tasks/tasks.cfg index 0aa10ea09e4..7a62d42383f 100644 --- a/Master/texmf-dist/tex/latex/tasks/tasks.cfg +++ b/Master/texmf-dist/tex/latex/tasks/tasks.cfg @@ -8,7 +8,7 @@ % Web: https://github.com/cgnieder/tasks/ % E-Mail: contact@mychemistry.eu % -------------------------------------------------------------------------- -% Copyright 2013-2015 Clemens Niederberger +% Copyright 2013-2016 Clemens Niederberger % % This work may be distributed and/or modified under the % conditions of the LaTeX Project Public License, either version 1.3 diff --git a/Master/texmf-dist/tex/latex/tasks/tasks.sty b/Master/texmf-dist/tex/latex/tasks/tasks.sty index 435e30dcb71..ce79f301fba 100644 --- a/Master/texmf-dist/tex/latex/tasks/tasks.sty +++ b/Master/texmf-dist/tex/latex/tasks/tasks.sty @@ -29,8 +29,8 @@ \ExplSyntaxOn \tl_const:Nn \c_tasks_name_tl {tasks} -\tl_const:Nn \c_tasks_date_tl {2016/05/03} -\tl_const:Nn \c_tasks_version_tl {0.11} +\tl_const:Nn \c_tasks_date_tl {2016/05/04} +\tl_const:Nn \c_tasks_version_tl {0.11a} \tl_const:Nn \c_tasks_info_tl {Horizontal columned lists} \ProvidesExplPackage @@ -602,6 +602,7 @@ { debug .bool_set:N = \l__tasks_debug_bool , style .tl_set:N = \l__tasks_instance_tl , + style .initial:n = alphabetize , counter-format .tl_set:N = \l__tasks_custom_label_pattern_tl , label .code:n = \bool_set_true:N \l__tasks_custom_label_bool @@ -638,8 +639,7 @@ { \vspace {\l__tasks_before_list_skip} } \list {} { - \keys_set:nn {tasks/list} { style = alphabetize , #2 } - % \keys_set:nn {tasks/list} {#2} + \keys_set:nn {tasks/list} {#2} \dim_set:Nn \leftmargin {0pt} \dim_set:Nn \rightmargin {0pt} } @@ -750,3 +750,4 @@ - some changes to how the list is displayed, especially regarding spacing -- it now better resembles the standard lists +2016/05/04 v0.11a - enable `style' option globally again |