我正在尝试使用 TeXstudio 获取参考资料。我完全按照在线教程视频,但是在编译BibTeX时我遇到了以下问题:
进程已启动:bibtex.exe “Κύριο μέρος” 这是 BibTeX,版本 0.99d(MiKTeX 2.9.6210 64 位) 顶级辅助文件: 进程因错误而退出
如果有人告诉我该怎么做,我将不胜感激。我已经尝试了好几个小时了……
我重命名了我的文件,现在出现以下错误
进程已启动:bibtex.exe“main” 这是 BibTeX,版本 0.99d(MiKTeX 2.9.6210 64 位) 顶级辅助文件:main.aux 一级辅助文件:quote.aux 一级辅助文件:ch1.aux 一级辅助文件:ch2.aux 一级辅助文件:ch3.aux 一级辅助文件:ch4.aux 一级辅助文件:ch5.aux 样式文件:plain.bst 参数中有空格---文件 main.aux 第 40 行 :\bibdata{\LGR\textBeta :\LGR\textiota \LGR\textbeta \LGR\textlambda \LGR\textiota \LGR\textomicron \LGR\textgamma \LGR\textrho \LGR\textalpha \LGR\textphi Ð\LGR\textalpha } 我将跳过此命令的剩余部分 读取文件 main.aux 时我没有找到数据库文件 (有 2 条错误消息) 进程因错误而退出
我的 TeX 代码如下:
\documentclass[a4paper,twoside,12pt]{book}
\usepackage[english,greek]{babel}
\usepackage[utf8]{inputenc}
%-----------------------
\usepackage{graphicx}
%------------------------
\usepackage{makeidx}
\makeindex
%--------------------------
\usepackage{setspace}
%--------------------------
\usepackage[width=150mm,top=25mm,bottom=25mm,bindingoffset=6mm]{geometry}
%----------------------------
%-------------------------
\pagestyle{headings}
%------------------------------
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsthm}
%-------------------------------
\DeclareMathOperator{\Ker}{Ker}
%----------------------------
\usepackage{kmath,kerkis}
\usepackage[T1]{fontenc}
\usepackage{upgreek}
%-----------------------
\newcommand{\la}{\latintext}
\newcommand{\Z}{\mathbb Z}
\newcommand{\lat}{\latintext}
%------------------------
\usepackage{syntonly}
%\syntaxonly
%-----------------------
\theoremstyle{definition}
\newtheorem{thm}{Θεώρημα}[section] % reset theorem numbering for each chapter
\newtheorem{defn}[thm]{Ορισμός} % definition numbers are dependent on theorem numbers
\newtheorem{exmp}[thm]{Παράδειγμα} % same for example numbers
\newtheorem{cor}[thm]{Πόρισμα}
%--------------------
\setcounter{chapter}{-1}
%------------------
\usepackage[export]{adjustbox}
\usepackage{url}
\usepackage{color}
%---------------------------------
\usepackage[pdftex,pdfnewwindow=true,colorlinks=true,
linkcolor=red,
urlcolor=cyan,
citecolor=green]{hyperref}
%\includeonly{ch1}
%------------------------------------------------------------
%------------------------------------------------------------------
\begin{document}
\input{titlepage}
\include{quote}
\tableofcontents
\input{ch0}
\include{ch1}
\include{ch2}
\include{ch3}
\include{ch4}
\include{ch5}
\nocite{*}
\bibliographystyle{plain}
\bibliography{Βιβλιογραφία}
\printindex
\end{document}