Changing a tikz figure to have more blocks Announcing the arrival of Valued Associate #679:...
Why do people hide their license plates in the EU?
Can I cast Passwall to drop an enemy into a 20-foot pit?
Can inflation occur in a positive-sum game currency system such as the Stack Exchange reputation system?
How to call a function with default parameter through a pointer to function that is the return of another function?
Is it fair for a professor to grade us on the possession of past papers?
Why do we bend a book to keep it straight?
What does the "x" in "x86" represent?
Can an alien society believe that their star system is the universe?
Why did the Falcon Heavy center core fall off the ASDS OCISLY barge?
How to react to hostile behavior from a senior developer?
When were vectors invented?
Compare a given version number in the form major.minor.build.patch and see if one is less than the other
Is it true that "carbohydrates are of no use for the basal metabolic need"?
Gordon Ramsay Pudding Recipe
Why am I getting the error "non-boolean type specified in a context where a condition is expected" for this request?
What is Wonderstone and are there any references to it pre-1982?
Understanding Ceva's Theorem
Why did the IBM 650 use bi-quinary?
Okay to merge included columns on otherwise identical indexes?
Apollo command module space walk?
Why are there no cargo aircraft with "flying wing" design?
Is it ethical to give a final exam after the professor has quit before teaching the remaining chapters of the course?
porting install scripts : can rpm replace apt?
How can I make names more distinctive without making them longer?
Changing a tikz figure to have more blocks
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Labeling precisely-positioned “tree” nodesHow to define the default vertical distance between nodes?Arrows crossing blocks TikZEnhancement of bloques tikz libraryHow to draw points in TikZ?Tikz: Lining up input and output nodes in multiple input multiple output diagramMake TikZ figure with scenarios and arrowsDrawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingError with blocks in a tikz figureLine up nested tikz enviroments or how to get rid of them
I have the following figure:
which is generated using the following code:
tikzset{%
block/.style = {draw, thick, rectangle, minimum height = 3em,
minimum width = 8em, fill=white, text width=2.5cm},
sum/.style = {draw, circle, node distance = 2cm}, % Adder
input/.style = {coordinate}, % Input
output/.style = {coordinate}, % Output
virtual/.style = {coordinate}
}
begin{tikzpicture}[auto, thick, node distance=2cm, >=triangle 45]
draw
node at (0,0){}
node [input, name=input1] {}
node [output, name=output1, right = 1cm of input1] {};
node [align=center, block, right = 0.5cm of output1] (model) {glamor};
node [align=center, block, right = 1.5cm of model] (model1) {trainer};
node [virtual, left=of model.165] (input) {};
node [virtual, right=of model1.0] (output) {};
node [virtual, below left=of model.west] (feedback) {};
draw[->](input1) -- node {$mm$}(model);
draw[->](model) -- node {$mnn$} (model1);
draw [->] (model1) -- node [name=y] {$ppx$}(output);
draw [->,rounded corners] (model1) -- (y.south) |- (feedback) |- (model.195);
end{tikzpicture}
I want to add to this figure 2 blocks and extra arrows in the bottom arrow, which will look like this:
tikz-pgf tikz-arrows
add a comment |
I have the following figure:
which is generated using the following code:
tikzset{%
block/.style = {draw, thick, rectangle, minimum height = 3em,
minimum width = 8em, fill=white, text width=2.5cm},
sum/.style = {draw, circle, node distance = 2cm}, % Adder
input/.style = {coordinate}, % Input
output/.style = {coordinate}, % Output
virtual/.style = {coordinate}
}
begin{tikzpicture}[auto, thick, node distance=2cm, >=triangle 45]
draw
node at (0,0){}
node [input, name=input1] {}
node [output, name=output1, right = 1cm of input1] {};
node [align=center, block, right = 0.5cm of output1] (model) {glamor};
node [align=center, block, right = 1.5cm of model] (model1) {trainer};
node [virtual, left=of model.165] (input) {};
node [virtual, right=of model1.0] (output) {};
node [virtual, below left=of model.west] (feedback) {};
draw[->](input1) -- node {$mm$}(model);
draw[->](model) -- node {$mnn$} (model1);
draw [->] (model1) -- node [name=y] {$ppx$}(output);
draw [->,rounded corners] (model1) -- (y.south) |- (feedback) |- (model.195);
end{tikzpicture}
I want to add to this figure 2 blocks and extra arrows in the bottom arrow, which will look like this:
tikz-pgf tikz-arrows
Could you please make your code compilable?
– Raaja
11 secs ago
add a comment |
I have the following figure:
which is generated using the following code:
tikzset{%
block/.style = {draw, thick, rectangle, minimum height = 3em,
minimum width = 8em, fill=white, text width=2.5cm},
sum/.style = {draw, circle, node distance = 2cm}, % Adder
input/.style = {coordinate}, % Input
output/.style = {coordinate}, % Output
virtual/.style = {coordinate}
}
begin{tikzpicture}[auto, thick, node distance=2cm, >=triangle 45]
draw
node at (0,0){}
node [input, name=input1] {}
node [output, name=output1, right = 1cm of input1] {};
node [align=center, block, right = 0.5cm of output1] (model) {glamor};
node [align=center, block, right = 1.5cm of model] (model1) {trainer};
node [virtual, left=of model.165] (input) {};
node [virtual, right=of model1.0] (output) {};
node [virtual, below left=of model.west] (feedback) {};
draw[->](input1) -- node {$mm$}(model);
draw[->](model) -- node {$mnn$} (model1);
draw [->] (model1) -- node [name=y] {$ppx$}(output);
draw [->,rounded corners] (model1) -- (y.south) |- (feedback) |- (model.195);
end{tikzpicture}
I want to add to this figure 2 blocks and extra arrows in the bottom arrow, which will look like this:
tikz-pgf tikz-arrows
I have the following figure:
which is generated using the following code:
tikzset{%
block/.style = {draw, thick, rectangle, minimum height = 3em,
minimum width = 8em, fill=white, text width=2.5cm},
sum/.style = {draw, circle, node distance = 2cm}, % Adder
input/.style = {coordinate}, % Input
output/.style = {coordinate}, % Output
virtual/.style = {coordinate}
}
begin{tikzpicture}[auto, thick, node distance=2cm, >=triangle 45]
draw
node at (0,0){}
node [input, name=input1] {}
node [output, name=output1, right = 1cm of input1] {};
node [align=center, block, right = 0.5cm of output1] (model) {glamor};
node [align=center, block, right = 1.5cm of model] (model1) {trainer};
node [virtual, left=of model.165] (input) {};
node [virtual, right=of model1.0] (output) {};
node [virtual, below left=of model.west] (feedback) {};
draw[->](input1) -- node {$mm$}(model);
draw[->](model) -- node {$mnn$} (model1);
draw [->] (model1) -- node [name=y] {$ppx$}(output);
draw [->,rounded corners] (model1) -- (y.south) |- (feedback) |- (model.195);
end{tikzpicture}
I want to add to this figure 2 blocks and extra arrows in the bottom arrow, which will look like this:
tikz-pgf tikz-arrows
tikz-pgf tikz-arrows
asked 7 mins ago
CodevanCodevan
62
62
Could you please make your code compilable?
– Raaja
11 secs ago
add a comment |
Could you please make your code compilable?
– Raaja
11 secs ago
Could you please make your code compilable?
– Raaja
11 secs ago
Could you please make your code compilable?
– Raaja
11 secs ago
add a comment |
0
active
oldest
votes
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%2f485235%2fchanging-a-tikz-figure-to-have-more-blocks%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f485235%2fchanging-a-tikz-figure-to-have-more-blocks%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
Could you please make your code compilable?
– Raaja
11 secs ago