我正在尝试用乳胶制作一个小徽标。我画了一幅图(决策树),我想在旁边添加一段文字。此外,我需要将绘图缩小,与旁边的文字大小相同。
只是一张随机的图片来展示我想要什么样的形状:
到目前为止,我画了一张图,并尝试在旁边添加一些文字。不幸的是,没有结果。
\documentclass{scrartcl}
\usepackage[a4paper,margin=1cm,landscape]{geometry}
\usepackage{tikz}
%%%<
\usepackage{verbatim}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{5pt}%
%%%>
\usetikzlibrary{positioning,shadows,arrows}
\begin{document}
\begin{figure}
\begin{minipage}[c]{7cm}
\begin{tikzpicture}[
state/.style={circle, draw=none, fill=orange, circular drop shadow,
text centered, anchor=north, text=white},
leaf/.style={circle, draw=none, fill=red, circular drop shadow,
text centered, anchor=north, text=white},
level distance=0.5cm, growth parent anchor=south
]
\node (State00) [state] {$X$}
child{ [sibling distance=3cm]
node (State01) [state] {$f(x)_{1}$}
child{
child{ [sibling distance=2cm]
node (State02) [state] {$f(x)_{11}$}
child{
child{
node (State03) [leaf] {$\hat{y}_{1}$}
}
}
child{
child{ [sibling distance=2.0cm]
node (State04) [state] {$\hat{y}_{2}$}
}
}
}
}
child{ [sibling distance=2cm]
child{
node (State10) [state] {$f(x)_{12}$}
child{
child{
node (State11) [leaf] {$\hat{y}_{3}$}
}
}
child{
child{
node (State12) [state] {$\hat{y}_{4}$}
}
}
}
}
}
;
\end{tikzpicture}]
\end{minipage}%
\begin{minipage}[c]{\textwidth-7cm}
Some text describing the image.
Some text describing the image.
Some text describing the image.
\end{minipage}
\end{figure}
\end{document}
文本应具有以下形式:
\documentclass{article}
\pagestyle{empty}
\usepackage{xcolor}
\usepackage{bm}
\usepackage{setspace}
\begin{document}
\setstretch{0.5}
\begin{center}
Nam$\textcolor{orange}{\bm{{\hat{e}}}}$ of New \\
~\\
Team
\end{center}
您能告诉我解决办法吗?
编辑
在@Guilherme Zanotelli 的帮助下,我成功了,并设置了正确的比例。但是当我将其保存为 pdf 时,徽标非常小。
如何才能让它变大并且比例不变?
用更大的字体解决了
答案1
我不明白这个问题实际上是什么,但我认为其中一个问题是让它Nam*ê* of New Team
出现在决策树的右侧。
因此,下面是在 tikzpicture 中执行此操作的一种方法(不需要小页面)。
\documentclass{article}
\usepackage[a4paper,margin=1cm,landscape]{geometry}
\usepackage{tikz,pbox}
\usepackage{xcolor}
\usepackage{bm}
\usepackage{setspace}
%%%<
\usepackage{verbatim}
\usepackage[active,tightpage,floats]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{5pt}%
%%%>
\usetikzlibrary{positioning,shadows,arrows}
\begin{document}
\begin{figure}[h]
\begin{tikzpicture}[
state/.style={circle, draw=none, fill=orange, circular drop shadow,
text centered, anchor=north, text=white},
leaf/.style={circle, draw=none, fill=red, circular drop shadow,
text centered, anchor=north, text=white},
level distance=0.5cm, growth parent anchor=south
]
\node (State00) [state] {$X$}
child{ [sibling distance=3cm]
node (State01) [state] {$f(x)_{1}$}
child{
child{ [sibling distance=2cm]
node (State02) [state] {$f(x)_{11}$}
child{
child{
node (State03) [leaf] {$\hat{y}_{1}$}
}
}
child{
child{ [sibling distance=2.0cm]
node (State04) [state] {$\hat{y}_{2}$}
}
}
}
}
child{ [sibling distance=2cm]
child{
node (State10) [state] {$f(x)_{12}$}
child{
child{
node (State11) [leaf] {$\hat{y}_{3}$}
}
}
child{
child{
node (State12) [state] {$\hat{y}_{4}$}
}
}
}
}
};
\node[right] at (current bounding box.east) {\pbox{\textwidth}{\relax\ifvmode\centering\fi Nam$\textcolor{orange}{\bm{{\hat{e}}}}$ of New \\
~\\
Team}};
\end{tikzpicture}
\end{figure}
\end{document}
答案2
这是改编自Guilherme Zanotelli 的回答,使用 Forest,我对此比较满意。它还使用了 ,standalone
在我看来比 更省事preview
(但使用preview
,具体取决于配置)。
在徽标中,字体选择是关键决定因素。虽然我不确定我会推荐什么字体,因为这在很大程度上取决于上下文和受众,但 Computer Modern 不太可能是一个好的选择。为了举例说明,我kpfonts
在下面使用了该字体。
我还特意演示了如何为右侧的文本选择任意字体大小。第一个数字是点大小。第二个是基线跳过。可缩放字体至关重要。默认情况下,您可能会获得位图 Computer Modern。一切都很好,但绝对不适合这里。(如果您想要 CM,请\usepackage[T1]{fontenc}
单独使用以确保获得可缩放版本。)
我增加了树中的线条宽度,因为如果徽标尺寸较小,您不希望线条消失。至少,我认为您不希望如此。
\documentclass[border=10pt,multi,tikz,border=5pt]{standalone}
\usepackage{forest,bm}
\usetikzlibrary{shadows}
\usepackage[T1]{fontenc}
\usepackage{kpfonts}
\begin{document}
\begin{forest}
state/.style={fill=orange},
leaf/.style={fill=red},
for tree={
text centered,
child anchor=parent,
text=white,
circle,
circular drop shadow,
math content,
state,
font=\large,
edge={line width=1pt},
},
for descendants={
edge path'={(.child anchor) -- +(0,7.5mm) -- (!u.parent anchor)},
l sep'=15mm,
},
l sep'=7.5mm,
where n children=0{
!u.s sep'=15mm,
}{},
[X
[f(x)_{1}
[f(x)_{11}
[\hat{y}_{1}, leaf]
[\hat{y}_{2}]
]
[f(x)_{12}
[\hat{y}_{3}, leaf]
[\hat{y}_{4}]
]
]
]
\node [right, align=center, font=\fontsize{50pt}{75pt}\selectfont] at (current bounding box.east) {Nam$\textcolor{orange}{\bm{{\hat{e}}}}$ of New\\Team};
\end{forest}
\end{document}