"film"이라는 사용자 정의 biblatex 항목 유형이 있습니다. 여기에는 여러 사용자 정의 필드, 특히 "director" 필드가 있습니다.
#+LaTeX_Header:
이것이 바로 LaTeX 문서로 작동하도록 할 수는 있지만 Emacs 조직 모드 내에서 설정할 때 "디렉터" 필드를 표시할 수는 없습니다 . 내가 도대체 뭘 잘못하고있는 겁니까?
LaTeX 버전은 다음과 같습니다.
\documentclass{article}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=apa, natbib]{biblatex}
\DeclareLanguageMapping{american}{american-apa}
\addbibresource{apamovie.bib}
\DeclareLabelname[film]{
\field{director}
\field{producer}
\field{actor}
}
\begin{document}
I've read a book \citep{book}.
I've seen a movie \citep{highlander}.
\printbibliography
\end{document}
Emacs 조직 모드 버전은 다음과 같습니다.
#+TITLE: LaTeX Output with Emacs org-mode
#+options: toc:nil
#+latex_header: \usepackage[american]{babel}
#+latex_header: \usepackage{csquotes}
#+latex_header: \usepackage[style=apa, natbib]{biblatex}
#+latex_header: \DeclareLanguageMapping{american}{american-apa}
#+latex_header: \addbibresource{./apamovie.bib}
#+latex_header: \DeclareLabelname[film]{\field{director}}
I've read a book cite:book. I've seen a film cite:highlander.
\printbibliography
파일 은 다음과 같습니다 .bib
.
@Book{book,
author = {A. U. Thor},
title = {My first book},
publisher = {Methuen},
year = {1999}
}
@film{highlander,
title = {Highlander},
director = {Mulcahy, Russell},
year = {1986},
publisher = {Cannon Films},
type = {DVD}
}
init.el
내 파일 에 새 필드와 항목 유형을 설정하는 방법은 다음과 같습니다 .
;;-- Create custom fields for FILM entry type ----
(add-to-list 'bibtex-biblatex-field-alist
'(("director" "Director(s) of a film, video or DVD title")
("producer" "Producer of the film title")
("actor" "Actor in the film title")
("distributor" "Distributor of a film title")))
;; Create FILM entry type
(add-to-list 'bibtex-biblatex-entry-alist
'("Film" "Film, video or DVD"
("title" "year" "type")
nil
("director" "address" "distributor")))
(require 'bibtex)
(bibtex-set-dialect 'biblatex)