XeLaTeX
나는 로 컴파일 하기 위해 온라인에서 찾은 다양한 해결 방법을 시도해 보았지만 BibTeX
경험이 풍부한 사용자가 아니기 때문에 빈손으로 왔습니다. XeLaTeX
다른 색상, 글꼴 등을 사용하고 싶기 때문에 사용합니다 BibTeX
. 한 번 컴파일하고 두 번 컴파일했는데 XeLaTeX
여전히 인용이 제대로 작동하지 않습니다. 여기에 경험이 많은 사람들이 문제를 찾을 수 있기를 바라며 전체 파일(실제 텍스트는 제외)을 포함합니다. 중요한 경우 TeXMaker
on 도 사용합니다 OSX
.
\documentclass[a4paper, 11pt]{article}
\usepackage[left=20mm, right=20mm, top=15mm, bottom=8mm, headheight=20pt, includehead, includefoot, heightrounded]{geometry}
\usepackage[version=3]{mhchem} % Package for chemical equation typesetting
\usepackage{comment}
\usepackage{fontspec}
\usepackage{enumitem}
\usepackage[dvipsnames]{xcolor}
\usepackage{xfrac}
\usepackage{upgreek}
\definecolor{blue(pigment)}{rgb}{0.2, 0.2, 0.6}
\definecolor{bluegray}{rgb}{0.4, 0.6, 0.8}
\usepackage{scrlayer}
\DeclareNewLayer[
foreground,
contents={%
\parbox[b][\layerheight][c]{\layerwidth}
{\centering This page is intentionally left blank.}%
}
]{blankpage.fg}
\DeclarePageStyleByLayers{blank}{blankpage.fg}
\setlength\parindent{0pt} % Removes all indentation from paragraphs
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[C]{--~\thepage~--}\rhead{DOCUMENT CODE}
\renewcommand*{\headrulewidth}{0pt}
\renewcommand*{\footrulewidth}{0pt}
\setlength{\headheight}{5pt}
\makeatletter
\let\ps@plain\ps@fancy
\makeatother
\renewcommand{\labelenumi}{\alph{enumi}.}
\usepackage{yfonts}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage[rm=oldstyle]{cfr-lm}
\usepackage{titling}
\usepackage{pdfpages}
\usepackage{afterpage}
\newcommand\blankpage{%
\null
\thispagestyle{empty}%
\addtocounter{page}{0}%
\newpage}
\newfontfamily\otherfont{remagg_cz}
\color{blue(pigment)}
\fancypagestyle{nofooter}{%
\fancyfoot{}%
}
\usepackage[backend=biber,style=numeric-comp]{biblatex}
\DeclareCiteCommand{\supercite}[\mkbibsuperscript]
{\usebibmacro{cite:init}%
\let\multicitedelim=\supercitedelim
\iffieldundef{prenote}
{}
{\BibliographyWarning{Ignoring prenote argument}}%
\iffieldundef{postnote}
{}
{\BibliographyWarning{Ignoring postnote argument}}%
\bibopenbracket}%
{\usebibmacro{citeindex}%
\usebibmacro{cite:comp}}
{}
{\usebibmacro{cite:dump}\bibclosebracket}
\usepackage{filecontents}
\begin{filecontents}{test.bib}
@book{A1,
author = {Author1, Name1., Author2, Name2.},
year = {1992},
title = {Title A1},
}
@article{B2,
author = {Author, A. B.},
year = {2020},
title = {Title B2},
}
\end{filecontents}
\addbibresource{test.bib}
\let\cite=\supercite
%
\begin{document}
\includepdf{first.eps} % Front page
\newpage\null\thispagestyle{blank}\newpage
\includepdf{second.eps} % Second page
\newpage\null\thispagestyle{blank}\newpage
\includepdf{third.eps} % Third page
\newpage\null\thispagestyle{blank}\newpage
\setlength{\droptitle}{-6em}
\title{Document Title}
\author{Author name}
\date{}
\maketitle
\thispagestyle{empty}
\vspace{-1.5cm}
\frenchspacing
%
\section*{Section 1}
This project is based on previous work\cite{A1,B1} done under the auspices of the university.
\printbibliography
\end{document}
이 경우 무엇이 잘못되었을 수 있습니까? 참고문헌에 사용하는 코드와 경쟁하는 내용이 서문에 있습니까? 참고문헌에 사용한 코드는 여기에서 찾을 수 있습니다.Biblatex supercite(대괄호 포함) 및 그룹화
BibTeX
내가 얻는 결과가 완료되면 이것은 다음과 같습니다.
Process started
This is BibTeX, Version 0.99d (TeX Live 2018) The top-level auxiliary file: report.aux I found no \citation commands---while reading file report.aux I found no \bibdata command---while reading file report.aux I found no \bibstyle command---while reading file report.aux (There were 3 error messages)
Process exited with error(s)
두 번 컴파일한 후에는 참고 XeLaTeX
문헌에 대한 오류 메시지가 표시되지 않지만 다음과 같은 경고만 표시됩니다.
경고 1:
LaTeX Warning: Overwriting file `./test.bib'.
\openout15 = `test.bib'.
Package biblatex Info: Trying to load language 'english'...
Package biblatex Info: ... file 'english.lbx' found.
(/usr/local/texlive/2018/texmf-dist/tex/latex/biblatex/lbx/english.lbx
File: english.lbx 2018/03/04 v3.11 biblatex localization (PK/MW))
경고 2:
LaTeX Warning: Citation 'A1' on page 7 undefined on input line 115.
경고 3:
LaTeX Warning: Empty bibliography on input line 122.
그리고 마지막으로경고 4:
LaTeX Warning: There were undefined references.
Package biblatex Warning: Please (re)run Biber on the file:
(biblatex) report
(biblatex) and rerun LaTeX afterwards.
Package logreq Info: Writing requests to 'report.run.xml'.
\openout1 = `report.run.xml'.
미리 감사드립니다!