我使用以下代码
\documentclass[12pt,a4paper]{article}
%------------------------------------------------------------
\usepackage{amssymb,amsmath,amsthm,latexsym,mathrsfs,amsfonts,dsfont}
\usepackage{color}
\usepackage{url}
%-----accent
\usepackage[latin1]{inputenc} %écrire directement les accents
\usepackage[T1]{fontenc}
% ------------------------------------------------------------
\usepackage{geometry}
\geometry{left=2cm,right=2cm,top=2cm,bottom=2cm}
% ------------------------------------------------------------
\newtheorem{theorem}{Theorem}[section]
\newtheorem{definition}{Definition}[section]
\newtheorem{definitions}{Definitions}[section]
\newtheorem{notation}{Notation}[section]
\newtheorem{corollary}{Corollary}[section]
\newtheorem{proposition}{Proposition}[section]
\newtheorem{lemma}{Lemma}[section]
\newtheorem{remark}{Remark}[section]
\newtheorem{example}{Example}[section]
\numberwithin{equation}{section}
\begin{document}
$\displaystyle\lim_{n\longrightarrow\infty}\langle {\bf T} x_n\;
|\;x_n\rangle_A=(\frac{1+i}{2},0,0)$
\end{document}
当我编译时我得到
我想减小数字 (1+i)/2 的大小。
谢谢你!
答案1
您可以使用\tfrac
,但内联分数可能更好:
\documentclass[12pt,a4paper]{article}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
\lim_{n\to\infty}\langle \mathbf{T} x_n\mid
x_n\rangle_A=(\tfrac{1+i}{2},0,0) = ((1+i)/2,0,0)
\end{equation*}
\end{document}
我删除了不相关的软件包并改进了编码。特别注意:
\to
代替\longrightarrow
\mathbf{T}
代替{\bf T}
\mid
代替\;|\;
答案2
一些改进和建议:加载mathtools
和xparse
,可以定义一个\innerp
命令,以“自然”方式显示内积排版:两个参数都分组并用逗号分隔。分隔符可以使用命令自动调整为内容\innerp*
,也可以使用可选参数手动调整:\big,\Big,\bigg
或\Bigg
。
另外,我还加载了nccmath
定义中等大小命令的包(约占 的 80% \displaystyle
),其中\mfrac
通常看起来比 更好\tfrac
:
\documentclass[12pt,a4paper]{article}
\usepackage{xparse}
\usepackage{mathtools, nccmath}
\DeclarePairedDelimiterX{\innerp}[1]{\langle}{\rangle}{\innpargs{#1}}
\NewDocumentCommand{\innpargs}{ >{\SplitArgument{1}{,}}m }
{\innpargsaux#1}
\NewDocumentCommand{\innpargsaux}{ m m }
{#1\,\delimsize\vert\,\mathopen{}#2}%\;\delimsize\vert\;
\begin{document}
\begin{equation*}
\lim_{n\to\infty} \innerp[\big]{\mathbf{T}x_n, x_n}=\Bigl(\mfrac{1 + i}{2},0,0\Bigr)=\Bigl(\mfrac{1}{2}(1 + i),0,0\Bigr)
\end{equation*}
\end{document}