BibTeX 中数学符号的帮助

BibTeX 中数学符号的帮助

我正在用 LaTeX 写一篇博士论文。一切都很顺利,但我在参考文献列表中输出数学符号时遇到了问题。我从 Pdf 文件中复制了一个例子,以便让您看得更清楚。您可以看到分数保持不变。

[1] Mezzacapo, F. 和 Cirac, JI (2010) 三角晶格上自旋反铁磁海森堡模型的基态特性\frac{1}{2}:基于纠缠斑块态的变分研究。新物理杂志,12,103039。

您可以在下面看到我使用的所有包:

\documentclass[12pt,PhD,twoside,a4paper]{GB_muthesis}%[10pt,PhD, singlespace]
\usepackage[pdftex]{graphicx}
\usepackage[bookmarks=true,colorlinks=true,linkcolor=blue,
urlcolor=blue,citecolor=blue]{hyperref}
\usepackage[numbers,comma, sort&compress]{natbib}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{mathtools}
\usepackage{rotating}
%\usepackage{GE_manthesis}
\usepackage{GB_thesis}
\usepackage{bm}
\usepackage{fmtcount}
\usepackage{setspace}
\usepackage{chapterbib}
\usepackage{subfigure}% allow subfigures
\usepackage{amsfonts}
\usepackage{url, enumitem}
\usepackage{lscape}
\usepackage{notoccite}%This package is for ingnoring the citation in the caption of the figures and tables.
\begin{document}

答案1

通过以下 MWE,您可以了解如何在参考书目中包含数学符号。当然,您必须使用 来包含数学$

数学家协会

\RequirePackage{filecontents}        % loading package filecontents
% writing file \jobname.bib, for example mb-bibtex.bib.
\begin{filecontents*}{\jobname.bib}
@Article{Mathetitle,
  author  = {Mezzacapo, F. and Cirac, J. I.},
  title   = {Ground-state properties of the spin-$\frac{1}{2}$ antiferromagnetic {Heisenberg} 
             model on the triangular lattice: a variational study based on 
             entangled-plaquette states.},
  year    = {2010},
  journal = {New. J. Phys.},
  number  = {12},
  issn    = {103039},
}
\end{filecontents*}


\documentclass{article}

\usepackage[numbers]{natbib}         % bibliography style
\usepackage[colorlinks]{hyperref}    % better urls in bibliography

\begin{document}
Test of bibliography: 
A title with mathematics~\cite{Mathetitle}.

\bibliographystyle{plainnat}  % needs package natbib
\bibliography{\jobname}       % uses \jobname.bib, according to \jobname.tex
\end{document}

给你

在此处输入图片描述

相关内容