TIKZ 中的机构徽标

TIKZ 中的机构徽标

我对 TIKZ 了解一点,但我希望得到帮助或知道如何开始构建我所在机构的标志。

如果是全部的标志那就太好了,如果不是,那就只有上面的绿色和红色的标志。

在此处输入图片描述

答案1

只是因为我们不应该,并不意味着我们不能;)

\newlength\w\setlength\w{8.5mm}
\documentclass[border=.5\w]{standalone}
\usepackage{tikz}
\usepackage{raleway}
\renewcommand\familydefault{\sfdefault}
\definecolor{green}{HTML}{359730}
\definecolor{red}{HTML}{c90c10}
\definecolor{black}{HTML}{1d1d1d}
\tikzset{grid/.style = {minimum width=\w, minimum height=\w, rounded corners={#1}}}
\newcommand{\square}[2]{\node[fill=green,grid={.1\w}] at (#1,#2){};}
\renewcommand{\circle}[2]{\node[fill=red,grid={.5\w}] at (#1,#2){};}
\def\bigstyle{\fontsize{12mm}{11mm}\bfseries\selectfont\centering}
\def\medstyle{\fontsize{8mm}{10mm}\selectfont\centering}
\begin{document}
\color{black}
\begin{tikzpicture}
  \circle{-1}{4}\square{0}{4}\square{+1}{4}
  \square{-1}{3}\square{0}{3}
  \square{-1}{2}\square{0}{2}\square{+1}{2}
  \square{-1}{1}\square{0}{1}
  \node[fill=green,minimum width=9\w,minimum height=0.5mm,inner sep=0pt] at (0,-3.4){};
  \node at (0,-1) {\parbox{7cm}{\bigstyle{INSTITUTO\\FEDERAL}}};
  \node at (0,-2.7) {\parbox{7cm}{\medstyle{Goiano}}};
  \node at (0,-4.5) {\parbox{7cm}{\medstyle{Campus\\Rio Verde}}};
\end{tikzpicture}
\end{document}

我无法完全匹配字体。我找到的最接近的字体是轨道交通.间距也需要更精确。

在此处输入图片描述

相关内容