Tagged Questions
1
vote
0answers
29 views
headlines are not shown with tikz input (plain TeX) [duplicate]
I'm usign plain TeX with custom headlines. If I load Tikz packages with
\input tikz
then headlines are blank. The following are my headlines (some commands don't belong to plain TeX, but I think ...
16
votes
3answers
200 views
Strange behaviour with PGF/TikZ and Plain TeX output routine
I noticed a strange behavior when running PGF/tikZ with pdfTeX on my Debian box :
a simple session without tikz:
pdftex
**\relax
*Hello World
*\bye
do output the page number on the page footer.
On ...
6
votes
1answer
262 views
Dashed draw with a node including a fraction
Is this intended behavior (with plain XeTeX):
\input tikz
\tikz\draw[dashed] node {$3T\over4$};
\bye
It renders as: !?
The fraction line is dashed, too! Is this intentional? Is there something I ...
5
votes
1answer
199 views
PGF align plain TeX
I don't get the excepted result with the following code
\input tikz
\tikzpicture
\node[draw,align=center] {Hello \hfil\break World};
\endtikzpicture
\bye
There is no break after Hello. I don't ...
2
votes
1answer
159 views
Why does tikz change the behavior of \vfil on my first page?
Note the way this renders when using pdftex.
\input eplain
\beginpackages
\usepackage{url}
\usepackage{color}
\endpackages
% comment in the following 4 lines
% \input tikz
% \enablehyperlinks
% ...
7
votes
1answer
391 views
Can \usepackage{color} and \input tikz work together in Plain TeX/eplain?
I use Plain TeX and Eplain. In my document I'm using both the color and url packages inside the \beginpackages..\endpackages block. Just now I tried adding \input tikz.tex (as the TikZ manual states) ...
4
votes
3answers
667 views
Non-vertically-centered TikZ matrix of nodes cell content
How can you make the matrix cell contents aligned to the top? I am using plain format with XeTeX.
\input tikz
\usetikzlibrary{matrix}
$$\hbox{I'd like for the cells to be top-aligned}\cases{
...
5
votes
1answer
321 views
Figure-macro with TikZ: account for y-axis labels
How can I account for the space taken by the y-axis labels? Can I somehow \setbox the axis labels, or something similar? Because now, the y-axis labels stick out of the text block width (because I ...