在 textit{} 中,我遇到了错误,语句告诉我使用 $ $

在 textit{} 中,我遇到了错误,语句告诉我使用 $ $
\bibitem{Shiva2014}
Shiva.A, Sethi.M.(2014).Understanding Dynamic Relationship among Gold Price, Exchange Rate and Stock Markets.\textit{gbr.sagepub.com/content/16/5_suppl/93S.refs}.

我不想使用任何数学形式,但 latex 告诉我在 中使用 $ $,\textit{gbr.sagepub.com/content/16/5_suppl/93S.refs}因为下标在5_suppl,而我不想使用数学形式。请帮帮我。

答案1

如果你想要的是下划线,只需输入

\textit{gbr.sagepub.com/content/16/5\_suppl/93S.refs}

但最好使用url允许在 URL 中的正确位置换行的包:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{url}
\def\UrlFont{\itshape\sffamily}

\begin{document}

\textit{gbr.sagepub.com/content/16/5\_suppl/93S.refs} \medskip

 \url{gbr.sagepub.com/content/16/5_suppl/93S.refs}

\end{document} 

在此处输入图片描述

相关内容