圆圈内有文字的图表?

圆圈内有文字的图表?

我想要的只是得到一张最终能给我类似附图的图像(如果它具有一些颜色和高分辨率级别就更好了): 在此处输入图片描述

我完全理解这是一个相当重复的问题,但是当我尝试这里建议的一些解决方案时,我总是得到一些错误和不同形状的所需图像!

请不要提及这是一个重复的问题,至少尝试帮助我!

答案1

pstricks和 的解决方案tabularx

\documentclass[11pt, a4paper, pdf, svgnames]{article}
    \usepackage[utf8]{inputenc}
    \usepackage[T1]{fontenc}
    \usepackage{lmodern}
    \usepackage{geometry}
    \usepackage{tabularx}
    \usepackage{ pst-node}
    \usepackage{auto-pst-pdf}
\begin{document}

\sffamily
\noindent
\begin{tabularx}{\linewidth}{@{}m{58mm}>{Apple:}lX@{}}
\smash{\raisebox{-\dimexpr\height + 3ex}{
\begin{pspicture}[]%
\LARGE
\cnodeput[framesep = 4pt]{0}(0,0){W}{\color{Goldenrod}WHY}
\pscircle(0,0){1.85}\rput(0,-1.3){HOW}
\pscircle(0,0){2.7}\rput(0,-2.25){WHAT}
\end{pspicture}}}
 & \multicolumn{2}{>{\bfseries\large}l}{WHY = The Purpose} \\
 & \multicolumn{2}{>{\itshape}l}{What is your cause? What do you believe?}\\[1ex]
 & & We believe in challenging the status quo and doing this differently \\[2ex]
 & \multicolumn{2}{>{\bfseries\large}l}{HOW = The Process} \\
 & \multicolumn{2}{>{\itshape}l}{Specific actions taken to realise the Why}\\[1ex]
 & & Our products are beautifully designed and easy to use \\[2ex]
 & \multicolumn{2}{ >{\bfseries\large}l}{WHAT = The Result} \\
 & \multicolumn{2}{ >{\itshape}l}{What do you do? The result of Why.Proof} \\[1ex]
 & & We make computers
\end{tabularx}
%
\end{document}

在此处输入图片描述

相关内容