John H. Lienhard submitted an update to the
mitthesis
package.
Version: 1.19 2025-01-28
License: mit
Summary description: A LaTeX template for an MIT thesis
Announcement text:
----------------------------------------------------------------------
This release includes additional changes to better support tagged pdf.
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/mitthesis
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/latex/contrib/mitthesis/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Maxime Chupin submitted the
mp-neuralnetwork
package.
Version: 0.1 2025-01-27
License: lppl1.3c
Summary description: Drawing artificial neural networks with METAPOST and METAOBJ
Announcement text:
----------------------------------------------------------------------
This METAPOST package allows to draw artificial neural networks.
It is based on the METAOBJ package which provides many tools to
draw and arrange nodes.
This package is in beta version—do not hesitate to report bugs,
as well as requests for improvement.
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/mp-neuralnetwork
The package’s files themselves can be inspected at
https://mirrors.ctan.org/graphics/metapost/contrib/macros/mp-neuralnetwork/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Landon D. C. Elkind submitted an update to the
principia
package.
Version number: 3.1 2025-01-28
License type: lppl1.3c
Summary description: Notations for typesetting the “Principia Mathematica”
Announcement text:
----------------------------------------------------------------------
Minor correction to principia package (current version is 3.1)
----------------------------------------------------------------------
This package is located at
https://mirrors.ctan.org/macros/latex/contrib/principia
More information is at
https://www.ctan.org/pkg/principia
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Erik Braun
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Brian Dunn submitted an update to the
lwarp
package.
Version number: 0.918 2025-01-28
License type: lppl1.3
Summary description: Converts LaTeX to HTML
Announcement text:
----------------------------------------------------------------------
Added an automatic vertical scroll bar to the sideTOC.
Updated mathtools, mismath, siunitx.
----------------------------------------------------------------------
This package is located at
https://mirrors.ctan.org/macros/latex/contrib/lwarp
More information is at
https://www.ctan.org/pkg/lwarp
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Erik Braun
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Matthias Fresacher submitted an update to the
pmdraw
package.
Version: 1.7 2025-01-28
License: lppl1.3
Summary description: Draw elements of the diagram monoids
Announcement text:
----------------------------------------------------------------------
Now allows default draw options of some keys to be appended to
instead of overwritten by individual instances.
Fixed and updated minor details in manual.
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/pmdraw
The package’s files themselves can be inspected at
https://mirrors.ctan.org/graphics/pgf/contrib/pmdraw/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Oliver Kopp submitted an update to the
biblatex-lni
package.
Version: 0.7 2025-01-27
License: lppl1.3
Summary description: LNI style for BibLaTeX
Announcement text:
----------------------------------------------------------------------
Adapted to latest LNI requirements
### Changed
* Change `maxcitenames` and `maxbibnames` to 3
* Change bibstring `urlseen` to `visited on\addspace`
* Suppress ISBN and doi
* Remove `URL` output
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/biblatex-lni
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/latex/contrib/biblatex-contrib/biblatex-lni/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Vít Starý Novotný submitted an update to the
markdown
package.
Version: 3.10.0-0-g626df6ad 2025-01-27
License: lppl1.3c
Summary description: Converting and rendering markdown documents inside TeX
Announcement text:
----------------------------------------------------------------------
## 3.10.0
Development:
- Add a built-in theme `witiko/diagrams@v2` for drawing different types of
diagrams. (#448, #514, #531, #542, [matrix.org][matrix-542], a9cadc41,
578e64d6, 22efe7f4, a3c2d93b, originally suggested by @anubane)
[matrix-542]: https://matrix.to/#/!UeAwznpYwwsinVTetR:matrix.org/$CpfhKJT8DAkzH7Rx6ynV1BK…
Here is an example LaTeX document using the new theme:
```` tex
\documentclass{article}
\usepackage[import=witiko/diagrams@v2, relativeReferences]{markdown}
\begin{document}
\begin{markdown}
``` dot {caption="An example directed graph" width=12cm #dot}
digraph tree {
margin = 0;
rankdir = "LR";
latex -> pmml;
latex -> cmml;
pmml -> slt;
cmml -> opt;
cmml -> prefix;
cmml -> infix;
pmml -> mterms [style=dashed];
cmml -> mterms;
latex [label = "LaTeX"];
pmml [label = "Presentation MathML"];
cmml [label = "Content MathML"];
slt [label = "Symbol Layout Tree"];
opt [label = "Operator Tree"];
prefix [label = "Prefix"];
infix [label = "Infix"];
mterms [label = "M-Terms"];
}
```
``` mermaid {caption="An example mindmap" width=9cm #mermaid}
mindmap
root )base-idea(
sub<br/>idea 1
((?))
sub<br/>idea 2
((?))
sub<br/>idea 3
((?))
sub<br/>idea 4
((?))
```
``` plantuml {caption="An example UML sequence diagram" width=7cm #plantuml}
@startuml
' Define participants (actors)
participant "Client" as C
participant "Server" as S
participant "Database" as DB
' Diagram title
title Simple Request-Response Flow
' Messages
C -> S: Send Request
note over S: Process request
alt Request is valid
S -> DB: Query Data
DB -> S: Return Data
S -> C: Respond with Data
else Request is invalid
S -> C: Return Error
end
@enduml
```
See the diagrams in figures <#dot>, <#mermaid>, and <#plantuml>.
\end{markdown}
\end{document}
````````
You may use the expl3 prop `\g_markdown_diagrams_infostrings_prop` to
register other types of diagrams.
- Add option `jekyllDataKeyValue` for routing YAML metadata to expl3 key–values.
(#77, #517, [matrix.org][matrix-517], #539, [matrix.org][matrix-539],
f57a8c45, originally suggested by @TeXhackse)
While the primary intended users of this new option are package authors,
writers can also use this feature to configure various (La)TeX packages
from YAML:
``` tex
\documentclass{article}
\usepackage{chemformula, lua-widow-control, phonenumbers}
\usepackage[raw_attribute, tex_math_dollars]{markdown}
\begin{document}
\begin{markdown}[jekyll_data, jekyll_data_key_value]
---
chemformula:
decimal-marker: $\cdot$
lua-widow-control:
draft: true
showcolours: true
phonenumbers:
area-code: place
area-code-sep: space
country: UK
---
Phone number: `\phonenumber{02079460345}`{=tex}
Chemical reaction: `\ch{A + B -> 3.14159}`{=tex}
\end{markdown}
\end{document}
```
This won't work for every package but many packages use expl3 key–values
internally for their configuration. If you are curious if your favorite
package does, look for `\keys_define` in its source code.
For more examples, see #517.
[matrix-517]: https://matrix.to/#/!UeAwznpYwwsinVTetR:matrix.org/$WzqBd_p3KB766wqbFBLbn3o…
[matrix-539]: https://matrix.to/#/!UeAwznpYwwsinVTetR:matrix.org/$VZbdWB2EpHeg290MGsYsbUE…
Fixes:
- Allow using the options `linkAttributes` and `notes` together. (#543, #544)
Distribution:
- Alias the command `markdown-cli` as `markdown2tex`.
(#545, #546, [tex-live(a)tug.org][tex-live-2025-01-051051])
[tex-live-2025-01-051051]: https://tug.org/pipermail/tex-live/2025-January/051051.html
Docker:
- Produce Docker image `witiko/markdown:latest-minimal` with a minimum
installation of the Markdown package for TeX based on the Docker image
`texlive/texlive:latest-minimal`. (61a3aa2b)
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/markdown
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/generic/markdown/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Jasper Habicht submitted an update to the
jsonparse
package.
Version: 1.0.3 2025-01-26
License: lppl1.3c
Summary description: Parse, store and access JSON data in LaTeX documents
Announcement text:
----------------------------------------------------------------------
Expandable test for JSON numbers.
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/jsonparse
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/latex/contrib/jsonparse/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Jasper Habicht submitted an update to the
rpgicons
package.
Version: 1.8.6 2025-01-22
License: lppl1.3c
Summary description: Icons for tabletop role-playing games
Announcement text:
--------------------------------------------------------------------------------
Fixes in documentation.
--------------------------------------------------------------------------------
This package is located at
https://mirrors.ctan.org/macros/latex/contrib/rpgicons
More information is at
https://www.ctan.org/pkg/rpgicons
--------------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Manfred Lotz
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs .
Charles Staats III submitted an update to the
asypictureB
package.
Version: 0.4 2025-01-26
License: lppl1.3c
Summary description: User-friendly integration of Asymptote into LaTeX
Announcement text:
----------------------------------------------------------------------
Mostly bug fixes
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/asypictureb
The package’s files themselves can be inspected at
https://mirrors.ctan.org/graphics/asypictureb/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
John H. Lienhard submitted an update to the
asmeconf
package.
Version number: 1.39 2025-01-26
License type: mit
Summary description: A LaTeX template for ASME conference papers
Announcement text:
----------------------------------------------------------------------
The asmeconf class is a LaTeX template to format conference papers published by
the American Society of Mechanical
Engineers.
This version includes changes to support tagged pdf. The title and author blocks
are recoded into expl3 with adjustments to support tagged pdf. The metalogo and
xcoffins packages have been dropped in favor of the hologo package and direct
use of expl3 coffins.
An experimental (and undocumented) option [captionpatch] supports tagging of the
caption package, which is loaded by the class. With this option and current
LaTeX tagging support, asmeconf pdfs can validate as PDF 2.0/A-4F provided that
[spanish] option is omitted. (PDF 2.0/UA-2 validation is not possible at
present.)
Other changes include: revisions internal some variable names; better
segregation of packages loaded for compatibility; and minor changes to
asmewide.sty.
----------------------------------------------------------------------
This package is located at
https://mirrors.ctan.org/macros/latex/contrib/asmeconf
More information is at
https://www.ctan.org/pkg/asmeconf
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Erik Braun
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Marei Peischl submitted an update to the
tuda-ci
bundle.
Version: 4.00 2025-01-26
License: lppl1.3c
Summary description: LaTeX templates of Technische Universität Darmstadt
Announcement text:
----------------------------------------------------------------------
Complete refactoring and extended documentation.
This is the first version including English document templates.
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/tuda-ci
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/latex/contrib/tuda-ci/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Nicola Talbot submitted an update to the
tracklang
package.
Version: 1.6.4 2025-01-26
License: lppl1.3
Summary description: Language and dialect tracker
Announcement text:
--------------------------------------------------------------------------------
tracklang.sty now checks for babel's \LocaleForEach (and so can pick up
languages that have been specified with \babelprovide).
--------------------------------------------------------------------------------
This package is located at
https://mirrors.ctan.org/macros/generic/tracklang
More information is at
https://www.ctan.org/pkg/tracklang
--------------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Manfred Lotz
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs .
Boris Veytsman submitted an update to the
aomart
package.
Version: 1.32
License: lppl1.3
Summary description: Typeset articles for the Annals of Mathematics
Announcement text:
----------------------------------------------------------------------
New formatting for enumerate and itemize.
Rewritten editorial comments system: audiences and highlighting.
Handling of color illustrations in screen edition and grayscale.
Illustrations in print - including bw orcid logo in print mode.
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/aomart
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/latex/contrib/aomart/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Cédric Pierquet submitted an update to the
TangramTikZ
package.
Version number: 0.1.7 2025-01-25
License type: lppl1.3c
Summary description: Tangram puzzles, with TikZ
Announcement text:
----------------------------------------------------------------------
New models + Bufixes for english version
----------------------------------------------------------------------
This package is located at
https://mirrors.ctan.org/graphics/pgf/contrib/tangramtikz
More information is at
https://www.ctan.org/pkg/tangramtikz
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Erik Braun
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Cédric Pierquet submitted an update to the
calculatoritems
package.
Version: 0.1.1 2025-01-25
License: lppl1.3c
Summary description: Insert menus/items for classic calculators
Announcement text:
----------------------------------------------------------------------
Simple keys command + macros for "fontkeys" (with external .ttf)
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/calculatoritems
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/latex/contrib/calculatoritems/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Javier Bezos López submitted an update to the
babel
package.
Version: 25.2 2025-01-25
License: lppl1.3
Summary description: Multilingual support for LaTeX, LuaLaTeX, XeLaTeX, and Plain TeX
Announcement text:
----------------------------------------------------------------------
Changes in version 25.2 are described in:
https://latex3.github.io/babel/news/whats-new-in-babel-25.2.html
Here is a summary:
* Fixes in Welsh and \BCPdata.
* Locales: Old Uighur, Algerian Arabic.
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/babel
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/latex/required/babel/base/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Herbert Voß submitted an update to the
hvindex
package.
Version: 0.04a 2025-01-24
License: lppl
Summary description: Support for indexing
Announcement text:
----------------------------------------------------------------------
Small fix in the documentation
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/hvindex
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/latex/contrib/hvindex/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Nicola Talbot submitted an update to the
bib2gls
package.
Version: 4.2 2025-01-24
License: gpl3+
Summary description: Command line application to convert .bib files to glossaries-extra.sty resource files
Announcement text:
----------------------------------------------------------------------
Corrected fallback field concatenation check for options like
abbreviation-sort-fallback.
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/bib2gls
The package’s files themselves can be inspected at
https://mirrors.ctan.org/support/bib2gls/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Andrew Mathas submitted an update to the
aTableau
package.
Version: 2.1.0 2025-01-24
License: lppl1.3c
Summary description: A LaTeX package for symmetric group combinatorics
Announcement text:
----------------------------------------------------------------------
Added support for tableaux as subscripts + corrections to the manual
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/atableau
The package’s files themselves can be inspected at
https://mirrors.ctan.org/graphics/pgf/contrib/atableau/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Matthias Fresacher submitted an update to the
pmdraw
package.
Version number: 1.6 2025-01-24
License type: lppl1.3
Summary description: Draw elements of the diagram monoids
Announcement text:
----------------------------------------------------------------------
Added global keys for style and fixed minor bugs and other improvements to the manual.
----------------------------------------------------------------------
This package is located at
https://mirrors.ctan.org/graphics/pgf/contrib/pmdraw
More information is at
https://www.ctan.org/pkg/pmdraw
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Erik Braun
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Alceu Frigeri submitted an update to the
tikzdotncross
package.
Version: 1.2c 2025-01-23
License: lppl1.3c gpl3+
Summary description: Marking coordinates and crossing paths
Announcement text:
----------------------------------------------------------------------
Correcting package dependencies snafu (issue #1).
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/tikzdotncross
The package’s files themselves can be inspected at
https://mirrors.ctan.org/graphics/pgf/contrib/tikzdotncross/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Jasper Habicht submitted an update to the
jsonparse
package.
Version: 1.0.2 2025-01-23
License: lppl1.3c
Summary description: Parse, store and access JSON data in LaTeX documents
Announcement text:
--------------------------------------------------------------------------------
Support for Unicode surrogate pairs.
--------------------------------------------------------------------------------
This package is located at
https://mirrors.ctan.org/macros/latex/contrib/jsonparse
More information is at
https://www.ctan.org/pkg/jsonparse
--------------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Manfred Lotz
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs .
Gerd Neugebauer submitted an update to the
crossword
package.
Version: 1.13
License: other-free
Summary description: Typeset crossword puzzles
Announcement text:
--------------------------------------------------------------------------------
This release contains a minor fix of typesetting solutions for Sudoku.
--------------------------------------------------------------------------------
This package is located at
https://mirrors.ctan.org/macros/latex/contrib/gene/crossword
More information is at
https://www.ctan.org/pkg/crossword
--------------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Manfred Lotz
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs .
Brian Dunn submitted an update to the
metalogox
package.
Version: 1.07 2025-01-23
License: lppl1.3
Summary description: Adjust TeX logos, with font detection
Announcement text:
----------------------------------------------------------------------
Added detection for arsenal font.
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/metalogox
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/latex/contrib/metalogox/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Andrew Mathas submitted the
aTableau
package.
Version: 2.0.2 2025-01-22
License: lppl1.3c
Summary description: A LaTeX package for symmetric group combinatorics
Announcement text:
----------------------------------------------------------------------
A LaTeX package for symmetric group combinatorics, with commands
for Young diagrams, tableaux, tabloids, skew tableaux, shifted tableaux,
ribbon tableaux, multitableaux, abacuses.
These commands are intended to be easy to use and easy to customise.
In particular, TikZ styling can be added to the components of
these diagrams and common conventions and idioms are supported
using a key-value interface.
All diagrams can be used as standalone commands or as part of
tikzpicture environments.
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/atableau
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/latex/contrib/atableau/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Nicola Talbot submitted an update to the
tracklang
package.
Version: 1.6.3 2025-01-22
License: lppl1.3
Summary description: Language and dialect tracker
Announcement text:
----------------------------------------------------------------------
New commands:
\AnyTrackedRegions
\ForEachTrackedRegion
\TrackLangRequireDialectOmitOnlyRegion
\TrackLangRequireDialectOmitDialectLabelOmit
\TrackLangRequireDialectOmitDialectLabelOmitOnlyRegion
\IfTrackedLanguageFileExistsOmitOnlyRegion
\IfTrackedLanguageFileExistsOmitDialectLabel
\IfTrackedLanguageFileExistsOmitDialectLabelOmitOnlyRegion
bug fix: \IfTrackedLanguageFileExists tests for tags with region were using script instead of region
bug fix: files that are input don't show up with \listfiles in LaTeX documents.
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/tracklang
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/generic/tracklang/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Andreas Matthias submitted an update to the
pdfpages
package.
Version: 0.6d 2025-01-20
License: lppl1.3c
Summary description: Include PDF documents in LaTeX
Announcement text:
----------------------------------------------------------------------
Improved support of booklets for documents with uncommon paper sizes.
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/pdfpages
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/latex/contrib/pdfpages/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Hugh submitted the
convert-jpfonts
package.
Version: 1.0.1
License: lppl1.3c
Summary description: Convert half-width Japanese to full-width beautifully
Announcement text:
----------------------------------------------------------------------
This package enables you to output Japanese half-width characters in full-width characters beautifully.
You can get "ABC" by typing \fonts{ABC}, and also you can specify its font.
This will help you especially when alphabet characters don't render properly in a Japanese font.
The main packages used in convert-jpfonts.sty are ifthen, xparse, and calc.
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/convert-jpfonts
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/latex/contrib/convert-jpfonts/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Jasper Habicht submitted an update to the
jsonparse
package.
Version number: 1.0.1 2025-01-21
License type: lppl1.3c
Summary description: Parse, store and access JSON data in LaTeX documents
Announcement text:
----------------------------------------------------------------------
Fixes in documentation. User command for filtering.
----------------------------------------------------------------------
This package is located at
https://mirrors.ctan.org/macros/latex/contrib/jsonparse
More information is at
https://www.ctan.org/pkg/jsonparse
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Erik Braun
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Joseph Wright submitted an update to the
siunitx
package.
Version: 3.4.4 2025-01-21
License: lppl1.3c
Summary description: A comprehensive (SI) units package
Announcement text:
--------------------------------------------------------------------------------
## [v3.4.4] - 2025-01-21
### Fixed
- Handling of mixed exponents in converting complex values from polar to
Cartesian form
(see issue [\#774](https://github.com/josephwright/siunitx/issues/774))
## [v3.4.3] - 2025-01-20
### Fixed
- Correct behavior of `inline-per-mode = symbol` with an alternative setting
for `display-per-mode` when units are entirely in the denominator
(see issue [\#765](https://github.com/josephwright/siunitx/issues/765))
--------------------------------------------------------------------------------
This package is located at
https://mirrors.ctan.org/macros/latex/contrib/siunitx
More information is at
https://www.ctan.org/pkg/siunitx
--------------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Manfred Lotz
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs .
Gabriel Ruprecht submitted an update to the
fillpages
package.
Version: 1.1.0 2025-01-21
License: lppl1.3
Summary description: Fill up the page count to a certain number (e.g. divisible by 4)
Announcement text:
----------------------------------------------------------------------
Added a little feature to set the default page (instead of simple newpages).
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/fillpages
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/latex/contrib/fillpages/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Arthur Rosendahl submitted an update to the
hyph-utf8
package.
Version: 2025-01-20
License: mit
Summary description: Hyphenation patterns expressed in UTF-8
Announcement text:
----------------------------------------------------------------------
Major update to the Portuguese patterns.
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/hyph-utf8
The package’s files themselves can be inspected at
https://mirrors.ctan.org/language/hyph-utf8/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Gabriel Ruprecht submitted an update to the
liederbuch
package.
Version: 1.1.0 2025-01-20
License: lppl1.3
Summary description: A LaTeX package for storing songs or other content, and repeated reuse in documents
Announcement text:
----------------------------------------------------------------------
printLiederbuch had a bug (due to last minute naming changes in v.1.0.0).
While I was on it, I included new features:
- babel support
- hyperref support
- \listofsongs feature, which creates a list of all included songs
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/liederbuch
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/latex/contrib/liederbuch/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Ezequiel Santos submitted the
prisma-flow-diagram
package.
Version: 1.0.0
License: lppl1.3c
Summary description: This package provides an abstraction for creating PRISMA 2009 flow diagrams in LaTeX
Announcement text:
--------------------------------------------------------------------------------
A simple abstraction to create Prisma 2009 flow charts using tikz.
--------------------------------------------------------------------------------
This package is located at
https://mirrors.ctan.org/macros/latex/contrib/prisma-flow-diagram
More information is at
https://www.ctan.org/pkg/prisma-flow-diagram
--------------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Manfred Lotz
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs .
Cédric Pierquet submitted the
tikz-triminos
package.
Version number: 0.1.0 2025-01-20
License type: lppl1.3c
Summary description: Create triminos, made with TikZ
Announcement text:
----------------------------------------------------------------------
Create triminos with TikZ.
----------------------------------------------------------------------
This package is located at
https://mirrors.ctan.org/graphics/pgf/contrib/tikz-triminos
More information is at
https://www.ctan.org/pkg/tikz-triminos
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Erik Braun
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Vít Starý Novotný submitted an update to the
expltools
package.
Version: 2025-01-20
License: lppl1.3c gpl2+
Summary description: Development tools for expl3 programmers
Announcement text:
----------------------------------------------------------------------
## expltools 2025-01-20
### explcheck v0.6.1
#### Fixes
- Correctly read option `warnings_are_errors` from file `.explcheckrc`.
(e351fdd)
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/expltools
The package’s files themselves can be inspected at
https://mirrors.ctan.org/support/expltools/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Antonis Tsolomitis submitted an update to the
NewComputerModern
package.
Version: 7.0.1 2025-01-19
License: gfl
Summary description: Computer Modern fonts including matching non-latin alphabets
Announcement text:
--------------------------------------------------------------------------------
Math kerning introduced for Latin Italic Math Capitals
and Capital Calligraphics with period and comma.
Several metrics bug fixes.
--------------------------------------------------------------------------------
This package is located at
https://mirrors.ctan.org/fonts/newcomputermodern
More information is at
https://www.ctan.org/pkg/newcomputermodern
--------------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Manfred Lotz
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs .
Udi Fogiel submitted the
unibidi-lua
package.
Version: 0.1 2025-01-19
License: gpl2
Summary description: Unicode bidi algorithm implementation for various LuaTeX formats
Announcement text:
----------------------------------------------------------------------
Unicode bidi algorithm implementation for various LuaTeX formats.
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/unibidi-lua
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/luatex/generic/unibidi-lua/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Jasper Habicht submitted an update to the
jsonparse
package.
Version: 1.0.0 2025-01-20
License: lppl1.3c
Summary description: Parse, store and access JSON data in LaTeX documents
Announcement text:
--------------------------------------------------------------------------------
Bug fixes, streamlining of code, unification of command structure.
--------------------------------------------------------------------------------
This package is located at
https://mirrors.ctan.org/macros/latex/contrib/jsonparse
More information is at
https://www.ctan.org/pkg/jsonparse
--------------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Manfred Lotz
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs .
Javier Bezos López submitted an update to the
enumitem
package.
Version: 3.10 2025-01-19
License: mit
Summary description: Control layout of itemize, enumerate, description
Announcement text:
----------------------------------------------------------------------
A maintenance release, with a couple of fixes:
\value* in ref=, and a more robust resume*.
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/enumitem
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/latex/contrib/enumitem/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
LianTze Lim submitted an update to the
beamertheme-mirage
package.
Version number: 1.1.1 2025-01-19
License type: lppl1.3c
Summary description: A beamer theme with dark and light colour schemes
Announcement text:
----------------------------------------------------------------------
This is a bugfix release.
"Mirage" is a beamer theme inspired by the album art of Zhou Shen's song of the
same name.
Two modes are available: the default with a dark look; and a light mode is
available. Sample .tex files for beamer presentations and posters are provided.
----------------------------------------------------------------------
This package is located at
https://mirrors.ctan.org/macros/latex/contrib/beamer-contrib/themes/beamert…
More information is at
https://www.ctan.org/pkg/beamertheme-mirage
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Erik Braun
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
John H. Lienhard submitted an update to the
mitthesis
package.
Version: 1.18 2025-01-17
License: mit
Summary description: A LaTeX template for an MIT thesis
Announcement text:
----------------------------------------------------------------------
The mitthesis class formats an MIT thesis or dissertation
according to the current requirements of the MIT Libraries.
This template is appropriate for MIT theses of all types.
This class was new in 2023, and it is a complete replacement
for the original mitthesis.cls written in the 1980s.
This update includes various coding changes to accommodate
tagged pdf, mainly around the title and abstract pages.
The tabbing environment on the title page is replaced by
a tabular environment.
Depending on which additional packages are used, mitthesis
documents generated with LuaLaTeX can be compatible with
PDF2/UA-2 (well-tagged PDF as validated by the Arlington model
and the veraPDF demo service); the sample cover pages and
documentation are included as UA-2.
Minor changes to the documentation and journal reference
formats are also included.
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/mitthesis
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/latex/contrib/mitthesis/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Christoph P. Neumann submitted an update to the
iaria-lite
package.
Version number: 0.6 2025-01-16
License type: lppl1.3c
Summary description: Write documents for the IARIA publications
Announcement text:
----------------------------------------------------------------------
Implement IARIA requirements for multiple citation keys in same cite command,
i.e., no spaces and no commas. Also, ensure IARIA-conforming captionsetup for
tables and figures, improving on the mechanism, now providing compatibility with
babel that intervenes with table label names. Added extdash for \-/ as a
breakable dash.
----------------------------------------------------------------------
This package is located at
https://mirrors.ctan.org/macros/latex/contrib/iaria-lite
More information is at
https://www.ctan.org/pkg/iaria-lite
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Erik Braun
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Christoph P. Neumann submitted an update to the
iaria
package.
Version number: 0.6 2025-01-16
License type: lppl1.3c
Summary description: Write documents for the IARIA publications
Announcement text:
----------------------------------------------------------------------
Implement IARIA requirements for multiple citation keys in same cite command,
i.e., no spaces and no commas. Also, ensure IARIA-conforming captionsetup for
tables and figures, improving on the mechanism, now providing compatibility with
babel that intervenes with table label names. Added extdash for \-/ as a
breakable dash.
----------------------------------------------------------------------
This package is located at
https://mirrors.ctan.org/macros/latex/contrib/iaria
More information is at
https://www.ctan.org/pkg/iaria
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Erik Braun
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Christoph P. Neumann submitted an update to the
cs-techrep
package.
Version number: 0.6 2025-01-16
License type: lppl1.3c
Summary description: Technical Reports in Computer Science and Software Engineering
Announcement text:
----------------------------------------------------------------------
Added package relsize, which allows for \textsmaller{..}. Changed \TODO command
to use todonotes.
----------------------------------------------------------------------
This package is located at
https://mirrors.ctan.org/macros/latex/contrib/cs-techrep
More information is at
https://www.ctan.org/pkg/cs-techrep
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Erik Braun
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
The LaTeX Project Team submitted an update to the
l3kernel-dev
package.
Version: 2025-01-18
License: lppl1.3c
Summary description: Development pre-release of l3kernel
Announcement text:
----------------------------------------------------------------------
### Changed
- Use a dedicated internal marker for `fp` and `int` expressions,
allowing use with LuaMetaTeX (see \#1518)
### Fixed
- Missing trailing period in `\tl_analysis_log:(N|n)` output (see \#1663)
- Some state variables weren't correctly reset by `\keys_define:nn`
and `\keys_set:nn` breaking some nested usages in edge cases
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/l3kernel-dev
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/latex-dev/required/l3kernel/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Joseph Wright submitted an update to the
siunitx
package.
Version: 3.4.2 2025-01-17
License: lppl1.3c
Summary description: A comprehensive (SI) units package
Announcement text:
----------------------------------------------------------------------
### Changed
- Suppress prefix conversion for angle units and `\percent` (see issue
[\#771](https://github.com/josephwright/siunitx/issues/771))
### Fixed
- Printing of exponent part in `\ang` (see issue
[\#769](https://github.com/josephwright/siunitx/issues/769))
- Parsing of exponent part in `\ang` (see issue
[\#770](https://github.com/josephwright/siunitx/issues/770))
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/siunitx
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/latex/contrib/siunitx/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs
Oliver Beery submitted an update to the
fontscale
package.
Version: 3.0.6 2025-01-17
License: lppl1.3c
Summary description: A flexible interface for setting font sizes
Announcement text:
----------------------------------------------------------------------
### Changed
- `\SetFontStep` now rounds the new font step to 5 decimal places
only when testing if it equals the font step of any font size command
from `\tiny` to `\Huge`.
----------------------------------------------------------------------
The package’s Catalogue entry can be viewed at
https://ctan.org/pkg/fontscale
The package’s files themselves can be inspected at
https://mirrors.ctan.org/macros/latex/contrib/fontscale/
------------------------------------------------------------------------
Thanks for the upload.
For the CTAN Team
Petra Rübe-Pugliese
------------------------------------------------------------------------
CTAN is run entirely by volunteers and supported by TeX user groups.
Please join a user group or donate to one, see https://ctan.org/lugs