内联方程中的两种不同字母样式

内联方程中的两种不同字母样式

在下面的内联方程中,我得到了两种不同风格的 x。我该如何解决这个问题?

$A_{x}B_{1-x}$

以下是生成的输出的图像

在此处输入图片描述

我使用 org-mode 进行 pdf latex 导出。为了创建一个最小示例,我在 org-mode 文件中只写了 A_{x}B_{1-x} 并将其导出为 pdf。以下是生成的 .tex 文件的内容。没有错误。

% Created 2013-04-16 Tue 22:51
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{fixltx2e}
\usepackage{graphicx}
\usepackage{longtable}
\usepackage{float}
\usepackage{wrapfig}
\usepackage{soul}
\usepackage{textcomp}
\usepackage{marvosym}
\usepackage{wasysym}
\usepackage{latexsym}
\usepackage{amssymb}
\usepackage{hyperref}
\tolerance=1000
\providecommand{\alert}[1]{\textbf{#1}}

\title{A$_{x}$B$_{\mathrm{1-x}}$}
\author{ME}
\date{\today}
\hypersetup{
  pdfkeywords={},
  pdfsubject={},
  pdfcreator={Emacs Org-mode version 7.9.3f}}

\begin{document}

\maketitle

\setcounter{tocdepth}{3}
\tableofcontents
\vspace*{1cm}

\end{document}

答案1

正确的语法应该是

\title{$A_{x}B_{1-x}$}

只有一个公式并且没有\mathrm,这就是直立“x”的原因。

相关内容