5

When I use a vector within the text, the vector appears too big - how can I make it smaller?

Example:

\documentclass[12pt]{scrartcl}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
One standard basis vectors of $\mathbb{R}^2$ is \begin{pmatrix}1\\0\end{pmatrix}$.
 Unfortunately, the vector is about twice as tall as the rest of the line. 
How can I reduce its size to about $1.5$-times the size of the line?
\end{document}

enter image description here

BJPrim
  • 299

4 Answers4

7

Just use psmallmatrix from mathtools.

\documentclass[12pt]{scrartcl}

\usepackage{amssymb}
\usepackage{amsmath}

\usepackage{mathtools}

\begin{document}
    One standard basis vectors of $\mathbb{R}^2$ is $\begin{psmallmatrix}1\\0\end{psmallmatrix}$.
    Unfortunately, the vector is about twice as tall as the rest of the line. 
    How can I reduce its size to about $1.5$-times the size of the line?
\end{document}

enter image description here

5

You can either use the psmallmatrix environment from mathtools, or the \medmath command from nccmath (ca 80 % of \displaystyle), or make a group in footnotesize. Just choose:

\documentclass[12pt]{scrartcl}
\usepackage{mathtools, nccmath}
\usepackage{amssymb}

\begin{document} 

One standard basis vectors of $\mathbb{R}^2$ is $\begin{pmatrix}1\\0\end{pmatrix}$.
 Unfortunately, the vector is about twice as tall as the rest of the line.
How can I reduce its size to about $1.5$-times the size of the line?

One standard basis vectors of $\mathbb{R}^2$ is $\begin{psmallmatrix}1\\0\end{psmallmatrix}$.
 Unfortunately, the vector is about twice as tall as the rest of the line.
How can I reduce its size to about $1.5$-times the size of the line?


One standard basis vectors of $\mathbb{R}^2$ is $\medmath{\begin{pmatrix}1\\0\end{pmatrix}}$.
 Unfortunately, the vector is about twice as tall as the rest of the line.
How can I reduce its size to about $1.5$-times the size of the line?
?

One standard basis vectors of $\mathbb{R}^2$ is {\scriptsize$\begin{pmatrix}1\\0\end{pmatrix}$}.
 Unfortunately, the vector is about twice as tall as the rest of the line.
How can I reduce its size to about $1.5$-times the size of the line?

\end{document}

enter image description here

Bernard
  • 271,350
4

try with smallmatrix:

\documentclass[12pt]{scrartcl}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
One standard basis vectors of $\mathbb{R}^2$ is $\left(\begin{smallmatrix}1\\0\end{smallmatrix}\right)$.
 Unfortunately, the vector is about twice as tall as the rest of the line.
How can I reduce its size to about $1.5$-times the size of the line?
\end{document}

enter image description here

Zarko
  • 296,517
3

I simply would use the command \tbinom{1}{0} at the pag.18 of this guide:

enter image description here

I think it could be a good compromise, it is a simple basic command and it is not too big. See the figure below:

enter image description here

\documentclass[12pt]{scrartcl}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
One standard basis vectors of $\mathbb{R}^2$ is $\tbinom{1}{0}$.
 Unfortunately, the vector is about twice as tall as the rest of the line. 
How can I reduce its size to about $1.5$-times the size of the line?
\end{document}
Sebastiano
  • 54,118