TikZ 中有国旗的集合吗?

TikZ 中有国旗的集合吗?

我尝试搜索,但找不到任何包含使用 TikZ 定义的最常见国家国旗的存储库。这一定非常有可能,因为大多数国旗实际上都是矢量。

答案1

更新

遗憾的是,此解决方案不再有效(自 TeX Live 2015 起)。在 的变更历史记录中minitoc

2015/07/13

  • Jean-Pierre F. Drucbert 于 2009 年去世。因此,这个软件包现在正在寻找维护者。
  • 通过删除标志和其他图像,将文档大小从 25+mb 减少到少于 2mb。

您可以从 TeXLive 历史档案中检索文档的原始版本这里

原始答案

令人震惊的离奇记录minitoc软件包已为您完成大部分工作。(尽管带有.png图像。)因此,对于您能想到的任何标志,以下内容均有效:(您也可以找到地图。)

\documentclass{article}
\usepackage{graphicx}
% change the year to match your current distribution up to 2014
\graphicspath{{/usr/local/texlive/2010/texmf-dist/doc/latex/minitoc/}}
\begin{document}
\includegraphics[width=.3\textwidth]{brazil-f}
\includegraphics[width=.3\textwidth]{vanuatu-f}
\includegraphics[width=.3\textwidth]{belarus-f}
\end{document}

仅供娱乐,这里是巴西、瓦努阿图和白俄罗斯的国旗。

巴西瓦努阿图白俄罗斯国旗

答案2

现在(2021 年 4 月)有了!

威廉·哈格尔创建了包裹worldflags

这里有一些例子:

\documentclass{article}
\usepackage{worldflags}
\begin{document}
\begin{center}
Standard flags

\worldflag{IT}
\worldflag{BR}
\worldflag{AD}\vspace{10pt}

Flags with special dimensions

\worldflag{CH}
\worldflag{GB}
\worldflag{VA}\vspace{10pt}

There are also some options 

(for the complete list see the package documentation)

\worldflag[length=3cm]{EU}
\worldflag[grid]{UNO}
\worldflag[noemblem]{EC}
\end{center}
\end{document}

在此处输入图片描述

答案3

bclogo还包括其中一些格式.mps

在此处输入图片描述

答案4

有一个技巧基于包pst 标志

从以下位置下载 zip 文件GitHub 项目页面并将其放入你的 tex 文件路径中,参见包装文档

用法:\flagTwoLetterCountryCode[width]。

\documentclass{article}
\usepackage{pst-flags}
\begin{document}
Flag of US: \rput(0,0){\flagUS[2]}
\end{document}

相关内容