参考书目中有“in”,我想删除

参考书目中有“in”,我想删除

我使用模板来撰写论文,但遇到了一个小问题。在参考书目中,在作者和论文名称之后,它写道“在:”。 这只显示在论文中,不显示在书籍书目中。如何去掉它?

我在模板上找到了一个部分,我认为它与这个问题有关,但我无法确定它的位置:

在此处输入图片描述

\RequirePackage[
      isbn=false,
      doi=false,
      url=true,
      maxbibnames=99, % Effectively ensure all authors are listed
      language=american, % ... English
      %style=trad-alpha,%change style to numeric
      style=numeric,
      maxalphanames=4 % Only use first 4 names for an initials key
      ]{biblatex}
    \setcounter{biburllcpenalty}{7000}
    \setcounter{biburlucpenalty}{8000}
    \setcounter{biburlnumpenalty}{9000}
    \AtEveryBibitem{
      % remove abstract from bibliographic entries
      \clearfield{abstract}%
      % do not show both eprint/doi and url
      \iffieldundef{eprint}{}{\clearfield{url}}%
    }
    
    \newcommand{\makebibliography}{%
      \ifdefined\pdfbookmark
        % If hyperref is loaded, this will help us to more
        % easily navigate to the bibliography
        % \pdfbookmark[0]{Bibliography}{bib}%
      \fi
      \printbibliography[heading=bibintoc]
    }

完整模板在这里:https://www.overleaf.com/latex/templates/technion-iit-thesis-template/rzqpztzgppwz

答案1

我还想更改分隔来源各个细节的字符。这变得太复杂了,我坚持测试所有不同的预设书目样式。然后还可以手动更改它们以排除或包含其他信息。

下面是一个入门示例。这是我最终使用的:

\usepackage[style=ieee,backend=bibtex,isbn=false,url=false,minnames=5,maxnames=6]{biblatex}

相关内容