Tagged Questions
0
votes
0answers
39 views
TikZ triming text based on an other node placement
I am using tikz to create a page layout comprising different nodes, each node containing a bit of text.
The nodes are placed relative to each other.
What I would like to achieve is that for some ...
3
votes
1answer
85 views
Tikz vertical alignement text and shape
I want to vertically align sans serif font with a rectangle. The following code show the problem:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usetikzlibrary[positioning]
...
2
votes
1answer
148 views
TikZ node in normal text
I would like to place a TikZ node inside normal text to get the fancy boxes. But the box is on the same baseline. I would like to get the text on the baseline. What can I do?
\documentclass{article}
...
4
votes
1answer
173 views
How to draw hierarchical boxes with vertical lines of sight? [duplicate]
Possible Duplicate:
Creating a node fitting the horizontal width of two other nodes
I would like to draw a hierarchy of boxes where the borders of the boxes are vertically in the same line ...
2
votes
2answers
509 views
How to align rows in Tikz nodes & tabular environment
In the attached image, you can see the text is not aligning properly. At the end it started to align as required. Sorry I can not reduce the MWE any more.
since the preamble in big so I will put ...
15
votes
2answers
372 views
How to center a typewriter (ttfamily) '+'
I would like to draw a circular TikZ node with + in its center, but font=\ttfamily moves it up. Why? How to solve it?
\documentclass[border=3mm]{standalone}
\usepackage{tikz}
\begin{document}
...
7
votes
1answer
658 views
TikZ: vertically aligning text in nodeparts
I can't seem to vertically align text in different nodeparts of the same node.
This MWE
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{shapes}
\begin{document}
\begin{tikzpicture}
...
3
votes
2answers
525 views
How to make two rectangles top adjusted horizontally in TiKZ?
I have 2 rectangles and an operator between them, the one on the right is longer than the one on the left:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}
...
4
votes
1answer
971 views
Vertically center a node with the current line in TikZ
Consider the following:
\documentclass{article}
\usepackage{tikz}
\begin{document}
This is a
\begin{tikzpicture}
\node[draw, rectangle, align=left] {%
And here \\[.3em]
is
...
3
votes
1answer
431 views
Placing a list of nodes in TikZ
I would like to define a macro, which would take a list of node definitions, like this
\mymacro[boxes={{\node[rectangle] {foo};},
{\node[rectangle] {bar};},
...
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 ...