我正在使用 LaTeX 寫一篇博士論文。一切都很順利,但我對參考清單中數學符號的輸出有問題。我從 Pdf 文件中複製了一個範例,以便讓您清楚地了解。您可以看到分數保持不變。
[1] Mezzacapo, F. and 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}
給你