latex3 / babel

The babel system for LaTeX, LuaLaTeX and XeLaTeX
LaTeX Project Public License v1.3c
123 stars 34 forks source link

`\ShowLocaleProporties` not available with `babel` 2023/12/06 v3.98? #273

Closed dbitouze closed 6 months ago

dbitouze commented 6 months ago

Despite “Showing locale properties” in https://latex3.github.io/babel/news/whats-new-in-babel-3.98.html, \ShowLocaleProporties isn't documented in the documentation of babel v3.98 and the compilation of the following MCE:

\listfiles

\documentclass[french]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\ShowLocaleProporties
\begin{document}
Test.
\end{document}

leads to:

[...]
! Undefined control sequence.
<recently read> \ShowLocaleProporties 

l.18 \ShowLocaleProporties

(/usr/local/texlive/2023/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def)
(./test.aux) [1{/usr/local/texlive/2023/texmf-var/fonts/map/pdftex/updmap/pdfte
x.map}{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/cm-super/cm-super-t1.
enc}] (./test.aux)

 *File List*
 article.cls    2023/05/17 v1.4n Standard LaTeX document class
  size10.clo    2023/05/17 v1.4n Standard LaTeX file (size option)
 fontenc.sty    2021/04/29 v2.0v Standard LaTeX package
   babel.sty    2023/12/06 v3.98 The Babel package
  french.ldf    2023/03/08 v3.5q French support from the babel system
babel-french.tex
scalefnt.sty    
  keyval.sty    2022/05/29 v1.15 key=value parser (DPC)
l3backend-pdftex.def    2023-11-09 L3 backend support: PDF output (pdfTeX)
 ***********
mbertucci47 commented 6 months ago

I think it's just a typo in the doc, it should be \ShowLocaleProperties

jbezos commented 6 months ago

Oops! And have to be followed by the locale name, too:

\ShowLocaleProperties{french}
dbitouze commented 6 months ago

I think it's just a typo in the doc, it should be \ShowLocaleProperties

Sigh... I should have noticed it myself.