Tagged Questions
1
vote
2answers
121 views
Change matrix figure layout
I have a figure where I am writing som matrices I want something like
but I am getting this, How to change it?
I have
\begin {figure}[h]
\centering
\small
\textbf{X}
\[\left( ...
9
votes
2answers
182 views
Why is picture and matrix not drawn at the same height
I'm trying to put a adjacency matrix beneath a graph using subfloat. The graph is drawn with tikz. No matter what I do, the matrix is put below the graph as shown here:
The code is here:
...
2
votes
1answer
333 views
Alignment of nodes and scopes in tikz matrix?
I am trying to fix the positions of the arrows of the following diagram without much success. I would like the arrows to be centered (both horizontally and vertically) in the matrix cell no matter ...
6
votes
2answers
273 views
Vertically align the tops of matrices in an equation
The following matrix equation looks great:
\begin{align*}
\overset{A}{\left[\begin{matrix}t_{1}&1\\
\vdots&\vdots\\
t_{n}&1
\end{matrix}\right]}
\overset{x}{\left[\begin{matrix}
...
4
votes
2answers
618 views
breaking lines in a matrix/array environment
I have a matrix whose entries are quite long and must be broken up across multiple lines. The desired break-points are the + operators separating terms in each matrix element. The following code is ...
7
votes
1answer
4k views
Matrix equation (esp. row vectors)
I'd like to write the matrix equation A = (x y) B (x y)^T, where (x y)^T is written as a column vector and B is a 2x2 matrix written as such. I can (almost) do this by, for example, the following:
A ...
3
votes
1answer
1k views
Vertical align in tikz matrix
\documentclass[a4paper,12pt]{report}
\usepackage{tikz}
\usetikzlibrary{matrix}
\begin{document}
\begin{center}
\begin{tikzpicture}
\tikzset{square matrix/.style={
matrix of nodes,
column ...
5
votes
1answer
731 views
Centering xymatrix in equation environment
The xymatrix diagram does not seem to vertically align when grouped in an equation environment. For example, this code produces the following image (which seems to place the xymatrix 2.5em lower than ...
6
votes
3answers
743 views
Same height for list of comma-separated vectors
I am trying to typeset a list of vectors spanning a multidimensional space, using the notation
span{v_1,v_2,...,v_n} (I haven't found out how to inline it as rendered latex)
i.e.:
span \{
...
3
votes
4answers
2k views
vertically aligning vectors and matrices
What are your techniques to make what's below look better? Thanks.
\documentclass{article}
\usepackage{amsmath}
\newcommand{\ud}{\mathop{\mathrm{{}d}}\mathopen{}}
\begin{document}
...
4
votes
3answers
2k views
How to get TikZ nodes not to change alignment?
I'm still working on rendering a nice block matrix. I've been using BMAT but it is irrelevant for the question at hand. I want to connect various entries in an array/matrix/BMAT by lines, and I'm ...