How can this triangle figure be modeled/drawn with TikZ?Fill style that looks like hand-drawn / hand-filled with crayonHow to draw/annotate with TikZ on molecules drawn with chemfig package?How can I draw this graph?Creating this image in TiKZHow to generate this image?How to draw this figure in tikz?Can a similar figure be drawn using Tikz?How are figures drawn in academic articles?How can I draw this type of arrow (connecting lines)?How can I give this perspective with Tikz?
Why did nobody know who the Lord of this region was?
Why did the soldiers of the North disobey Jon?
Divisor Rich and Poor Numbers
What dog breeds survive the apocalypse for generations?
Is Big Ben visible from the British museum?
Cuban Primes
Canadian citizen who is presently in litigation with a US-based company
How can I make dummy text (like lipsum) grey?
What do astronauts do with their trash on the ISS?
Who is frowning in the sentence "Daisy looked at Tom frowning"?
Enqueue Queueable class multiple times
FIFO data structure in pure C
How could it be that 80% of townspeople were farmers during the Edo period in Japan?
When did Britain learn about American independence?
How come Arya Stark didn't burn in Game of Thrones Season 8 Episode 5
Can I pay my credit card?
refer string as a field API name
Why does the U.S military use mercenaries?
Is it possible to pass a pointer to an operator as an argument like a pointer to a function?
Omit property variable when using object destructuring
Gimp perspective tool is not actually transforming
Why is vowel phonology represented in a trapezoid instead of a square?
What is this rubber on gear cables
Why do academics prefer Mac/Linux?
How can this triangle figure be modeled/drawn with TikZ?
Fill style that looks like hand-drawn / hand-filled with crayonHow to draw/annotate with TikZ on molecules drawn with chemfig package?How can I draw this graph?Creating this image in TiKZHow to generate this image?How to draw this figure in tikz?Can a similar figure be drawn using Tikz?How are figures drawn in academic articles?How can I draw this type of arrow (connecting lines)?How can I give this perspective with Tikz?
How can the following image be drawn?

tikz-pgf graphics draw
New contributor
TikZ Noob is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
How can the following image be drawn?

tikz-pgf graphics draw
New contributor
TikZ Noob is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Welcome to TeX.SX! The short answer is that, yes, this is possible but I have to warn you that questions of the form "Please draw this for me" that show no effort on the part of OP, often don't get answered. You will get more help if you post some code showing what you have tried and give a minimal working example. A quick search on TeX.SX for drawing functions (with tikz or pstricks) will give you an idea of where to start from.
– Andrew
May 11 at 13:33
add a comment |
How can the following image be drawn?

tikz-pgf graphics draw
New contributor
TikZ Noob is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
How can the following image be drawn?

tikz-pgf graphics draw
tikz-pgf graphics draw
New contributor
TikZ Noob is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
TikZ Noob is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited May 11 at 13:30
Bernard
179k779211
179k779211
New contributor
TikZ Noob is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked May 11 at 13:25
TikZ NoobTikZ Noob
132
132
New contributor
TikZ Noob is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
TikZ Noob is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Welcome to TeX.SX! The short answer is that, yes, this is possible but I have to warn you that questions of the form "Please draw this for me" that show no effort on the part of OP, often don't get answered. You will get more help if you post some code showing what you have tried and give a minimal working example. A quick search on TeX.SX for drawing functions (with tikz or pstricks) will give you an idea of where to start from.
– Andrew
May 11 at 13:33
add a comment |
Welcome to TeX.SX! The short answer is that, yes, this is possible but I have to warn you that questions of the form "Please draw this for me" that show no effort on the part of OP, often don't get answered. You will get more help if you post some code showing what you have tried and give a minimal working example. A quick search on TeX.SX for drawing functions (with tikz or pstricks) will give you an idea of where to start from.
– Andrew
May 11 at 13:33
Welcome to TeX.SX! The short answer is that, yes, this is possible but I have to warn you that questions of the form "Please draw this for me" that show no effort on the part of OP, often don't get answered. You will get more help if you post some code showing what you have tried and give a minimal working example. A quick search on TeX.SX for drawing functions (with tikz or pstricks) will give you an idea of where to start from.
– Andrew
May 11 at 13:33
Welcome to TeX.SX! The short answer is that, yes, this is possible but I have to warn you that questions of the form "Please draw this for me" that show no effort on the part of OP, often don't get answered. You will get more help if you post some code showing what you have tried and give a minimal working example. A quick search on TeX.SX for drawing functions (with tikz or pstricks) will give you an idea of where to start from.
– Andrew
May 11 at 13:33
add a comment |
2 Answers
2
active
oldest
votes
TikZ has all sorts of shapes built in, including such triangles. Using these you can avoid having to specify explicit coordinates, and it is then much easier to make the shape a bit larger, to rotate it and so on.
documentclass[tikz,border=3.14mm]standalone
usetikzlibraryshapes.geometric
begindocument
begintikzpicture[font=sffamily,nodes=align=center]
path node[regular polygon, regular polygon sides=3, draw,fill=gray!30,
inner sep=3em,rotate=180] (3gon)
node[below] at (3gon.corner 1)largebfseries Empathie\ Einf"uhlung
node[right] at (3gon.corner 2)largebfseries Anerkennung\ bedingungsfreie\ Wertsch"atzung
node[left] at (3gon.corner 3)largebfseries Authentizit"at\ Echtheit\ Kongruenz;
endtikzpicture
enddocument

add a comment |
This can be drawn with a single command in tikz:
documentclass[tikz,border=2pt]standalone
begindocument
begintikzpicture[align=center]
draw [fill=gray!20] (0,1)node[left]Some\text\left -- (2,1)node[right]Some\text\right -- (1,-.5)node[below]Some\text\below -- cycle;
endtikzpicture
enddocument

add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "85"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
TikZ Noob is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f490322%2fhow-can-this-triangle-figure-be-modeled-drawn-with-tikz%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
TikZ has all sorts of shapes built in, including such triangles. Using these you can avoid having to specify explicit coordinates, and it is then much easier to make the shape a bit larger, to rotate it and so on.
documentclass[tikz,border=3.14mm]standalone
usetikzlibraryshapes.geometric
begindocument
begintikzpicture[font=sffamily,nodes=align=center]
path node[regular polygon, regular polygon sides=3, draw,fill=gray!30,
inner sep=3em,rotate=180] (3gon)
node[below] at (3gon.corner 1)largebfseries Empathie\ Einf"uhlung
node[right] at (3gon.corner 2)largebfseries Anerkennung\ bedingungsfreie\ Wertsch"atzung
node[left] at (3gon.corner 3)largebfseries Authentizit"at\ Echtheit\ Kongruenz;
endtikzpicture
enddocument

add a comment |
TikZ has all sorts of shapes built in, including such triangles. Using these you can avoid having to specify explicit coordinates, and it is then much easier to make the shape a bit larger, to rotate it and so on.
documentclass[tikz,border=3.14mm]standalone
usetikzlibraryshapes.geometric
begindocument
begintikzpicture[font=sffamily,nodes=align=center]
path node[regular polygon, regular polygon sides=3, draw,fill=gray!30,
inner sep=3em,rotate=180] (3gon)
node[below] at (3gon.corner 1)largebfseries Empathie\ Einf"uhlung
node[right] at (3gon.corner 2)largebfseries Anerkennung\ bedingungsfreie\ Wertsch"atzung
node[left] at (3gon.corner 3)largebfseries Authentizit"at\ Echtheit\ Kongruenz;
endtikzpicture
enddocument

add a comment |
TikZ has all sorts of shapes built in, including such triangles. Using these you can avoid having to specify explicit coordinates, and it is then much easier to make the shape a bit larger, to rotate it and so on.
documentclass[tikz,border=3.14mm]standalone
usetikzlibraryshapes.geometric
begindocument
begintikzpicture[font=sffamily,nodes=align=center]
path node[regular polygon, regular polygon sides=3, draw,fill=gray!30,
inner sep=3em,rotate=180] (3gon)
node[below] at (3gon.corner 1)largebfseries Empathie\ Einf"uhlung
node[right] at (3gon.corner 2)largebfseries Anerkennung\ bedingungsfreie\ Wertsch"atzung
node[left] at (3gon.corner 3)largebfseries Authentizit"at\ Echtheit\ Kongruenz;
endtikzpicture
enddocument

TikZ has all sorts of shapes built in, including such triangles. Using these you can avoid having to specify explicit coordinates, and it is then much easier to make the shape a bit larger, to rotate it and so on.
documentclass[tikz,border=3.14mm]standalone
usetikzlibraryshapes.geometric
begindocument
begintikzpicture[font=sffamily,nodes=align=center]
path node[regular polygon, regular polygon sides=3, draw,fill=gray!30,
inner sep=3em,rotate=180] (3gon)
node[below] at (3gon.corner 1)largebfseries Empathie\ Einf"uhlung
node[right] at (3gon.corner 2)largebfseries Anerkennung\ bedingungsfreie\ Wertsch"atzung
node[left] at (3gon.corner 3)largebfseries Authentizit"at\ Echtheit\ Kongruenz;
endtikzpicture
enddocument

answered May 11 at 14:03
marmotmarmot
127k6162308
127k6162308
add a comment |
add a comment |
This can be drawn with a single command in tikz:
documentclass[tikz,border=2pt]standalone
begindocument
begintikzpicture[align=center]
draw [fill=gray!20] (0,1)node[left]Some\text\left -- (2,1)node[right]Some\text\right -- (1,-.5)node[below]Some\text\below -- cycle;
endtikzpicture
enddocument

add a comment |
This can be drawn with a single command in tikz:
documentclass[tikz,border=2pt]standalone
begindocument
begintikzpicture[align=center]
draw [fill=gray!20] (0,1)node[left]Some\text\left -- (2,1)node[right]Some\text\right -- (1,-.5)node[below]Some\text\below -- cycle;
endtikzpicture
enddocument

add a comment |
This can be drawn with a single command in tikz:
documentclass[tikz,border=2pt]standalone
begindocument
begintikzpicture[align=center]
draw [fill=gray!20] (0,1)node[left]Some\text\left -- (2,1)node[right]Some\text\right -- (1,-.5)node[below]Some\text\below -- cycle;
endtikzpicture
enddocument

This can be drawn with a single command in tikz:
documentclass[tikz,border=2pt]standalone
begindocument
begintikzpicture[align=center]
draw [fill=gray!20] (0,1)node[left]Some\text\left -- (2,1)node[right]Some\text\right -- (1,-.5)node[below]Some\text\below -- cycle;
endtikzpicture
enddocument

answered May 11 at 13:39
AboAmmarAboAmmar
35.1k32985
35.1k32985
add a comment |
add a comment |
TikZ Noob is a new contributor. Be nice, and check out our Code of Conduct.
TikZ Noob is a new contributor. Be nice, and check out our Code of Conduct.
TikZ Noob is a new contributor. Be nice, and check out our Code of Conduct.
TikZ Noob is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f490322%2fhow-can-this-triangle-figure-be-modeled-drawn-with-tikz%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Welcome to TeX.SX! The short answer is that, yes, this is possible but I have to warn you that questions of the form "Please draw this for me" that show no effort on the part of OP, often don't get answered. You will get more help if you post some code showing what you have tried and give a minimal working example. A quick search on TeX.SX for drawing functions (with tikz or pstricks) will give you an idea of where to start from.
– Andrew
May 11 at 13:33