라텍스를 사용하여 이력서를 작성합니다. 저는 비블라텍스를 사용합니다. 저는 논문, 논문집, 초록, 검토 중인 논문을 다양한 스타일로 차별화하고 싶습니다. 나는 그것들을 다음과 같이 나열하고 이 목록에 제공된 이름으로 참조할 수 있기를 원합니다.
저널 기사
[J1] article published 1
[J2] article published 2
소송 절차
[P1] proceeding 1
초록
[A1] abstract 1
검토 중인 기사
[U1] article under review 1
[U2] article under review 2
biblatex로 할 수 있는 방법이 있나요?
답변1
.bib
데이터베이스의 형식이 적절 하다면 대부분의 작업은 매우 간단합니다 .
출판 유형(논문, 도서, 논문집 등)은 항목 type
의 항목 유형을 확인하는 옵션을 사용하여 필터링할 수 있습니다 .bib
.
아직 검토 중인 작업과 게시된 항목을 구별하려면 keyword
underreview
검토 중인 항목에 추가하고 해당 키워드로 필터링할 수도 있습니다.
\newrefcontext[labelprefix=<prefix>]
숫자 인용 라벨 앞에 원하는 문자를 생성해야 합니다. defernumbers
올바른 번호 매기기를 위해서는 이 옵션이 필요합니다.
\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=numeric, defernumbers, backend=biber]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{appleby,
author = {Humphrey Appleby},
title = {On the Importance of the Civil Service},
journal = {Journal of the Civil Service},
date = {1980},
keywords = {underreview},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}
\begin{document}
\nocite{sigfridsson,worman,westfahl:space,nussbaum,cicero,moraux,salam,herrmann,appleby}
\printbibheading[title={List of Publications}]
\newrefcontext[labelprefix=A]
\printbibliography[type=article, notkeyword=underreview, heading=subbibliography, title={Articles}]
\newrefcontext[labelprefix=P]
\printbibliography[type=inproceedings, notkeyword=underreview, heading=subbibliography, title={Proceedings}]
\newrefcontext[labelprefix=B]
\printbibliography[type=book, notkeyword=underreview, heading=subbibliography, title={Books}]
\newrefcontext[labelprefix=U]
\printbibliography[keyword=underreview, heading=subbibliography, title={Under Review}]
\end{document}