I am trying to implement bibliography management in GB/T 7714-2015 (Chinese bibliography style standard), of Author-Year format. The bib list should be sorted by language, author, year, and then the title of the book. The sorting algorithm should use PinYin of Chinese characters to compare the order.

I am wondering is this feature already implemented for LuaMetatex?

Or if not, any suggestions on how can I implemented this? Like
1. How to implement the sorting algorithm?
2. Which part of the source code can I rewrite to implement this feature?



Thank you all for your time!
Best,

----------------------------

zhongtian wang

Shijiazhuang YouWen Information Technology Co.,Ltd,China

13311202589 wangzht@189.cn






------------------ 原始邮件 ------------------

发件人:Bernd Donner via ntg-context "ntg-context@ntg.nl"
时 间:2024/10/12 04:47:29 周六
收件人:ntg-context@ntg.nl
抄送人:Bernd Donner "bleau1975@googlemail.com"
主 题:[NTG-context] Artifact in flow cell connection

Hi,

I have a broken flow cell connection in this minimal example. The broken flow cell is only triggered when drawn within a subsection with an overlay. The logic to create the underlined subsection is by the way copied from the metafun manual source. I do not have the slightest clue what is going wrong in this example. Thanks for ideas.

Best, Bernd

\usemodule[chart]

\startuniqueMPgraphic{SectionUnderline}
path p;
p:= unitsquare xscaled OverlayWidth yscaled OverlayHeight;
draw llcorner p -- lrcorner p;
setbounds currentpicture to p;
\stopuniqueMPgraphic

\defineoverlay[SectionUnderline][\uniqueMPgraphic{SectionUnderline}]

\starttexdefinition unexpanded ChapterCommand #1#2
\framed [background=SectionUnderline] {#2}
\stoptexdefinition

\setuphead
[subsection]
[command=\ChapterCommand]

\starttext

\subsection[title=Introduction]

\startFLOWchart[toolchain]

\startFLOWcell
\location{1,1}
\connection [bt] {compiler}
\stopFLOWcell

\startFLOWcell
\name {compiler}
\location{1,2}
\shape{product}
\stopFLOWcell
\stopFLOWchart

\FLOWchart[toolchain]
\stoptext