summaryrefslogtreecommitdiff
path: root/Master/texmf-doc/doc/english/mathmode/Mathmode.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-doc/doc/english/mathmode/Mathmode.tex')
-rw-r--r--Master/texmf-doc/doc/english/mathmode/Mathmode.tex183
1 files changed, 171 insertions, 12 deletions
diff --git a/Master/texmf-doc/doc/english/mathmode/Mathmode.tex b/Master/texmf-doc/doc/english/mathmode/Mathmode.tex
index a06ee5e5e10..10d8c5adebe 100644
--- a/Master/texmf-doc/doc/english/mathmode/Mathmode.tex
+++ b/Master/texmf-doc/doc/english/mathmode/Mathmode.tex
@@ -4,7 +4,7 @@
%% IMPORTANT NOTICE:
%%
%% Herbert Voss <hvoss at tug dot org>
-%% 2007-03-30
+%% 2007-04-21
%%
%% This program can be redistributed and/or modified under the terms
%% of the LaTeX Project Public License Distributed from CTAN archives
@@ -13,17 +13,17 @@
%% DESCRIPTION:
%% `Mathmode' is a document how the math mode works inside LaTeX
%%
-\def\MathmodeVersion{2.24}
+\def\MathmodeVersion{2.25}
%\ifvtex\title{\logo Math mode - v.\MathmodeVersion}\else
\ifpdf\title{Math mode - v.\MathmodeVersion}\else
\title{\logo Math mode - v.\MathmodeVersion}\fi%\fi
%
\author{Herbert Vo\ss\footnote{\sloppy Thanks for the feedback to:
Hendri Adriaens; Juan Mari Alberdi;
- Andrea Blomenhofer; Alexander Boronka; Walter Brown;
+ Heiko Bauke; Andrea Blomenhofer; Alexander Boronka; Walter Brown;
Christian Faulhammer; Jos\'e{} Luis G\'omez Dans;
Zongbao Fang;
- Sabine Glaser;
+ Sabine Glaser; Sven Gleich;
Azzam Hassam; Henning Heinze; Martin Hensel;
Morten H\o{}gholm; M. Kalidoss; Dan Lasley;
Angus Leeming; Vladimir Lomov; Tim Love; Dan Luecking;
@@ -71,7 +71,7 @@ facts in this paper. An advanced german version of this paper is available as a
%(\href{http://www.micropress-inc.com/linux/}{http://www.micropress-inc.com/linux/})
This file can be redistributed and/or modified under the terms
-of the LaTeX Project Public License Distributed from \verb+CTAN+ archives
+of the \LaTeX\ Project Public License Distributed from \verb+CTAN+ archives
in directory \url{CTAN://macros/latex/base/lppl.txt}.
\end{abstract}
@@ -2431,8 +2431,8 @@ $\vv{abc}$ & $\overrightarrow{abc}$\tabularnewline
$\vv{\imath}$ & $\overrightarrow{\imath}$\tabularnewline
$\vv*{A}{x}$ & $\overrightarrow{A}_{x}$\tabularnewline
\end{tabular}
-\caption{Vectors with package \texttt{esvec} (in the right column the
-default one from \LaTeX{})}
+\caption[Vectors with package \texttt{esvec}]%
+ {Vectors with package \texttt{esvec} (in the right column the default one from \LaTeX{})}
\end{table}
@@ -2582,7 +2582,7 @@ lower & default & upper & default & \verb|\mathbf| & \verb|\mathit|\\\hline
\verb|\vartheta| & $\vartheta$\\
\verb|\iota| & $\iota$\\
\verb|\kappa| & $\kappa$\\
-\verb|\lamda| & $\lambda$
+\verb|\lambda| & $\lambda$
& \verb|\Lambda| & $\Lambda$ & $\mathbf{\Lambda}$ & $\mathit{\Lambda}$\\
\verb|\mu| & $\mu$ \\
\verb|\nu| & $\nu$\\
@@ -2972,7 +2972,7 @@ code for all align environments is:
\end{lstlisting}
\begin{table}[htb]
-\caption{Comparison between the different align environments
+\caption[Comparison between the different align environments]{Comparison between the different align environments
with the same code, where the first three can have an equation number}\label{cap:align}
\begin{align*}
\framebox[0.125\columnwidth]{align} &= \framebox[0.125\columnwidth]{x} & \framebox[0.125\columnwidth]{x}&= \framebox[0.125\columnwidth]{x}\\
@@ -7448,9 +7448,9 @@ The \LaTeX{} code for the first equation is:
\noindent which makes things easier to write.
%--------------------------------------------------------------------------
-\section{Vertical alignment}\label{sec:verticalAlignment}
+\section{Horizontal alignment}\label{sec:verticalAlignment}
%--------------------------------------------------------------------------
-\subsection{Example 1}
+\subsection{Over more than one page}
%--------------------------------------------------------------------------
Sometimes it may be useful to have a vertical alignment over the whole page with a mix of %%% ----- Martin -----
formulas and text. Section \ref{sec:Text-in-math mode} shows the use of \CMD{intertext}.
@@ -7574,7 +7574,7 @@ equal sign to get a vertical alignment.
%$
%--------------------------------------------------------------------------
-\subsection{Example 2}
+\subsection{Special text columns}
%--------------------------------------------------------------------------
This one comes from Hartmut Henkel and offers a special form of placing
additional text between the equation and the \Index{equation number}. This makes only
@@ -7681,6 +7681,43 @@ $Z$ & Kernladungszahl
\end{lstlisting}
+%--------------------------------------------------------------------------
+\subsection{Centered vertical dots}
+%--------------------------------------------------------------------------
+
+By default the vertical dots of \CMD{vdots} are aligned to the left of
+the $=$ symbol and not centered.\index{vdots@\textbackslash vdots}
+%
+\bgroup
+\newsavebox{\eqbox}% Heiko Bauke
+\sbox{\eqbox}{$\null=\null$}
+\newcommand{\Vdots}{\makebox[\wd\eqbox]{\vdots}}
+%
+\begin{align}
+ a_1 & = b_1 & c_1 & = d_1 \\
+ a_2 & = b_2 & c_2 & = d_2 \\
+ a & \Vdots b & & \Vdots \nonumber \\
+ a_n & = b_n & c_n & = d_n
+\end{align}
+\egroup
+%
+\begin{lstlisting}
+\usepackage{amsmath}
+...
+
+\newsavebox{\eqbox}
+\sbox{\eqbox}{$\null=\null$}
+\newcommand{\Vdots}{\makebox[\wd\eqbox]{\vdots}}
+
+\begin{align}
+ a_1 & = b_1 & c_1 & = d_1 \\
+ a_2 & = b_2 & c_2 & = d_2 \\
+ a & \Vdots b & & \Vdots \nonumber \\
+ a_n & = b_n & c_n & = d_n
+\end{align}
+\end{lstlisting}
+
+
%------------------------------------------------------------------------------
\section{Node connections}
%------------------------------------------------------------------------------
@@ -8009,3 +8046,125 @@ d(P,Q)|_{Stat.,Dependent}=\\
}
\egroup
+
+\appendix
+\section*{Appendix}
+\section{Filelist}
+This document was build with
+
+\begin{lstlisting}[breaklines,xrightmargin=-\marginparwidth]
+This is pdfTeXk, Version 3.141592-1.40.3 (Web2C 7.5.6) (format=pdflatex 2007.3.18) 21 APR 2007 09:54
+\end{lstlisting}
+
+and with the following file and package versions:
+
+
+\begin{lstlisting}[breaklines,xrightmargin=-\marginparwidth]
+ *File List*
+ article.cls 2005/09/16 v1.4f Standard LaTeX document class
+ size11.clo 2005/09/16 v1.4f Standard LaTeX file (size option)
+fixltx2e.sty 2006/03/24 v1.1n fixes to LaTeX
+ fontenc.sty
+ t1enc.def 2005/09/27 v1.99g Standard LaTeX file
+inputenc.sty 2006/05/05 v1.1b Input encoding file
+ latin1.def 2006/05/05 v1.1b Input encoding file
+ ifpdf.sty 2006/02/20 v1.4 Provides the ifpdf switch (HO)
+ ifvtex.sty 2007/01/10 v1.2 Switches for detecting VTeX and its modes (HO)
+ comment.sty
+graphicx.sty 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
+ keyval.sty 1999/03/16 v1.13 key=value parser (DPC)
+graphics.sty 2006/02/20 v1.0o Standard LaTeX Graphics (DPC,SPQR)
+ trig.sty 1999/03/16 v1.09 sin cos tan (DPC)
+graphics.cfg 2007/01/18 v1.5 graphics configuration of teTeX/TeXLive
+ pdftex.def 2007/01/08 v0.04d Graphics/color for pdfTeX
+varwidth.sty 2003/03/10 ver 0.9a; Variable-width minipages
+ array.sty 2005/08/23 v2.4b Tabular extension package (FMi)
+delarray.sty 1994/03/14 v1.01 array delimiter package (DPC)
+tabularx.sty 1999/01/07 v2.07 `tabularx' package (DPC)
+ amsmath.sty 2000/07/18 v2.13 AMS math features
+ amstext.sty 2000/06/29 v2.01
+ amsgen.sty 1999/11/30 v2.0
+ amsbsy.sty 1999/11/29 v1.2d
+ amsopn.sty 1999/12/14 v2.01 operator names
+ amssymb.sty 2002/01/22 v2.2d
+amsfonts.sty 2001/10/25 v2.2f
+ bm.sty 2004/02/26 v1.1c Bold Symbol Support (DPC/FMi)
+ upgreek.sty 2003/02/12 v2.0 (WaS)
+ cancel.sty 2000/03/12 v2.1 Cancel math terms
+ amscd.sty 1999/11/29 v1.2d
+ accents.sty 2006/05/12 v1.3 Math Accent Tools
+ dsfont.sty 1995/08/01 v0.1 Double stroke roman fonts
+multirow.sty
+bigdelim.sty
+ framed.sty 2003/07/21 v 0.8a: framed or shaded text with page breaks
+longtable.sty 2004/02/01 v4.11 Multi-page Table package (DPC)
+varioref.sty 2006/05/13 v1.4p package for extended references (FMi)
+ xcolor.sty 2007/01/21 v2.11 LaTeX color extensions (UK)
+ color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
+ makeidx.sty 2000/03/29 v1.0m Standard LaTeX package
+ url.sty 2005/06/27 ver 3.2 Verb mode for urls, etc.
+setspace.sty 2000/12/01 6.7 Contributed and Supported LaTeX2e package
+ empheq.sty 2004/10/10 v2.11a Emphasizing equations (MH)
+ mhsetup.sty 2004/10/10 v1.0b programming setup (MH)
+mathtools.sty 2004/10/10 v1.01a mathematical typesetting tools (MH)
+ calc.sty 2005/08/06 v4.2 Infix arithmetic (KKT,FJ)
+nicefrac.sty 1998/08/04 v0.9b Nice fractions
+ ifthen.sty 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
+ exscale.sty 1997/06/16 v2.1g Standard LaTeX package exscale
+ relsize.sty 2003/07/04 ver 3.1
+ xspace.sty 2006/05/08 v1.12 Space after command names (DPC,MH)
+ eucal.sty 2001/10/01 v2.2d Euler Script fonts
+footmisc.sty 2005/03/17 v5.3d a miscellany of footnote facilities
+ esint.sty
+ esvect.sty
+remreset.sty
+ cool.sty 2006/12/29 v1.35 COntent Oriented LaTeX
+coollist.sty 2006/08/14 v1 COntent Oriented LaTeX Lists
+ coolstr.sty 2007/01/08 v2.1 COntent Oriented LaTeX Strings
+ forloop.sty 2006/09/18 v3.0 For Loops for LaTeX
+ bbm.sty 1999/03/15 V 1.2 provides fonts for set symbols - TH
+ xypic.sty 1999/02/16 Xy-pic version 3.7
+ xy.sty
+fancyhdr.sty
+showexpl.sty 2007/02/03 v0.3h Typesetting example code (RN)
+listings.sty 2004/10/17 1.3b (Carsten Heinz)
+lstpatch.sty 2004/10/17 1.3b (Carsten Heinz)
+ lstmisc.sty 2004/09/07 1.3 (Carsten Heinz)
+listings.cfg 2004/09/05 1.3 listings configuration
+ lstmisc.sty 2004/09/07 1.3 (Carsten Heinz)
+showexpl.cfg 2005/06/30 v0.02 Definitions for the showexpl package (hv)
+lstlang1.sty 2004/09/05 1.3 listings language file
+lstlang2.sty 2004/09/05 1.3 listings language file
+lstlang3.sty 2004/09/05 1.3 listings language file
+ lstmisc.sty 2004/09/07 1.3 (Carsten Heinz)
+microtype.sty 2007/01/21 v2.0 Micro-typography with pdfTeX (RS)
+microtype.cfg 2007/01/14 v2.0 microtype main configuration file (RS)
+hyperref.sty 2007/02/07 v6.75r Hypertext links for LaTeX
+ pd1enc.def 2007/02/07 v6.75r Hyperref: PDFDocEncoding definition (HO)
+hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
+kvoptions.sty 2006/08/22 v2.4 Connects package keyval with LaTeX options (HO)
+ hpdftex.def 2007/02/07 v6.75r Hyperref driver for pdfTeX
+ hypcap.sty 2006/02/20 v1.5 Adjusting anchors of captions (HO)
+ babel.sty 2005/11/23 v3.8h The Babel package
+ english.ldf 2005/03/30 v3.3o English support from the babel system
+ braket.sty
+supp-pdf.tex
+ mt-cmr.cfg 2005/11/07 v1.9 microtype config. file: Computer Modern Roman (RS)
+ nameref.sty 2006/12/27 v2.28 Cross-referencing by name of section
+refcount.sty 2006/02/20 v3.0 Data extraction from references (HO)
+Mathmode.out
+Mathmode.tex
+ umsa.fd 2002/01/19 v2.2g AMS font definitions
+ mt-msa.cfg 2006/02/04 v1.1 microtype config. file: AMS symbols (a) (RS)
+ umsb.fd 2002/01/19 v2.2g AMS font definitions
+ mt-msb.cfg 2005/06/01 v1.0 microtype config. file: AMS symbols (b) (RS)
+ mt-eur.cfg 2006/07/31 v1.1 microtype config. file: AMS Euler Roman (RS)
+ uesint.fd
+ uesvect.fd
+ t1cmtt.fd 1999/05/25 v2.5h Standard LaTeX font definitions
+ omscmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
+ t1cmss.fd 1999/05/25 v2.5h Standard LaTeX font definitions
+Mathmode.bbl
+Mathmode.ind
+ ***********
+\end{lstlisting}