[plext パッケージ] \layoutcaption,\pcaption の変更予定について

pLaTeX / upLaTeX リリース 2018-12-01

- aminophen の投稿
返信数: 0
本日 platex と uplatex をリリースしました。

> [plext パッケージ] \layoutcaption,\pcaption の変更予定について
> 2018年 09月 24日(月曜日) 15:12 - aminophen の投稿

で書いたとおりの仕様変更とバグ修正が入ります。
添付は pLaTeX ニュースの PDF 版 (plnewsc12.pdf) です。

======

なお,本家 LaTeX の新しいバージョン (LaTeX2e 2018-12-01) が,おそらく今日リリースされると思われます。
この新しいバージョンでは,例えば下記ソースの処理結果が現行版 (LaTeX2e 2018-04-01) と比べて変化します。

# 参考: https://github.com/latex3/latex2e/issues/73
# 従来は目次の中に不可解な空白が入っていましたが,新版ではこれらの空白が入らなくなります。

% コマンドは latex, pdflatex, platex, uplatex のどれを使っても同様
\documentclass{article}
\setcounter{tocdepth}{2}

\makeatletter
\renewcommand\l@subsection{\noindent}

\begin{document}

\tableofcontents
\section{xx}
\subsection{a}
\subsection{a}
\subsubsection{b}
\subsubsection{b}
\subsubsection{b}
\subsubsection{b}
\subsection{a}
\end{document}