Giter Site home page Giter Site logo

Comments (1)

zepinglee avatar zepinglee commented on May 27, 2024

我能复现这个问题。

主要原因是在于 defernumbers 选项,这是为了实现 #837 的功能,但目前还没搞懂为何跟 glossaries 不兼容。感觉需要分析底层命令,比较复杂。

\PassOptionsToPackage{defernumbers = true}{biblatex}

如果你的附录中没有引用的话,可以先注释掉这一行。

p.s. 在 macOS 13.5.2 上使用 latexmk 编译也存在此问题

另外提一下,在本地使用 latexmk 编译需要修改配置文件。

$makeindex = "makeindex -s gind.ist %O -o %D %S";

这里是为了编译文档(.dtx)设置的,需要替换为示例 texmf-dist/doc/support/latexmk/example_rcfiles/glossaries_latexmkrc 的配置。

add_cus_dep( 'acn', 'acr', 0, 'makeglossaries' );
add_cus_dep( 'glo', 'gls', 0, 'makeglossaries' );
$clean_ext .= " acr acn alg glo gls glg";

sub makeglossaries {
    my ($base_name, $path) = fileparse( $_[0] );
    my @args = ( "-q", "-d", $path, $base_name );
    if ($silent) { unshift @args, "-q"; }
    return system "makeglossaries", "-d", $path, $base_name;
}

from thuthesis.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.