答案1
这是我的新手尝试。
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node[draw,
text width=6cm,
align=left] at (0,0)
(health)
{\textbf{Health}\\- Using modern energy reduces exposure to hazardous pollutants.\\- Avoiding drudgery such as collecting fuelwood improves health condition of, in particular, women and children.\\- Access to electricity enables vaccination and medicine storage by a refrigerator.};
\node[draw,
text width=6cm,
align=left] at (8,0)
(education)
{\textbf{Education}\\- Lighting appliances enables to study at night.\\- Utilization of modern energy results in freeing up from drudgery and creating time for study.\\- Electricity helps narrow the digital divide through Information Communication Technologies (ICTs).};
\node[draw,
minimum height=1.5cm,
text width=3cm,
inner sep=0pt,
align=center] at (4,-4)
(energy)
{\large{\textbf{Energy}}};
\node[draw,
text width=6cm,
align=left] at (0,-8)
(income)
{\textbf{Income}\\- Enterprise development through electrification creates job.\\- Mechanization in industry achieves higher productivity.\\- Small-scale energy system in rural areas generates local industry.};
\node[draw,
minimum width=2cm,
text width=6cm,
minimum height=1cm,
align=left] at (8,-8)
(environment)
{\textbf{Environment}\\- Reduction in use of fuelwood pretends deforestation.\\- Use of efficient electric appliances saves energy consumption.\\- Application of renewable energy promotes climate protection.};
\draw[->] (energy) (2.5,-3.25) -- (health.south);
\draw[->] (energy) (5.5,-3.25) -- (education.south);
\draw[->] (energy) (2.5,-4.75) -- (income.north);
\draw[->] (energy) (5.5,-4.75) -- (environment.north);
\end{tikzpicture}
\end{document}