diff options
author | Karl Berry <karl@freefriends.org> | 2023-06-16 20:41:40 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2023-06-16 20:41:40 +0000 |
commit | 055bc0449b5260efae4b4fc861d6d95088cf0740 (patch) | |
tree | c773e04ad81c1c67f7f2c6390a780c636525e9b2 | |
parent | 00fb839889239b67a752d52f9d0ebf5f2ab0c055 (diff) |
postnotes (16jun23)
git-svn-id: svn://tug.org/texlive/trunk@67383 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/texmf-dist/doc/latex/postnotes/CHANGELOG.md | 8 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/postnotes/postnotes-code.pdf | bin | 847740 -> 848203 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/postnotes/postnotes-doc.pdf | bin | 177584 -> 177629 bytes | |||
-rw-r--r-- | Master/texmf-dist/source/latex/postnotes/postnotes.dtx | 9 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/postnotes/postnotes.sty | 4 |
5 files changed, 18 insertions, 3 deletions
diff --git a/Master/texmf-dist/doc/latex/postnotes/CHANGELOG.md b/Master/texmf-dist/doc/latex/postnotes/CHANGELOG.md index 7cc16f8afbf..dc6811e52c6 100644 --- a/Master/texmf-dist/doc/latex/postnotes/CHANGELOG.md +++ b/Master/texmf-dist/doc/latex/postnotes/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog -## [Unreleased](https://github.com/gusbrs/postnotes/compare/v0.2.4...HEAD) +## [Unreleased](https://github.com/gusbrs/postnotes/compare/v0.2.5...HEAD) + +## [v0.2.5](https://github.com/gusbrs/postnotes/compare/v0.2.4...v0.2.5) (2023-06-16) + +### Fixed +- Ensure `\par` at the end of `\printpostnotes`, see + https://github.com/u-fischer/tagpdf/issues/68#issuecomment-1587343876 . ## [v0.2.4](https://github.com/gusbrs/postnotes/compare/v0.2.3...v0.2.4) (2023-06-12) diff --git a/Master/texmf-dist/doc/latex/postnotes/postnotes-code.pdf b/Master/texmf-dist/doc/latex/postnotes/postnotes-code.pdf Binary files differindex 392677b7590..46520b3bf62 100644 --- a/Master/texmf-dist/doc/latex/postnotes/postnotes-code.pdf +++ b/Master/texmf-dist/doc/latex/postnotes/postnotes-code.pdf diff --git a/Master/texmf-dist/doc/latex/postnotes/postnotes-doc.pdf b/Master/texmf-dist/doc/latex/postnotes/postnotes-doc.pdf Binary files differindex 11677d5e6c8..8f2ea4fdc65 100644 --- a/Master/texmf-dist/doc/latex/postnotes/postnotes-doc.pdf +++ b/Master/texmf-dist/doc/latex/postnotes/postnotes-doc.pdf diff --git a/Master/texmf-dist/source/latex/postnotes/postnotes.dtx b/Master/texmf-dist/source/latex/postnotes/postnotes.dtx index 03a43914527..cb7998fbea0 100644 --- a/Master/texmf-dist/source/latex/postnotes/postnotes.dtx +++ b/Master/texmf-dist/source/latex/postnotes/postnotes.dtx @@ -138,6 +138,7 @@ % kernel or newer. % % \begin{macrocode} +\NeedsTeXFormat{LaTeX2e} \providecommand\IfFormatAtLeastTF{\@ifl@t@r\fmtversion} \IfFormatAtLeastTF{2022-06-01} {} @@ -153,7 +154,7 @@ % % % \begin{macrocode} -\ProvidesExplPackage {postnotes} {2023-06-12} {0.2.4} +\ProvidesExplPackage {postnotes} {2023-06-16} {0.2.5} {Endnotes for LaTeX} % \end{macrocode} % @@ -1417,6 +1418,12 @@ \bool_if:NTF \l_@@_print_as_list_bool { \exp_args:Nx \end { \l_@@_print_env_tl } } { \group_end: } +% \end{macrocode} +% Ensure \cs{par} at the end of \cs{printopostnotes} (see +% \url{https://github.com/u-fischer/tagpdf/issues/68#issuecomment-1587343876}, +% thanks \contributor{Ulrike Fischer}). +% \begin{macrocode} + \par } % \end{macrocode} % Set \texttt{type_prev} for the next iteration. diff --git a/Master/texmf-dist/tex/latex/postnotes/postnotes.sty b/Master/texmf-dist/tex/latex/postnotes/postnotes.sty index 1e53b51878d..8039674ac09 100644 --- a/Master/texmf-dist/tex/latex/postnotes/postnotes.sty +++ b/Master/texmf-dist/tex/latex/postnotes/postnotes.sty @@ -42,6 +42,7 @@ %% %% ----------------------------------------------------------------------- %% +\NeedsTeXFormat{LaTeX2e} \providecommand\IfFormatAtLeastTF{\@ifl@t@r\fmtversion} \IfFormatAtLeastTF{2022-06-01} {} @@ -53,7 +54,7 @@ }% \endinput }% -\ProvidesExplPackage {postnotes} {2023-06-12} {0.2.4} +\ProvidesExplPackage {postnotes} {2023-06-16} {0.2.5} {Endnotes for LaTeX} \cs_new:Npn \__postnotes_data_name:n #1 { g__postnotes_ #1 _data_prop } @@ -678,6 +679,7 @@ \bool_if:NTF \l__postnotes_print_as_list_bool { \exp_args:Nx \end { \l__postnotes_print_env_tl } } { \group_end: } + \par } \tl_set:NV \l__postnotes_print_type_prev_tl \l__postnotes_print_type_curr_tl |