中学理科1630641 views
世界の国564520 views
数学講師2886227 views
小学理科719870 views
Computer368106 views
小学社会310485 views
中学英語811710 views
いろは3010814 views
高校物理160203 views
中学数学623755 views
Help
Tools
NewsSpreadsheetCalendarSlidesTier ListPen ToolIllustrationCrayonPixel ArtASCII ArtPerspectiveEndless StairsGraphMind MapER DiagramFamily TreeMemeCurved TextImage EditorMosaicRetro FilterPencil SketchOCR/HighlighterMakeup EditorFaviconVideo TrimmerScrolling VideoVideo TitleColor PickerColor ExtractorBonfireFireworksWater RippleWater SplashBreaking GlassWood GrainMarble TextureCSS ButtonIcon MakerBar ChartGrouped Bar ChartStacked Bar ChartPie ChartLine ChartArea ChartStacked Area ChartScatter Plot3D Bar Chart3D Pie ChartBar Chart RaceBubble ChartPopulation PyramidPictogramEarningsCandlestick ChartInvestment RiskMortgage SimulatorCalculatorMatrix CalculatorFunction GraphPolynomial ExpansionVenn DiagramField VisualizerRubik's Cube Group TheoryTraveling SalesmanVoronoi and DelaunayFractalColumn ArithmeticDraw Math FiguresArithmetic AnimationArithmetic Word ProblemsCounting with Tree DiagramsCube NetsCross SectionsMotion PathMechanicsWavesLight and LensesThermodynamicsHow Semiconductors WorkMolecular StructuresAtomic OrbitalsElectrochemical CellsChemical EquilibriumCrystal LatticesBuffer pHComplex IonsDNA Double HelixCell DivisionMembrane ChannelsNerve ImpulseRock ClassificationWeatherConstellationsSolar and Lunar Eclipses3D ModelingFloor PlanSeismic StructuresIntersection TurnMaglevCooking AnimationOrigamiLive Viewer CountGeoJSON MapRailway MapPopulation MapCrime MapLand Price MapSchool MapShrine and Castle MapHouse of Representatives MapWord MapSolitaireReversiHakoiri MusumeChessHamburgerRippleSlide Puzzle MakerNeon PinballNovel MakerJapanese Typing PracticePiano Score EditorMusic Theory

English

LaTeX で極限(lim)を書く方法

微積分で頻出する極限(limit)を LaTeX で書く方法を解説します。

基本の書き方

極限は \lim コマンドで書きます。下付き文字で「何をどこに近づけるか」を指定します。

\lim_{x \to 0} \frac{\sin x}{x} = 1

\to は右矢印 を出力するコマンドです。

インライン数式での表示

インライン数式では、添字が横に表示されます。 のようになり、少し窮屈に見えることがあります。

横付きの表示を強制したい場合は \nolimits を使います。逆に、インラインでも下に表示したい場合は \limits を使います。

\lim\nolimits_{x \to 0}  % 強制的に横
\lim\limits_{x \to 0}    % 強制的に下

無限大への極限

無限大は \infty で表します。

これはネイピア数 の定義として有名な式です。

片側極限

右側極限と左側極限は、プラスやマイナスを上付きで書きます。

右側極限

\lim_{x \to 0^+}

左側極限

\lim_{x \to 0^-}

上極限・下極限

上極限(limsup)と下極限(liminf)には専用のコマンドがあります。

\limsup_{n \to \infty} a_n
\liminf_{n \to \infty} a_n

これらは数列の収束を議論するときによく使います。

多変数の極限

2変数関数の極限では、下付き部分を工夫して書きます。

\lim_{(x,y) \to (0,0)} \frac{xy}{x^2 + y^2}

複数行にわたる条件を書きたい場合は \substack を使うと便利です。

\lim_{\substack{x \to 0 \\ y \to 0}} f(x, y)

これで条件を縦に並べることができます。