3
3DFNDJHV H[SODLQHG $GGLQJ PRUH IXQFWLRQV WR /D7H; KWWSZZZODWH[WXWRULDOFRPWXWRULDOVEHJLQQHUVODWH[SDFNDJHV 7KLV ZHEVLWH LV XVLQJ FRRNLHV 7KDW KHOSV XV WR NHHS WKLV ZHEVLWH UXQQLQJ DQG LPSURYH XVHU H[SHULHQFH 7KH FRRNLHV DUH EHLQJ XVHG WR UHPHPEHU XVHU SUHIHUHQFHV FROOHFW VWDWLVWLFV DERXW ZHEVLWH XVDJH DQG WR VHUYH DGV WDLORUHG WR \RXU LQWHUHVWV <RX DJUHH WR RXU SULYDF\ SROLF\ E\ XVLQJ WKLV ZHEVLWH2. 3ULYDF\ 3ROLF\ 7XWRULDOFRP ,QVWDOODWLRQ (GLWRUV 7XWRULDOV 4XLFN 6WDUW %HJLQQHUV )LUVW 'RFXPHQW 6HFWLRQV 3DFNDJHV 0DWK )LJXUHV 7DEOH RI FRQWHQWV %LEWH[ 7DEOHV $GYDQFHG 3JISORWVWDEOH 3JISORWV 7LN] &LUFXLWLN] /LVWLQJV 0RUH FLUFXLWLN] 6DQGER[ 6\PEROV *UHHN $OSKDEHW 0DWK 6\PEROV 7H[W )RUPDWWLQJ 'RZQORDGV $ERXW ,PSULQW 3ULYDF\ 3DUWQHUV (QJOLVK 'HXWVFK 7XWRULDOV ª %HJLQQHUV ª 3DFNDJHV 3DFNDJHV H[SODLQHG $GGLQJ PRUH IXQFWLRQV WR /D7H; 8VH SDFNDJHV LQ /D7H; WR DGG PRUH IXQFWLRQV 'HPRQVWUDWLRQ RI

Packages Explained

Embed Size (px)

DESCRIPTION

Adding More Functions to LaTeX

Citation preview

Page 1: Packages Explained

12/16/2015 Packages explained - Adding more functions to LaTeX

http://www.latex-tutorial.com/tutorials/beginners/latex-packages/ 1/3

This website is using cookies. That helps us to keep this website running and improve user experience.The cookies are being used to remember user preferences, collect statistics about website usage and toserve ads tailored to your interests. You agree to our privacy policy by using this website.OKPrivacyPolicy

-Tutorial.com☰

InstallationEditorsTutorials

Quick StartBeginners

01 First Document02 Sections03 Packages04 Math05 Figures06 Table of contents07 Bibtex08 Tables

Advanced09 Pgfplotstable10 Pgfplots11 Tikz12 Circuitikz13 Listings14 More circuitikz

SandboxSymbols

Greek AlphabetMath SymbolsText Formatting

DownloadsAbout

ImprintPrivacyPartners

EnglishDeutsch

Tutorials»Beginners»03 Packages

Packages explained - Adding more functions to LaTeX

Use packages in LaTeX to add more functions. Demonstration of

LT XA E

Page 2: Packages Explained

12/16/2015 Packages explained - Adding more functions to LaTeX

http://www.latex-tutorial.com/tutorials/beginners/latex-packages/ 2/3

amsmath package and basics math typesetting.

[Open document online]

LaTeX offers a lot of functions by default, but in some situations it can become in handy to use so calledpackages. To import a package in LaTeX, you simply add the \usepackage directive to the preamble ofyour document:

\documentclass{article}

\usepackage{PACKAGENAME}

\begin{document} ...

Installation of packages

When using Linux or Mac, most packages will already be installed by default and it is usually notnecessary to install them. In case of Ubuntu installing texlive-full from the package manager wouldprovide all packages available. The MiKTeX bundle in Windows, will download the package if youinclude it to your document.

Use of packages

There are countless packages, all for different purposes in my tutorials I will explain some of the mostuseful. To typeset math, LaTeX offers (among others) an environment called equation. Everything insidethis environment will be printed in math mode, a special typesetting environment for math. LaTeX alsotakes care of equation numbers for us:

\documentclass{article}

\begin{document}

\begin{equation} f(x) = x^2 \end{equation}

\end{document}

This will result in the following output: (1)

Including a package

The automatic numbering is a useful feature, but sometimes it's necessary to remove them for auxiliarycalculations. LaTeX doesn't allow this by default, now we want to include a package that does:

海外拠点のERP導入なら低コスト・スピーディーにシステム導入 国内外のシステム統合で経営を合理化

f(x) = x2

Sakir
Highlight
Page 3: Packages Explained

12/16/2015 Packages explained - Adding more functions to LaTeX

http://www.latex-tutorial.com/tutorials/beginners/latex-packages/ 3/3

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\begin{equation*} f(x) = x^2 \end{equation*}

Now we get the same output as before, only the equation number is removed:

Summary

Packages add new functions to LaTeXAll packages must be included in the preamblePackages add features such as support for pictures, links and bibliography

Next Lesson: Lesson 4

Top ↑ Nov. 7, 2015

f(x) = x2

売上が驚くほど上がるアポ代行社内リソースを商談に集中させることで 受注率が上がる。/WEIC【アポハンタ

ー】

Sakir
Highlight