-
Notifications
You must be signed in to change notification settings - Fork 794
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如何使每一章有自己独立的参考文献列表? #137
Comments
是每一章的目录中都要出现本章参考文献?你把你的实现代码贴一部分上来吧。 0.9分支上用的是biber+biblatex,应该有现成的简易方法实现多每章参考文献。 |
好的,就是每章的tex文件都写一个,只是输出的时候目录中没有“参考文献”这个section: |
可以使用 % set multi index
\usepackage{multind}
\makeindex{idx_finance}
\newcommand{\idxf}[1]{\index{idx_finance}{#1}}
% heading
\setcounter{secnumdepth}{3}
% set multi-ref
\usepackage{multibib}
\newcommand{\bibnamec}{References of Programming}
\newcites{c}{\bibnamec}
\newcommand{\bibnamef}{References of Finance}
\newcites{f}{\bibnamef}
% ........
% ........
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{\bibnamec}
\bibliographystylec{GBT7714-2005NLang}
\bibliographyc{code/ref}
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{\bibnamef}
\bibliographystylef{GBT7714-2005NLang}
\bibliographyf{finance/ref}
那份Template完整代码在此:Template 参考如下一些信息: https://en.wikibooks.org/wiki/LaTeX/Bibliography_Management#Multiple_bibliographies |
#142 提到编译时间过长,增加了 |
我都是脑补编译结果,我觉得,检查编译是否通过比验证编译结果对我来说更有帮助。 |
我现在用了个办法\begin{refsection}[xxx.bib]实现,不过“参考文献”不能显示在目录中,不知道怎么可以显示出来呢?
The text was updated successfully, but these errors were encountered: