情况:我正在编制涉及求和符号的问题。
问题:我想调整求和符号的大小,但即使使用relsize
包也无法在枚举环境中进行调整。
问题:有没有其他方法可以调整(即放大)求和符号的大小?另外,这适用于其他数学符号(例如积分)吗?谢谢。
编辑:我忘了说我已经包括了
\everymath{\displaystyle}
到我的文档。但是,我想进一步扩大求和符号,超出 \displaystyle 所能提供的范围。有什么办法吗?任何建议都将不胜感激。
代码:
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[includeheadfoot,footskip=0in,paperheight=11in,paperwidth=8.5in,left=1in,right=0.5in,top=0.7in,bottom=0.5in,]{geometry}
\usepackage{amsmath, amsfonts, amssymb, amsxtra, fancyhdr}
\usepackage{graphicx, parskip, xcolor, url, enumerate}
\usepackage{amsbsy, amstext, amsthm, relsize}
%Commands
\newcommand\sumone{\sum\limits_{n=1}^{+\infty}}
\newcommand\sumzero{\sum_{n=0}^{+\infty}}
\newcommand\sumtwo{\sum\limits_{n=2}^{+\infty}}
\begin{document}
Determine whether the following given items are absolutely convergent, conditionally convergent or divergent.
\setlength\columnsep{-1.3cm}
\begin{multicols}{4}
\begin{enumerate}[a.]
\item $\sumzero \cfrac{2n - 1}{n+3}$
\item $\sumone \frac{\raisebox{0.15ex}{$6n^2 - 9n + 4$}}{n^3}$
\item $\sumone \dfrac{3n - 2n^2}{n^2+1}$
\item $\sumone \dfrac{2 + \sin n}{4+n^2}$
\item $\sumone \dfrac{2n}{n^{3/2} +2}$
\item $\sumone \dfrac{(-1)^n}{\sqrt{n+n^2}}$
\item $\sumone \dfrac{n}{n+1}$
\item $\sumone \dfrac{n + \sqrt{n}}{n^3 + 1}$
\item $\sumtwo \dfrac{1}{n\sqrt{\ln n}}$
\item $\sumone \left(\dfrac{2}{n\sqrt{n}} + \left( \dfrac{-4}{3} \right)^n\right)$
\end{multicols}
\end{enumerate}
\end{document}
答案1
通过“调整”求和符号的大小,我假设你想要放大它们,以便它们具有 display-math 环境中使用的大小。最直接的实现方法是将指令置于inline-math 环境中出现的宏\displaystyle
之前。\sum
这也适用于\int
、以及其他所谓的可变大小运算符符号。\prod
必须记住\displaystyle
在很多内联数学组的开头键入内容,这很乏味。为了使全部inline-math 实例按照 运行,在感兴趣的环境开始时\displaystyle
提供指令——这里:一个环境。\everymath{\displaystyle}
enumerate
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[includeheadfoot,footskip=0in,letterpaper,
left=1in,right=0.5in,top=0.7in,bottom=0.5in,
]{geometry}
\usepackage{amsmath, enumerate, multicol}
%Commands
\newcommand\sumone{\sum_{n=1}^{\infty}}
\newcommand\sumzero{\sum_{n=0}^{\infty}}
\newcommand\sumtwo{\sum_{n=2}^{\infty}}
\begin{document}
Determine whether the following given items are absolutely convergent,
conditionally convergent, or divergent.
\setlength\columnsep{-1cm}
\begin{multicols}{4}
\begin{enumerate}[a.]
\everymath{\displaystyle} % <-- new!
\item $\sumzero\frac{2n - 1}{n+3}$ % I wouldn't use "\cfrac"
\item $\sumone \frac{6n^2 - 9n + 4}{n^3}$ % I removed the "\raisebox" wrapper
\item $\sumone \frac{3n - 2n^2}{n^2+1}$
\item $\sumone \frac{2 + \sin n}{4+n^2}$
\item $\sumone \frac{2n}{n^{3/2} +2}$
\item $\sumone \frac{(-1)^n}{\sqrt{n+n^2}}$
\item $\sumone \frac{n}{n+1}$
\item $\sumone \frac{n + \sqrt{n}}{n^3 + 1}$
\item $\sumtwo \frac{1}{n\sqrt{\ln n}}$
\item $\sumone \left(\frac{2}{n\sqrt{n}} +
\left(\frac{-4}{3}\right)^{\!\!n}\,\right)$
\end{enumerate}
\end{multicols}
\end{document}