I would like to get 1:n matrix with \left, \right size parentheses. Default size looks not so good. Now I have
$\begin{pmatrix}
f_0 & \ldots & f_L
\end{pmatrix}^T$
The view I get

I can get the view that I want like this
$\left(f_0 \quad \ldots \quad f_L\right)^T$

but maybe there is a better solution?
\documentclass{standalone}\usepackage{amsmath,tikz} \begin{document}\begin{tikzpicture}\node[red] (a) {$\begin{pmatrix}f_0 & \ldots & f_L\end{pmatrix}^T$};\node[blue] (b) {$\left(f_0 \quad \ldots \quad f_L\right)^T$}; \end{tikzpicture}\end{document}I thinkpmatrixsolution is pretty OK. – percusse May 24 '12 at 8:41\setspaceor another method for widening the interline space. So no: a one line "matrix" is out of the question, use the simple parentheses. – egreg May 24 '12 at 9:13