latex 中的多个引用类别

latex 中的多个引用类别

编辑:我已经放弃尝试自己修复它了。我的大学不需要明确地将其拆分,所以我就按照现在的样子来吧……
仍然感谢所有尝试修复它的人。

我正在使用 TeXstudio 编写一个小文档。我使用 cite 包引用了一些参考资料,但它已经过时了,不应再使用。我现在尝试使用 biblatex,但很难找到适合以下示例的正确命令。有人知道我如何实现多个参考标题吗?
(示例)
文献列表
- 书籍
- 文章
- URL
有人遇到过可以解决问题的包或命令吗?更新:这是主文档的样子(省略了不重要的部分)。

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{ngerman}

\usepackage{biblatex}%[backend=bibtex]
\addbibresource{bib/bibliothek.bib}

\begin{document}
\setcounter{tocdepth}{2}    
\include{kapitel/Deckblatt}
\clearpage
\thispagestyle{empty}
\tableofcontents
\thispagestyle{empty}
\include{kapitel/start}
%THEORIE
\include{kapitel/Theorie/Theorie}
%PRAXIS
\include{kapitel/Praxis/Praxis}
%ANHANG
\part{Literaturverzeichnis}
\printbibliography[keyword=book,title={books}]
\printbibliography[keyword=url,title={urls}]
\printbibliography[keyword=article,title={articles}]
\listoffigures
\listoftables
\end{document}

bib-file:
每个项目看起来都像这样(文章有@article等):

@BOOK {mooreh.l.1967,    
    author    = "Moore, H. L.",
    title     = "Laws of wages: an essay in statistical economies",
    publisher = "New York: A.M. Kelley",
    year      = "1967",
    note      = "Original 1911 veröffentlicht",
    keywords={book}}

答案1

以下是使用以下代码的完整 MWE:biblatex,注意使用keyword

在此处输入图片描述

你要么需要运行它arara,或者运行以下命令:

pdflatex myfile
bibtex myfile
pdflatex myfile
pdflatex myfile

以下是文件:

myfile.tex

% arara: pdflatex
% arara: bibtex
% arara: pdflatex
% arara: pdflatex
\documentclass{article}
\usepackage[backend=bibtex]{biblatex}

\addbibresource{mybib}

\begin{document}

\nocite{*}
\printbibliography[keyword=book,title={books}]
\printbibliography[keyword=url,title={urls}]
\printbibliography[keyword=article,title={articles}]
\end{document}

mybib.bib

@online{myfirstref,
    title="my first title goes here",
    url="first url goes here",
    keywords={book}}
@online{mysecondref,
    title="my second title goes here",
    url="second url goes here",
    keywords={article}}
@online{mythirdref,
    title="my third title goes here",
    url="third url goes here",
    keywords={url}}

相关内容