我想插入一个带有实数符号的行内方程,如下面的代码:
Let $X$ be a continuous random variable with CDF $F(x) = log_{c}(x)$
where $x \in [1,c]$ and $c \in \R_{++}$.
插入时,LaTex 给出此错误“未定义的控制序列...” \R
。
不知道为什么会这样。也许和包裹有关amsmath
。
这是我的序言:
\documentclass[12pt, a4wide]{article}
\usepackage{graphicx}
\usepackage{color}
\usepackage{framed}
\usepackage{alltt}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{listings}
\usepackage{enumerate}
\usepackage{enumitem}
\usepackage{xcolor}
\usepackage{longtable}
\usepackage{pdflscape}
\usepackage[backref=page]{hyperref}
\usepackage[labelfont=bf]{caption}
\usepackage{capt-of}
\usepackage{adjustbox}
\usepackage{amsmath,amsfonts,amssymb}
%\usepackage{showframe}
\usepackage[authoryear]{natbib}
\usepackage{float}
\usepackage{tikz}
\usepackage{environ}
\makeatletter
\newsavebox{\measure@tikzpicture}
\NewEnviron{scaletikzpicturetowidth}[1]{%
\def\tikz@width{#1}%
\def\tikzscale{1}\begin{lrbox}{\measure@tikzpicture}%
\BODY
\end{lrbox}%
\pgfmathparse{#1/\wd\measure@tikzpicture}%
\edef\tikzscale{\pgfmathresult}%
\BODY
}
\makeatother
\usepackage{booktabs}
\usepackage[all]{nowidow}
\widowpenalty=1000
\addtolength{\footnotesep}{1mm}
\skip\footins=4ex plus 1ex
\usepackage{lipsum}
\usepackage[bottom,norule,hang]{footmisc}
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{University Name}
\chead{}
\rhead{Course Name}
%\lfoot{Student Name}
\cfoot{\thepage}
%\rfoot{Student ID}
\renewcommand{\headrulewidth}{0.0pt}
\renewcommand{\footrulewidth}{0.0pt}
我知道有很多软件包。也许其中有些问题。
答案1
\R
不是预定义命令,如果要将其用作快捷方式,则需要自行定义。
\newcommand{\R}{\mathbb{R}}
因此:
\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\newcommand{\R}{\mathbb{R}}
\begin{document}
Let $X$ be a continuous random variable with CDF $F(x) = \log_{c}(x)$
where $x \in [1,c]$ and $c \in \R_{++}$.
\end{document}
注释\log
为log
。