带有数学符号的 BibTeX 问题

带有数学符号的 BibTeX 问题

我使用 BibTex 来编制参考书目,使用谷歌学术来引用。我主要遇到数学符号问题:例如,其中一个参考文献是:

@incollection{deitmar2005schemes,  
  title={Schemes over$\backslash$  mathbb $\{$F$\}$ \_1},  
  author={Deitmar, Anton},  
  booktitle={Number fields and function fields—two parallel worlds},  
  pages={87--100},  
  year={2005},  
  publisher={Springer}    
}  

但结果是错误的,漂亮的$\mathbb{F}_1$数学符号不见了,我看到的只有\mathbb {F}_1。谷歌学术的引用 BibTeX 有错吗?

Another problem: google scholar gives me this:  
@article{kurokawa2005zeta,  
  title={Zeta functions over $$\backslash$ mathbf $\{$F$\}$ \_1$},  
  author={Kurokawa, Nobushige and others},  
  journal={Proceedings of the Japan Academy, Series A, Mathematical   Sciences},  
  volume={81},  
  number={10},  
  pages={180--184},  
  year={2005},  
  publisher={The Japan Academy}  
}  

但是输出结果非常混乱:没有数学符号,$\mathbb{F}_1$并且“日本学士院论文集 A 辑数学科学”没有空格,而且超出了页面。
提前感谢大家!

答案1

这些参考文献的格式很糟糕:

title={Schemes over {$\mathbb{F}_1$}},

title={Zeta functions over {$\mathbf{F}_1$}},

应该是正确的方法。虽然我会同时使用\mathbf这两种方法;但请检查原始文件以查看正确的格式。

此外,该字段booktitle应该是---

在我使用的示例中filecontents*,它是自包含的。修复.bib文件并使用它。

\begin{filecontents*}{\jobname.bib}
@incollection{deitmar2005schemes,  
  title={Schemes over {$\mathbb{F}_1$}},  
  author={Deitmar, Anton},  
  booktitle={Number fields and function fields---two parallel worlds},  
  editor={Gerard van der Geer and Ben Moonen and Ren{\'e} Schoof},
  pages={87--100},  
  year={2005},  
  publisher={Birkh{\"a}user Boston}
}  
@article{kurokawa2005zeta,  
  title={Zeta functions over {$\mathbf{F}_1$}},  
  author={Kurokawa, Nobushige and others},  
  journal={Proceedings of the Japan Academy, Series A, Mathematical Sciences},  
  volume={81},  
  number={10},  
  pages={180--184},  
  year={2005},  
  publisher={The Japan Academy}  
}  
\end{filecontents*}

\documentclass{article}

\usepackage{amsmath,amssymb}

\begin{document}

I cite \cite{deitmar2005schemes} and \cite{kurokawa2005zeta}

\bibliographystyle{plain}
\bibliography{\jobname}

\end{document}

在此处输入图片描述

在 MathSciNet 中检查发现,第二篇参考文献是由一位作者撰写的,并且也有\mathbb,因此应该是

@article {kurokawa2005zeta,
  author = {Kurokawa, Nobushige},
  title = {Zeta functions over {$\mathbb{F}_1$}},
  journal = {Proc. Japan Acad. Ser. A Math. Sci.},
  fulljournal = {Japan Academy. Proceedings. Series A. Mathematical Sciences},
  volume = {81},
  year = {2005},
  number = {10},
  pages = {180--184},
}

如果要拼写完整的期刊名称,请将其改为journalintoshortjournalfulljournalinto 。journal

相关内容