Tagged Questions
11
votes
2answers
139 views
How to define an environment that begins with a node?
Please see the following definition:
\tikzstyle{boxStyle} = [draw=blue!80, fill=blue!9, very thick,
rectangle, rounded corners=3mm, inner sep=10pt, inner ysep=15pt]
...
7
votes
2answers
342 views
How to put environment text inside node?
Consider a simple environment in the documentclass as
\newenvironment{abstract}{
\node (tbl) {
};
}
The content of
\begin{abstract}
Content
\end{abstract}
will goes ...
19
votes
2answers
1k views
Defining a new environment whose contents go in a TikZ node
I would like to define an environment which typesets the contents in a box, and I'd like to use TikZ (I'm aware of alternatives like fancybox). So I would like something like
\newenvironment{abox}%
...