format:LaTeXgood first issuereader
仓库指标
- Star
- (44,133 star)
- PR 合并指标
- (平均合并 2天 7小时) (30 天内合并 9 个 PR)
描述
@jgm @schrieveslaach
See the example below when tex->docx via pandoc-2.7.3:
\documentclass{article}
\usepackage[acronym]{glossaries}
\newacronym{PITA}{PITA}{pain in the ass}
\begin{document}
This is a \gls{PITA}. The second time is also \gls{PITA}. The plural \glspl{PITA} also is.
\end{document}
I'm receiving
This is a PITA. The second time is also PITA. The plural PITAs also is.
or
This is a [PITA]{acronym-label="PITA" acronym-form="singular+short"}.
The second time is also [PITA]{acronym-label="PITA"
acronym-form="singular+short"}. The plural [PITAs]{acronym-label="PITA"
acronym-form="plural+short"} also is.
in txt format.
I'm expecting the typical latex->pdf behaviour of expanding the first entry. Wasn't this added in PR#3589 !?