tikzpicture
我正在使用如下方法绘制形状
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[thick,scale=1.7, every node/.style={transform shape}]
\tikzstyle{block} = [rectangle, draw, text width=5mm, text centered, minimum height=4mm]
\tikzstyle{line} = [draw, -]
\node [scale=.9](x1) {};
\coordinate [below of=x1, node distance=1cm] (bx1);
\node [block, below of=x1, node distance=.55cm,scale=.6] (f) {$f_{3n-1}^{(1)}$};
\path[line] (x1) -- (f);
\draw[->] (f) -- (bx1);
\end{tikzpicture}
\end{document}
上述行的 .tex 文件输出如下
我的问题:我应该对代码做哪些更改,以便将其3n-1
包含在框主体中?
我改变了scale
命令,但是输出格式不正确。
编辑:我正在画一幅图,它的第一轮由
答案1
快速解决方案是更改您定义的text width=5mm
样式block
。或者删除该选项并让 TikZ 确定适合节点文本所需的最小宽度。