Tikz: Align text in nested nodes
The following code:
documentclass[tikz, border=1mm]{standalone}
usepackage{tikz}
usetikzlibrary{backgrounds, positioning, fit}
begin{document}
newcommand{boxdist}{3cm}
newcommand{textwdh}{2cm}
begin{tikzpicture}[
box/.style={rectangle, rounded corners, draw=black, text width=15mm},
]
node (A) [text width=textwdh]
{Blaaaaaa bbbbbbbb newline Some text text text text};
node (B) [right= boxdist of A.west, text width=textwdh] {More text text text};
node (C) [right= boxdist of B.west, text width=textwdh] {Even more text test};
node (D) [right= boxdist of C.west, text width=textwdh] {And even more text};
begin{scope}[on background layer]
node [box, inner sep=11mm, fill=black!40, fit={(A) (B) (C) (D)}] {};
end{scope}
begin{scope}[on background layer]
node [box, inner sep=9mm, fill=black!30, fit={(B) (C) (D)}] {};
end{scope}
begin{scope}[on background layer]
node [box, inner sep=7mm, fill=black!20, fit={(C) (D)}] {};
end{scope}
begin{scope}[on background layer]
node [box, inner sep=5mm, fill=black!10, fit={(D)}] {};
end{scope}
end{tikzpicture}
end{document}
produces the following output:
I want the text in each box to start in the upper left corner. I also want the text to have the same width in all boxes. How do I do this?
tikz-pgf
add a comment |
The following code:
documentclass[tikz, border=1mm]{standalone}
usepackage{tikz}
usetikzlibrary{backgrounds, positioning, fit}
begin{document}
newcommand{boxdist}{3cm}
newcommand{textwdh}{2cm}
begin{tikzpicture}[
box/.style={rectangle, rounded corners, draw=black, text width=15mm},
]
node (A) [text width=textwdh]
{Blaaaaaa bbbbbbbb newline Some text text text text};
node (B) [right= boxdist of A.west, text width=textwdh] {More text text text};
node (C) [right= boxdist of B.west, text width=textwdh] {Even more text test};
node (D) [right= boxdist of C.west, text width=textwdh] {And even more text};
begin{scope}[on background layer]
node [box, inner sep=11mm, fill=black!40, fit={(A) (B) (C) (D)}] {};
end{scope}
begin{scope}[on background layer]
node [box, inner sep=9mm, fill=black!30, fit={(B) (C) (D)}] {};
end{scope}
begin{scope}[on background layer]
node [box, inner sep=7mm, fill=black!20, fit={(C) (D)}] {};
end{scope}
begin{scope}[on background layer]
node [box, inner sep=5mm, fill=black!10, fit={(D)}] {};
end{scope}
end{tikzpicture}
end{document}
produces the following output:
I want the text in each box to start in the upper left corner. I also want the text to have the same width in all boxes. How do I do this?
tikz-pgf
add a comment |
The following code:
documentclass[tikz, border=1mm]{standalone}
usepackage{tikz}
usetikzlibrary{backgrounds, positioning, fit}
begin{document}
newcommand{boxdist}{3cm}
newcommand{textwdh}{2cm}
begin{tikzpicture}[
box/.style={rectangle, rounded corners, draw=black, text width=15mm},
]
node (A) [text width=textwdh]
{Blaaaaaa bbbbbbbb newline Some text text text text};
node (B) [right= boxdist of A.west, text width=textwdh] {More text text text};
node (C) [right= boxdist of B.west, text width=textwdh] {Even more text test};
node (D) [right= boxdist of C.west, text width=textwdh] {And even more text};
begin{scope}[on background layer]
node [box, inner sep=11mm, fill=black!40, fit={(A) (B) (C) (D)}] {};
end{scope}
begin{scope}[on background layer]
node [box, inner sep=9mm, fill=black!30, fit={(B) (C) (D)}] {};
end{scope}
begin{scope}[on background layer]
node [box, inner sep=7mm, fill=black!20, fit={(C) (D)}] {};
end{scope}
begin{scope}[on background layer]
node [box, inner sep=5mm, fill=black!10, fit={(D)}] {};
end{scope}
end{tikzpicture}
end{document}
produces the following output:
I want the text in each box to start in the upper left corner. I also want the text to have the same width in all boxes. How do I do this?
tikz-pgf
The following code:
documentclass[tikz, border=1mm]{standalone}
usepackage{tikz}
usetikzlibrary{backgrounds, positioning, fit}
begin{document}
newcommand{boxdist}{3cm}
newcommand{textwdh}{2cm}
begin{tikzpicture}[
box/.style={rectangle, rounded corners, draw=black, text width=15mm},
]
node (A) [text width=textwdh]
{Blaaaaaa bbbbbbbb newline Some text text text text};
node (B) [right= boxdist of A.west, text width=textwdh] {More text text text};
node (C) [right= boxdist of B.west, text width=textwdh] {Even more text test};
node (D) [right= boxdist of C.west, text width=textwdh] {And even more text};
begin{scope}[on background layer]
node [box, inner sep=11mm, fill=black!40, fit={(A) (B) (C) (D)}] {};
end{scope}
begin{scope}[on background layer]
node [box, inner sep=9mm, fill=black!30, fit={(B) (C) (D)}] {};
end{scope}
begin{scope}[on background layer]
node [box, inner sep=7mm, fill=black!20, fit={(C) (D)}] {};
end{scope}
begin{scope}[on background layer]
node [box, inner sep=5mm, fill=black!10, fit={(D)}] {};
end{scope}
end{tikzpicture}
end{document}
produces the following output:
I want the text in each box to start in the upper left corner. I also want the text to have the same width in all boxes. How do I do this?
tikz-pgf
tikz-pgf
asked Jan 16 at 22:22
SamuelSamuel
537211
537211
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Like this?
documentclass[tikz, border=3mm]{standalone}
usetikzlibrary{backgrounds, fit, positioning}
begin{document}
begin{tikzpicture}[
node distance = 4pt and 4pt,
box/.style = {rectangle, inner sep=0pt, text width=21mm},
FIT/.style args = {#1/#2}{rectangle, rounded corners, draw, semithick,
fill=gray!#1, inner sep=2pt, fit=#2,
node contents={}}
]
node (A) [box] {Blaaaaaa bbbbbbbb Some text text text text};
node (B) [box, below right=of A.north east] {More text text text};
node (C) [box, below right=of B.north east] {Even more text test};
node (D) [box, below right=of C.north east] {And even more text\~};
%
begin{scope}[on background layer]
node (d) [FIT=0/(D)];
node (c) [FIT=0/(C) (d)];
node (b) [FIT=0/(B) (c)];
node (a) [FIT=0/(A) (b)];
%
node [FIT=60/(a)];
node [FIT=40/(b)];
node [FIT=20/(c)];
node [FIT=10/(d)];
end{scope}
end{tikzpicture}
end{document}
addendum:
A case when the text in nodes are vertical is centered (as you request in comment):
documentclass[tikz, border=3mm]{standalone}
usetikzlibrary{backgrounds, fit, positioning}
begin{document}
begin{tikzpicture}[
node distance = 4pt and 4pt,
box/.style = {rectangle, inner sep=0pt, text width=21mm},
FIT/.style args = {#1/#2}{rectangle, rounded corners, draw, semithick,
fill=gray!#1, inner sep=2pt, fit=#2,
node contents={}}
]
node (A) [box] {Blaaaaaa bbbbbbbb Some text text text text};
node (B) [box, right=of A] {More text text text};
node (C) [box, right=of B] {Even more text test};
node (D) [box, right=of C] {And even more text};
%
begin{scope}[on background layer]
node (d) [FIT=0/(D)];
node (c) [FIT=0/(C) (d)];
node (b) [FIT=0/(B) (c)];
node (a) [FIT=0/(A) (b)];
%
node [FIT=60/(a)];
node [FIT=40/(b)];
node [FIT=20/(c)];
node [FIT=10/(d)];
end{scope}
end{tikzpicture}
end{document}
Wow! What exactly happens in the line starting withFIT/.style args
? Is that a function with two arguments?
– Samuel
Jan 17 at 7:46
1
@Samuel, yes. it is. the first define percentage of gray color and second nodes/coordinates around each is node "FIT".
– Zarko
Jan 17 at 8:30
Great! Is there a fast solution to center the text vertically?
– Samuel
Jan 17 at 8:32
@Samuel, your mwe center text vertically ... do you like to have for it more cincise code as is in my answer? or do i not understand you?
– Zarko
Jan 17 at 13:42
Yes, my MWE does center the text vertically but does not align the text on the left. Your answer is great since it aligns the text on the left side of the node. So I wanted to know, how I can align the text in your example not only on the left but also vertically.
– Samuel
Jan 17 at 19:12
|
show 1 more 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
});
}
});
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%2f470452%2ftikz-align-text-in-nested-nodes%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Like this?
documentclass[tikz, border=3mm]{standalone}
usetikzlibrary{backgrounds, fit, positioning}
begin{document}
begin{tikzpicture}[
node distance = 4pt and 4pt,
box/.style = {rectangle, inner sep=0pt, text width=21mm},
FIT/.style args = {#1/#2}{rectangle, rounded corners, draw, semithick,
fill=gray!#1, inner sep=2pt, fit=#2,
node contents={}}
]
node (A) [box] {Blaaaaaa bbbbbbbb Some text text text text};
node (B) [box, below right=of A.north east] {More text text text};
node (C) [box, below right=of B.north east] {Even more text test};
node (D) [box, below right=of C.north east] {And even more text\~};
%
begin{scope}[on background layer]
node (d) [FIT=0/(D)];
node (c) [FIT=0/(C) (d)];
node (b) [FIT=0/(B) (c)];
node (a) [FIT=0/(A) (b)];
%
node [FIT=60/(a)];
node [FIT=40/(b)];
node [FIT=20/(c)];
node [FIT=10/(d)];
end{scope}
end{tikzpicture}
end{document}
addendum:
A case when the text in nodes are vertical is centered (as you request in comment):
documentclass[tikz, border=3mm]{standalone}
usetikzlibrary{backgrounds, fit, positioning}
begin{document}
begin{tikzpicture}[
node distance = 4pt and 4pt,
box/.style = {rectangle, inner sep=0pt, text width=21mm},
FIT/.style args = {#1/#2}{rectangle, rounded corners, draw, semithick,
fill=gray!#1, inner sep=2pt, fit=#2,
node contents={}}
]
node (A) [box] {Blaaaaaa bbbbbbbb Some text text text text};
node (B) [box, right=of A] {More text text text};
node (C) [box, right=of B] {Even more text test};
node (D) [box, right=of C] {And even more text};
%
begin{scope}[on background layer]
node (d) [FIT=0/(D)];
node (c) [FIT=0/(C) (d)];
node (b) [FIT=0/(B) (c)];
node (a) [FIT=0/(A) (b)];
%
node [FIT=60/(a)];
node [FIT=40/(b)];
node [FIT=20/(c)];
node [FIT=10/(d)];
end{scope}
end{tikzpicture}
end{document}
Wow! What exactly happens in the line starting withFIT/.style args
? Is that a function with two arguments?
– Samuel
Jan 17 at 7:46
1
@Samuel, yes. it is. the first define percentage of gray color and second nodes/coordinates around each is node "FIT".
– Zarko
Jan 17 at 8:30
Great! Is there a fast solution to center the text vertically?
– Samuel
Jan 17 at 8:32
@Samuel, your mwe center text vertically ... do you like to have for it more cincise code as is in my answer? or do i not understand you?
– Zarko
Jan 17 at 13:42
Yes, my MWE does center the text vertically but does not align the text on the left. Your answer is great since it aligns the text on the left side of the node. So I wanted to know, how I can align the text in your example not only on the left but also vertically.
– Samuel
Jan 17 at 19:12
|
show 1 more comment
Like this?
documentclass[tikz, border=3mm]{standalone}
usetikzlibrary{backgrounds, fit, positioning}
begin{document}
begin{tikzpicture}[
node distance = 4pt and 4pt,
box/.style = {rectangle, inner sep=0pt, text width=21mm},
FIT/.style args = {#1/#2}{rectangle, rounded corners, draw, semithick,
fill=gray!#1, inner sep=2pt, fit=#2,
node contents={}}
]
node (A) [box] {Blaaaaaa bbbbbbbb Some text text text text};
node (B) [box, below right=of A.north east] {More text text text};
node (C) [box, below right=of B.north east] {Even more text test};
node (D) [box, below right=of C.north east] {And even more text\~};
%
begin{scope}[on background layer]
node (d) [FIT=0/(D)];
node (c) [FIT=0/(C) (d)];
node (b) [FIT=0/(B) (c)];
node (a) [FIT=0/(A) (b)];
%
node [FIT=60/(a)];
node [FIT=40/(b)];
node [FIT=20/(c)];
node [FIT=10/(d)];
end{scope}
end{tikzpicture}
end{document}
addendum:
A case when the text in nodes are vertical is centered (as you request in comment):
documentclass[tikz, border=3mm]{standalone}
usetikzlibrary{backgrounds, fit, positioning}
begin{document}
begin{tikzpicture}[
node distance = 4pt and 4pt,
box/.style = {rectangle, inner sep=0pt, text width=21mm},
FIT/.style args = {#1/#2}{rectangle, rounded corners, draw, semithick,
fill=gray!#1, inner sep=2pt, fit=#2,
node contents={}}
]
node (A) [box] {Blaaaaaa bbbbbbbb Some text text text text};
node (B) [box, right=of A] {More text text text};
node (C) [box, right=of B] {Even more text test};
node (D) [box, right=of C] {And even more text};
%
begin{scope}[on background layer]
node (d) [FIT=0/(D)];
node (c) [FIT=0/(C) (d)];
node (b) [FIT=0/(B) (c)];
node (a) [FIT=0/(A) (b)];
%
node [FIT=60/(a)];
node [FIT=40/(b)];
node [FIT=20/(c)];
node [FIT=10/(d)];
end{scope}
end{tikzpicture}
end{document}
Wow! What exactly happens in the line starting withFIT/.style args
? Is that a function with two arguments?
– Samuel
Jan 17 at 7:46
1
@Samuel, yes. it is. the first define percentage of gray color and second nodes/coordinates around each is node "FIT".
– Zarko
Jan 17 at 8:30
Great! Is there a fast solution to center the text vertically?
– Samuel
Jan 17 at 8:32
@Samuel, your mwe center text vertically ... do you like to have for it more cincise code as is in my answer? or do i not understand you?
– Zarko
Jan 17 at 13:42
Yes, my MWE does center the text vertically but does not align the text on the left. Your answer is great since it aligns the text on the left side of the node. So I wanted to know, how I can align the text in your example not only on the left but also vertically.
– Samuel
Jan 17 at 19:12
|
show 1 more comment
Like this?
documentclass[tikz, border=3mm]{standalone}
usetikzlibrary{backgrounds, fit, positioning}
begin{document}
begin{tikzpicture}[
node distance = 4pt and 4pt,
box/.style = {rectangle, inner sep=0pt, text width=21mm},
FIT/.style args = {#1/#2}{rectangle, rounded corners, draw, semithick,
fill=gray!#1, inner sep=2pt, fit=#2,
node contents={}}
]
node (A) [box] {Blaaaaaa bbbbbbbb Some text text text text};
node (B) [box, below right=of A.north east] {More text text text};
node (C) [box, below right=of B.north east] {Even more text test};
node (D) [box, below right=of C.north east] {And even more text\~};
%
begin{scope}[on background layer]
node (d) [FIT=0/(D)];
node (c) [FIT=0/(C) (d)];
node (b) [FIT=0/(B) (c)];
node (a) [FIT=0/(A) (b)];
%
node [FIT=60/(a)];
node [FIT=40/(b)];
node [FIT=20/(c)];
node [FIT=10/(d)];
end{scope}
end{tikzpicture}
end{document}
addendum:
A case when the text in nodes are vertical is centered (as you request in comment):
documentclass[tikz, border=3mm]{standalone}
usetikzlibrary{backgrounds, fit, positioning}
begin{document}
begin{tikzpicture}[
node distance = 4pt and 4pt,
box/.style = {rectangle, inner sep=0pt, text width=21mm},
FIT/.style args = {#1/#2}{rectangle, rounded corners, draw, semithick,
fill=gray!#1, inner sep=2pt, fit=#2,
node contents={}}
]
node (A) [box] {Blaaaaaa bbbbbbbb Some text text text text};
node (B) [box, right=of A] {More text text text};
node (C) [box, right=of B] {Even more text test};
node (D) [box, right=of C] {And even more text};
%
begin{scope}[on background layer]
node (d) [FIT=0/(D)];
node (c) [FIT=0/(C) (d)];
node (b) [FIT=0/(B) (c)];
node (a) [FIT=0/(A) (b)];
%
node [FIT=60/(a)];
node [FIT=40/(b)];
node [FIT=20/(c)];
node [FIT=10/(d)];
end{scope}
end{tikzpicture}
end{document}
Like this?
documentclass[tikz, border=3mm]{standalone}
usetikzlibrary{backgrounds, fit, positioning}
begin{document}
begin{tikzpicture}[
node distance = 4pt and 4pt,
box/.style = {rectangle, inner sep=0pt, text width=21mm},
FIT/.style args = {#1/#2}{rectangle, rounded corners, draw, semithick,
fill=gray!#1, inner sep=2pt, fit=#2,
node contents={}}
]
node (A) [box] {Blaaaaaa bbbbbbbb Some text text text text};
node (B) [box, below right=of A.north east] {More text text text};
node (C) [box, below right=of B.north east] {Even more text test};
node (D) [box, below right=of C.north east] {And even more text\~};
%
begin{scope}[on background layer]
node (d) [FIT=0/(D)];
node (c) [FIT=0/(C) (d)];
node (b) [FIT=0/(B) (c)];
node (a) [FIT=0/(A) (b)];
%
node [FIT=60/(a)];
node [FIT=40/(b)];
node [FIT=20/(c)];
node [FIT=10/(d)];
end{scope}
end{tikzpicture}
end{document}
addendum:
A case when the text in nodes are vertical is centered (as you request in comment):
documentclass[tikz, border=3mm]{standalone}
usetikzlibrary{backgrounds, fit, positioning}
begin{document}
begin{tikzpicture}[
node distance = 4pt and 4pt,
box/.style = {rectangle, inner sep=0pt, text width=21mm},
FIT/.style args = {#1/#2}{rectangle, rounded corners, draw, semithick,
fill=gray!#1, inner sep=2pt, fit=#2,
node contents={}}
]
node (A) [box] {Blaaaaaa bbbbbbbb Some text text text text};
node (B) [box, right=of A] {More text text text};
node (C) [box, right=of B] {Even more text test};
node (D) [box, right=of C] {And even more text};
%
begin{scope}[on background layer]
node (d) [FIT=0/(D)];
node (c) [FIT=0/(C) (d)];
node (b) [FIT=0/(B) (c)];
node (a) [FIT=0/(A) (b)];
%
node [FIT=60/(a)];
node [FIT=40/(b)];
node [FIT=20/(c)];
node [FIT=10/(d)];
end{scope}
end{tikzpicture}
end{document}
edited Jan 17 at 19:41
answered Jan 16 at 23:03
ZarkoZarko
123k865161
123k865161
Wow! What exactly happens in the line starting withFIT/.style args
? Is that a function with two arguments?
– Samuel
Jan 17 at 7:46
1
@Samuel, yes. it is. the first define percentage of gray color and second nodes/coordinates around each is node "FIT".
– Zarko
Jan 17 at 8:30
Great! Is there a fast solution to center the text vertically?
– Samuel
Jan 17 at 8:32
@Samuel, your mwe center text vertically ... do you like to have for it more cincise code as is in my answer? or do i not understand you?
– Zarko
Jan 17 at 13:42
Yes, my MWE does center the text vertically but does not align the text on the left. Your answer is great since it aligns the text on the left side of the node. So I wanted to know, how I can align the text in your example not only on the left but also vertically.
– Samuel
Jan 17 at 19:12
|
show 1 more comment
Wow! What exactly happens in the line starting withFIT/.style args
? Is that a function with two arguments?
– Samuel
Jan 17 at 7:46
1
@Samuel, yes. it is. the first define percentage of gray color and second nodes/coordinates around each is node "FIT".
– Zarko
Jan 17 at 8:30
Great! Is there a fast solution to center the text vertically?
– Samuel
Jan 17 at 8:32
@Samuel, your mwe center text vertically ... do you like to have for it more cincise code as is in my answer? or do i not understand you?
– Zarko
Jan 17 at 13:42
Yes, my MWE does center the text vertically but does not align the text on the left. Your answer is great since it aligns the text on the left side of the node. So I wanted to know, how I can align the text in your example not only on the left but also vertically.
– Samuel
Jan 17 at 19:12
Wow! What exactly happens in the line starting with
FIT/.style args
? Is that a function with two arguments?– Samuel
Jan 17 at 7:46
Wow! What exactly happens in the line starting with
FIT/.style args
? Is that a function with two arguments?– Samuel
Jan 17 at 7:46
1
1
@Samuel, yes. it is. the first define percentage of gray color and second nodes/coordinates around each is node "FIT".
– Zarko
Jan 17 at 8:30
@Samuel, yes. it is. the first define percentage of gray color and second nodes/coordinates around each is node "FIT".
– Zarko
Jan 17 at 8:30
Great! Is there a fast solution to center the text vertically?
– Samuel
Jan 17 at 8:32
Great! Is there a fast solution to center the text vertically?
– Samuel
Jan 17 at 8:32
@Samuel, your mwe center text vertically ... do you like to have for it more cincise code as is in my answer? or do i not understand you?
– Zarko
Jan 17 at 13:42
@Samuel, your mwe center text vertically ... do you like to have for it more cincise code as is in my answer? or do i not understand you?
– Zarko
Jan 17 at 13:42
Yes, my MWE does center the text vertically but does not align the text on the left. Your answer is great since it aligns the text on the left side of the node. So I wanted to know, how I can align the text in your example not only on the left but also vertically.
– Samuel
Jan 17 at 19:12
Yes, my MWE does center the text vertically but does not align the text on the left. Your answer is great since it aligns the text on the left side of the node. So I wanted to know, how I can align the text in your example not only on the left but also vertically.
– Samuel
Jan 17 at 19:12
|
show 1 more comment
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%2f470452%2ftikz-align-text-in-nested-nodes%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