Asked by juhh

create a visual to represent autocracy parliamentry democracy and presidential democracy

All Answers 1

Answered by GPT-5 mini AI
I can give you a ready-to-use SVG infographic you can copy/paste into a file (save as something.svg) and open in a browser or import into design software. It shows three side-by-side panels: Autocracy, Parliamentary democracy, Presidential democracy, with simple icons and arrows and short captions.

Copy everything between the lines into a text file and save as government-types.svg

---
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="420" viewBox="0 0 1200 420" style="font-family: Arial, Helvetica, sans-serif">
<!-- Background -->
<rect width="1200" height="420" fill="#f7f9fb"/>
<!-- Title -->
<text x="600" y="36" font-size="20" text-anchor="middle" fill="#222" font-weight="700">Forms of Government: Autocracy, Parliamentary Democracy, Presidential Democracy</text>
<!-- Panel separators -->
<g transform="translate(20,60)">
<!-- PANEL 1: Autocracy -->
<rect x="0" y="0" width="360" height="320" rx="8" fill="#ffffff" stroke="#e0e6ee"/>
<text x="180" y="28" text-anchor="middle" font-size="16" fill="#b03a2e" font-weight="700">Autocracy</text>
<!-- Leader -->
<g transform="translate(180,120)">
<circle r="32" fill="#b03a2e" />
<rect x="-22" y="34" width="44" height="10" rx="5" fill="#b03a2e"/>
<text x="0" y="-2" text-anchor="middle" font-size="12" fill="#fff">Leader</text>
<!-- Crown -->
<path d="M-20 -38 L-12 -48 L-4 -38 L4 -48 L12 -38 L20 -48 L28 -38 L-28 -38 Z" fill="#ffd966" transform="translate(0,-8)"/>
</g>
<!-- People -->
<g>
<g transform="translate(60,220)">
<circle r="12" fill="#9aa6b4"/>
<rect x="-8" y="14" width="16" height="6" rx="3" fill="#9aa6b4"/>
</g>
<g transform="translate(140,240)">
<circle r="12" fill="#9aa6b4"/>
<rect x="-8" y="14" width="16" height="6" rx="3" fill="#9aa6b4"/>
</g>
<g transform="translate(220,220)">
<circle r="12" fill="#9aa6b4"/>
<rect x="-8" y="14" width="16" height="6" rx="3" fill="#9aa6b4"/>
</g>
<g transform="translate(300,240)">
<circle r="12" fill="#9aa6b4"/>
<rect x="-8" y="14" width="16" height="6" rx="3" fill="#9aa6b4"/>
</g>
</g>
<!-- Arrows from leader to people -->
<defs>
<marker id="arrow" markerWidth="8" markerHeight="8" refX="6" refY="4" orient="auto">
<path d="M0,0 L8,4 L0,8 z" fill="#b03a2e"/>
</marker>
</defs>
<path d="M180,152 L70,210" stroke="#b03a2e" stroke-width="3" fill="none" marker-end="url(#arrow)"/>
<path d="M180,152 L140,232" stroke="#b03a2e" stroke-width="3" fill="none" marker-end="url(#arrow)"/>
<path d="M180,152 L260,210" stroke="#b03a2e" stroke-width="3" fill="none" marker-end="url(#arrow)"/>
<path d="M180,152 L320,232" stroke="#b03a2e" stroke-width="3" fill="none" marker-end="url(#arrow)"/>
<!-- Caption -->
<text x="180" y="310" text-anchor="middle" font-size="12" fill="#333">Power concentrated in one leader; decisions flow top-down.</text>
<!-- PANEL 2: Parliamentary -->
<rect x="390" y="0" width="360" height="320" rx="8" fill="#ffffff" stroke="#e0e6ee"/>
<text x="570" y="28" text-anchor="middle" font-size="16" fill="#2b6fab" font-weight="700">Parliamentary Democracy</text>
<!-- Parliament building -->
<g transform="translate(570,120)">
<rect x="-80" y="10" width="160" height="60" fill="#dbeaf8" stroke="#c3dbf5"/>
<!-- columns -->
<g fill="#a6cdef">
<rect x="-72" y="-30" width="20" height="40"/>
<rect x="-40" y="-30" width="20" height="40"/>
<rect x="-8" y="-30" width="20" height="40"/>
<rect x="24" y="-30" width="20" height="40"/>
</g>
<rect x="-100" y="-42" width="200" height="18" rx="6" fill="#cfe6fb"/>
<text x="0" y="-28" text-anchor="middle" font-size="10" fill="#145a96">Parliament</text>
<!-- seats rows -->
<g transform="translate(0,48)">
<rect x="-110" y="0" width="220" height="8" rx="4" fill="#eef5fb"/>
<rect x="-110" y="12" width="220" height="8" rx="4" fill="#eef5fb"/>
<rect x="-110" y="24" width="220" height="8" rx="4" fill="#eef5fb"/>
<!-- blocks of party seats -->
<rect x="-90" y="0" width="60" height="8" fill="#2b6fab"/>
<rect x="-10" y="0" width="40" height="8" fill="#78b3d9"/>
<rect x="40" y="0" width="60" height="8" fill="#aacde8"/>
</g>
</g>
<!-- Arrow: Parliament -> Prime Minister (indirect) -->
<g>
<rect x="520" y="210" width="100" height="38" rx="6" fill="#e9f5fb" stroke="#cfe6fb"/>
<text x="570" y="234" text-anchor="middle" font-size="12" fill="#145a96">Prime Minister</text>
<path d="M570,148 L570,210" stroke="#2b6fab" stroke-width="3" marker-end="url(#arrow)"/>
<path d="M570,248 L570,238" stroke="#2b6fab" stroke-width="3" marker-end="url(#arrow)"/>
</g>
<!-- People voting (indirect) -->
<g transform="translate(480,270)" >
<circle r="10" cx="0" cy="0" fill="#9aa6b4"/>
<circle r="10" cx="30" cy="0" fill="#9aa6b4"/>
<circle r="10" cx="60" cy="0" fill="#9aa6b4"/>
<path d="M30,0 L530,150" stroke="#9aa6b4" stroke-dasharray="4 4"/>
</g>
<!-- Caption -->
<text x="570" y="310" text-anchor="middle" font-size="12" fill="#333">Legislature (elected) selects the executive; fused executive-legislative powers.</text>

<!-- PANEL 3: Presidential -->
<rect x="780" y="0" width="360" height="320" rx="8" fill="#ffffff" stroke="#e0e6ee"/>
<text x="960" y="28" text-anchor="middle" font-size="16" fill="#2e7f6f" font-weight="700">Presidential Democracy</text>
<!-- President -->
<g transform="translate(900,110)">
<circle r="30" fill="#2e7f6f"/>
<text x="0" y="4" text-anchor="middle" font-size="12" fill="#fff">President</text>
</g>
<!-- Legislature building -->
<g transform="translate(840,210)">
<rect x="-70" y="-28" width="140" height="48" fill="#e8f6f2" stroke="#cdeee6"/>
<rect x="-90" y="-42" width="180" height="18" rx="6" fill="#daf3ec"/>
<g fill="#c0e7d8">
<rect x="-60" y="-20" width="16" height="36"/>
<rect x="-30" y="-20" width="16" height="36"/>
<rect x="0" y="-20" width="16" height="36"/>
<rect x="30" y="-20" width="16" height="36"/>
</g>
<text x="0" y="6" text-anchor="middle" font-size="10" fill="#1c6f5f">Legislature</text>
</g>
<!-- Judiciary -->
<g transform="translate(1020,210)">
<rect x="-36" y="-20" width="72" height="44" rx="6" fill="#f1fbf8" stroke="#d5f2e8"/>
<rect x="-36" y="-28" width="72" height="8" rx="4" fill="#e6faf4"/>
<text x="0" y="4" text-anchor="middle" font-size="10" fill="#2e7f6f">Courts</text>
</g>
<!-- Arrows showing checks & balances -->
<defs>
<marker id="arrowGreen" markerWidth="8" markerHeight="8" refX="6" refY="4" orient="auto">
<path d="M0,0 L8,4 L0,8 z" fill="#2e7f6f"/>
</marker>
<marker id="arrowTeal" markerWidth="8" markerHeight="8" refX="6" refY="4" orient="auto">
<path d="M0,0 L8,4 L0,8 z" fill="#1c6f5f"/>
</marker>
</defs>
<!-- President -> Legislature (veto) -->
<path d="M900,140 L900,190 L900,190 L900,200" stroke="#2e7f6f" stroke-width="3" fill="none" marker-end="url(#arrowGreen)"/>
<text x="870" y="175" font-size="10" fill="#2e7f6f">Veto</text>
<!-- Legislature -> President (confirmation / oversight) -->
<path d="M850,210 L880,160" stroke="#1c6f5f" stroke-width="3" fill="none" marker-end="url(#arrowTeal)"/>
<text x="815" y="190" font-size="10" fill="#1c6f5f">Oversight / Confirm</text>
<!-- Courts -> actions (review) -->
<path d="M1056,196 L930,136" stroke="#0f6b59" stroke-width="3" fill="none" marker-end="url(#arrowTeal)"/>
<text x="1048" y="182" font-size="10" fill="#0f6b59">Judicial review</text>
<!-- People elect both branches -->
<g transform="translate(900,270)">
<circle r="10" cx="-40" cy="0" fill="#9aa6b4"/>
<circle r="10" cx="-10" cy="0" fill="#9aa6b4"/>
<circle r="10" cx="20" cy="0" fill="#9aa6b4"/>
<path d="M860,270 L900,140" stroke="#9aa6b4" stroke-dasharray="4 4"/>
<path d="M940,270 L870,210" stroke="#9aa6b4" stroke-dasharray="4 4"/>
</g>
<!-- Caption -->
<text x="960" y="310" text-anchor="middle" font-size="12" fill="#333">Separately elected executive and legislature; checks and balances among branches.</text>

</g>
</svg>
---

Notes and suggestions:
- To use: paste the SVG text into a file named e.g. government-types.svg and open it in a browser or import into Illustrator/Inkscape. You can edit colors, text, or layout in any SVG editor.
- If you want a PNG, open the SVG in a browser and print/export to PNG, or open in design software and export.
- If you want a different style (photorealistic icons, slide-friendly PowerPoint, or a single combined diagram), tell me which format and style and I’ll adapt it.