I am trying to reproduce such image with Tikz.
I`ve started writing latex code, and I produced image below:
And the latex code is below.
I would like to request your help to make my generated picture as similar as possible from the original one.
\documentclass[10pt]{article}
\renewcommand{\rmdefault}{bch}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usetikzlibrary{arrows,decorations.pathmorphing,backgrounds,fit,positioning,shapes.symbols,shapes.arrows, chains, arrows.meta}
\tikzset{>={Latex[width=1mm,length=1mm]}}
\begin{document}
\begin{figure}[h]
\centering
\begin{tikzpicture}
[force/.style={rectangle, draw, fill=black!10, inner sep=5pt, text badly centered, minimum height=0.5cm, font=\bfseries\sffamily}]
\node [force] (planejar) {Planejar};
\node [force, right=1cm of planejar] (adquirir) {Adquirir};
\node [force, right=1cm of adquirir] (processar) {Processar};
\node [force, right=1cm of processar] (analisar) {Analisar};
\node [force, right=1cm of analisar] (preservar) {Preservar};
\node [force, right=1cm of preservar] (publicar) {Publicar};
\draw[->, >=latex, black!10!white, line width=10pt] ([yshift=-1cm]planejar.south) to node[black]{Metadados e Documentação} ([yshift=-1cm]publicar.south);
\draw[->, >=latex, black!10!white, line width=10pt] ([yshift=-2cm]planejar.south) to node[black]{Gestão da Qualidade} ([yshift=-2cm]publicar.south);
\draw[->, >=latex, black!10!white, line width=10pt] ([yshift=-3cm]planejar.south) to node[black]{Disponibilidade e Segurança dos Dados} ([yshift=-3cm]publicar.south);
\path[->,thick]
(planejar) edge (adquirir)
(adquirir) edge (processar)
(processar) edge (analisar)
(analisar) edge (preservar)
(preservar) edge (publicar);
\end{tikzpicture}
\caption{Modelo de ciclo de vida dos dados de pesquisa proposto pela USGS. Adaptado de}
\label{fig:modeloUSG}
\end{figure}
\end{document}




text badly centereddo? Never seen this used before. – cfr Sep 23 '17 at 16:48shapes.arrowsto get node shapes for the outlined arrows in the top line. I think it will be easiest to get the text closer to just type the text you want directly, rather than typing other text and then finding it doesn't match the target image. That is, I take it you want the text, if you really mean 'as similar as possible'. Otherwise, you obviously shouldn't lie to Babel. – cfr Sep 23 '17 at 16:51