在 TikZ 中绘制计算机,但屏幕内文本太小

在 TikZ 中绘制计算机,但屏幕内文本太小

我正在使用发布在此链接在 TikZ 中绘制计算机图形。选项允许我自定义计算机的几个方面,例如颜色、文本和文本颜色。但我不知道如何使文本变大。tikzsetfont中的选项comp/.style已经带有\Huge命令。正如您在链接中包含的图像中看到的那样,周围计算机中的文本很小。我怎样才能使它变大?

提前谢谢您。链接本身提供了 MWE 来绘制我所指的相同图像。

答案1

足够大?

在此处输入图片描述

% Computer diagram
% Author: Elke Schubert
\documentclass[tikz,border=10pt]{standalone}
\usetikzlibrary{fit}

\usepackage{type1cm}


\tikzset{
  comp/.style = {
    minimum width  = 8cm,
    minimum height = 4.5cm,
    text width     = 8cm,
    inner sep      = 0pt,
    text           = green,
    align          = center,
    font           = \fontsize{64}{64}\selectfont,
    transform shape,
    thick
  },
  monitor/.style = {draw = none, xscale = 18/16, yscale = 11/9},
  display/.style = {shading = axis, left color = black!60, right color = black},
  ut/.style      = {fill = gray}
}
\tikzset{
  computer/.pic = {
    % screen (with border)
    \node(-m) [comp, pic actions, monitor]
      {\phantom{\parbox{\linewidth}{\tikzpictext}}};
    % display (without border)
    \node[comp, pic actions, display] {\tikzpictext};
    \begin{scope}[x = (-m.east), y = (-m.north)]
      % filling the lower part
      \path[pic actions, draw = none]
        ([yshift=2\pgflinewidth]-0.1,-1) -- (-0.1,-1.3) -- (-1,-1.3) --
        (-1,-2.4) -- (1,-2.4) -- (1,-1.3) -- (0.1,-1.3) --
        ([yshift=2\pgflinewidth]0.1,-1);
      % filling the border of the lower part
      \path[ut]
        (-1,-2.4) rectangle (1,-1.3)
        (-0.9,-1.4) -- (-0.7,-2.3) -- (0.7,-2.3) -- (0.9,-1.4) -- cycle;
      % drawing the frame of the whole computer
      \path[pic actions, fill = none]
        (-1,1) -- (-1,-1) -- (-0.1,-1) -- (-0.1,-1.3) -- (-1,-1.3) --
        (-1,-2.4) coordinate(sw)coordinate[pos=0.5] (-b west) --
        (1,-2.4) -- (1,-1.3) coordinate[pos=0.5] (-b east) --
        (0.1,-1.3) -- (0.1,-1) -- (1,-1) -- (1,1) -- cycle;
      % node around the whole computer
      \node(-c) [fit = (sw)(-m.north east), inner sep = 0pt] {};
    \end{scope}
  }
}
% We have two rectangle nodes with the common anchors available
% screen (with border): <picname>-m, whole computer: <picname>-c
% The anchor of the whole pic is <picname>-m.center and cannot be changed
\begin{document}
\begin{tikzpicture}
  \pic(comp0) [
    draw,
    fill = gray!30,
    pic text = {Very long}
  ]
  {computer};
  \path(comp0-c.center) pic 
    foreach[count=\i] \farbe in {yellow, orange, red, red!50!blue, blue, green}
    (comp\i) [
      draw = \farbe,
      fill = \farbe!30,
      display/.append style = {left color=\farbe!80!black!80},
      scale = 0.25,
      pic text = {Text \i}
    ] at +(60*\i:8){computer};
  \foreach \i in {1,2,4,5} \draw (comp\i-c) -- (comp0-c);
  \foreach \i in {3,6} \draw (comp\i-m) -- (comp0-c);
\end{tikzpicture}
\end{document}

相关内容