两个 \mathbf 元素之间的连接文本问题

两个 \mathbf 元素之间的连接文本问题

我有以下句子想要用 LaTeX 写出来:

在此处输入图片描述

因此,我尝试使用这个:

\documentclass[runningheads,a4paper]{llncs}

\usepackage{amssymb}
\setcounter{tocdepth}{2}
\usepackage{graphicx}
\usepackage[latin1]{inputenc}
\usepackage[english]{babel}
\usepackage{url}

\usepackage{float}
\usepackage{booktabs}
\usepackage{multirow}% http://ctan.org/pkg/multirow
\usepackage{hhline}% http://ctan.org/pkg/hhline

\usepackage{mathtools}

\usepackage{amsmath}
\usepackage[english]{babel}
\usepackage{booktabs,array}

\usepackage{lipsum}
\setcounter{secnumdepth}{5}
\begin{document}

We point to the cost of the ith children with 
\mathbf{cost}_{i} , and the probability of same children with,  \mathbf{pro}_{i}



\end{document}

但结果显示,有些单词是连在一起的:

[1]:https://i.stack.imgur.com/tsDpx.png

答案1

还修复了一些语法:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

We point to the cost of the \(i\)-th children with
\(\mathbf{cost}_{i}\) and the probability of same 
children with \(\mathbf{pro}_{i}\).

\end{document}

请注意,$i$-th“i” 代表数学变量。内联数学公式应始终位于其中\(...\)(尽管专家倾向于使用$...$)。

在此处输入图片描述

相关内容