我的回归方程还没有完成,但它看起来有点奇怪。有人能帮我调整一下间距吗?
\documentclass[twocolumn]{article}
\usepackage{booktabs, makecell, tabularx}
\renewcommand\theadfont{\normalsize}
\renewcommand\theadgape{}
\setcellgapes{2pt}
\newcolumntype{L}{>{\raggedright\arraybackslash}X}
\usepackage{caption}
\usepackage{textcomp}
\usepackage{graphicx}
\raggedbottom
\usepackage{amsmath,geometry}
\usepackage{rotating}
\usepackage{booktabs, makecell}
\usepackage[referable]{threeparttablex}
\usepackage{siunitx}
\usepackage[skip=1ex]{caption}
\usepackage{upquote}
\usepackage{balance}
\usepackage[lite]{mtpro2} % Times Roman math font
\begin{document}
OLS Regression is used to estimate the following equations:
${\textrm{CEO Salary}}={\beta}_0 +{\beta}_1 return$ +${\beta}_2 bonus$+${\beta}_2 stock awards$+${\beta}_2 option awards$+
\par${\beta}_2 other compensation$
\end{document}
@DavidCarlisle 这导致了错误:我做错了什么?
{\textrm{CEO Salary}}={\beta}_0 +{\beta}_1 \mathrm{return} +{\beta}_2 \mathrm{bonus}+{\beta}_3 \mathrm{stock awards}+{\beta}_4 \mathrm{option awards}+
\par${\beta}_5 \mathrm{other compensation}+{\beta}_6 \mathrm{age}+{\beta}_7 \mathrm{age sq}+{\beta}_8 \mathrm{male}+{\beta}_9 \mathrm{industry}+{\beta}_10 Volume$
答案1
您正在寻找这样的东西吗?
\documentclass[twocolumn]{article}
\usepackage{booktabs, makecell, tabularx}
\renewcommand\theadfont{\normalsize}
\renewcommand\theadgape{}
\setcellgapes{2pt}
\newcolumntype{L}{>{\raggedright\arraybackslash}X}
\usepackage{caption}
\usepackage{textcomp}
\usepackage{graphicx}
\raggedbottom
\usepackage{amsmath,geometry}
\usepackage{rotating}
\usepackage{booktabs, makecell}
\usepackage[referable]{threeparttablex}
\usepackage{siunitx}
\usepackage[skip=1ex]{caption}
\usepackage{upquote}
\usepackage{balance}
\usepackage[lite]{mtpro2} % Times Roman math font
\begin{document}
OLS Regression is used to estimate the following equations:
$\text{CEO Salary} =
\beta_0 +
\beta_1\,\text{return} +
\beta_2\,\text{bonus} +
\beta_2\,\text{stock awards} +
\beta_2\,\text{option awards} +
\beta_2\,\text{other compensation} $
\end{document}
一些解释:在您的示例中,您输入了多个内联数学,而在我的示例中只有一个。如果您想输入一些文本,只需使用\text
。我使用的\,
原因有两个:
- 我认为在变量和单词之间留一个空格(但不要太多)是好的
\,
是不可破坏的,即新行不能将变量与其旁边的单词分开。
更多信息:正如 David Carlisle 在评论中指出的那样,您也可以使用\mathrm
。但是,\mathrm
和\text
在语义上是不同的,即使它们可以(但无论如何)具有相同的结果。\mathrm
当您有不想在数学模式下显示的数学变量(即斜体)时,您应该使用 ,并且您应该使用\text
当您有...文本时,您应该使用 。有关更多差异,请查看这个问题。