Specific feynman diagram
I am very new to Tex and wanted to draw these diagaram using Tikz-Feynman or some package. Forget about the labels on the diagrams, I can adjust them my self.
tikz-feynman feynman tikz-graphdrawing
add a comment |
I am very new to Tex and wanted to draw these diagaram using Tikz-Feynman or some package. Forget about the labels on the diagrams, I can adjust them my self.
tikz-feynman feynman tikz-graphdrawing
1
search this site for tagfeynman
. you will find many examples. select one which will be close to what you like to have and tray to draw own one. if in this will suck, show us where. people here than will more easy to help you.
– Zarko
Jan 19 at 18:44
add a comment |
I am very new to Tex and wanted to draw these diagaram using Tikz-Feynman or some package. Forget about the labels on the diagrams, I can adjust them my self.
tikz-feynman feynman tikz-graphdrawing
I am very new to Tex and wanted to draw these diagaram using Tikz-Feynman or some package. Forget about the labels on the diagrams, I can adjust them my self.
tikz-feynman feynman tikz-graphdrawing
tikz-feynman feynman tikz-graphdrawing
asked Jan 19 at 16:59
AierelAierel
1
1
1
search this site for tagfeynman
. you will find many examples. select one which will be close to what you like to have and tray to draw own one. if in this will suck, show us where. people here than will more easy to help you.
– Zarko
Jan 19 at 18:44
add a comment |
1
search this site for tagfeynman
. you will find many examples. select one which will be close to what you like to have and tray to draw own one. if in this will suck, show us where. people here than will more easy to help you.
– Zarko
Jan 19 at 18:44
1
1
search this site for tag
feynman
. you will find many examples. select one which will be close to what you like to have and tray to draw own one. if in this will suck, show us where. people here than will more easy to help you.– Zarko
Jan 19 at 18:44
search this site for tag
feynman
. you will find many examples. select one which will be close to what you like to have and tray to draw own one. if in this will suck, show us where. people here than will more easy to help you.– Zarko
Jan 19 at 18:44
add a comment |
1 Answer
1
active
oldest
votes
Welcome to TeX.SE! The idea of this site is to provide assistance if you get stuck, not to convert screen shots to LaTeX code. In what follows, to give you a start I provide the first three diagrams because the ones with the blobs contain unreadable pieces. Notice that these do not rely on the graph libraries, i.e. can be compiled without lualatex. This choice is made because these diagrams do really not require any automatic layout routines, and the latter have caused problems in connection with the latest updates of lualatex and TikZ. Besides, arXiv does not support lualatex.
documentclass{article}
usepackage{tikz-feynman}
begin{document}
begin{tikzpicture}
begin{feynman}
vertex (a) {$Phi_{aA}$};
vertex [right=3cm of a] (b) {$Phi_{bB}$};
diagram* {(a) -- [fermion,edge label'={$b$}] (b)};
end{feynman}
end{tikzpicture}
begin{tikzpicture}
begin{feynman}
vertex (a) {$phi_{aA}$};
vertex [right=3cm of a] (b) {$phi_{bB}$};
diagram* {(a) -- [charged boson,edge label'={$b$}] (b)};
end{feynman}
end{tikzpicture}
begin{tikzpicture}
begin{feynman}
vertex (b) {$bB$};
vertex [right=3cm of a] (c) {$cC$};
path (b) -- (c) coordinate[midway] (v);
vertex[above=1.5cm of v] (a){$aA$};
diagram* {(b) -- [fermion,momentum'={$p$}] (v) -- [fermion,momentum'={$p-k$}]
(c),(v) -- [charged boson,momentum'={$k$}] (a)};
end{feynman}
end{tikzpicture}
end{document}
As I said, your blob diagrams contain unreadable elements.
Just realized that theb
s attached to the propagators should most likely bep
s, and be attached to momentum arrows. You may tell whoever wrote the stuff on the blackboard to writep
s in a way that they could be distinguished more easily fromb
s, and, what is probably more important, not to confuse arrows that indicate the charge flow with those indicating momentum flow. This is generally confusing, and will lead to inconsistencies in theories with Majorana fermions, say.
– marmot
Jan 20 at 17:09
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
});
}
});
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%2f470897%2fspecific-feynman-diagram%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
Welcome to TeX.SE! The idea of this site is to provide assistance if you get stuck, not to convert screen shots to LaTeX code. In what follows, to give you a start I provide the first three diagrams because the ones with the blobs contain unreadable pieces. Notice that these do not rely on the graph libraries, i.e. can be compiled without lualatex. This choice is made because these diagrams do really not require any automatic layout routines, and the latter have caused problems in connection with the latest updates of lualatex and TikZ. Besides, arXiv does not support lualatex.
documentclass{article}
usepackage{tikz-feynman}
begin{document}
begin{tikzpicture}
begin{feynman}
vertex (a) {$Phi_{aA}$};
vertex [right=3cm of a] (b) {$Phi_{bB}$};
diagram* {(a) -- [fermion,edge label'={$b$}] (b)};
end{feynman}
end{tikzpicture}
begin{tikzpicture}
begin{feynman}
vertex (a) {$phi_{aA}$};
vertex [right=3cm of a] (b) {$phi_{bB}$};
diagram* {(a) -- [charged boson,edge label'={$b$}] (b)};
end{feynman}
end{tikzpicture}
begin{tikzpicture}
begin{feynman}
vertex (b) {$bB$};
vertex [right=3cm of a] (c) {$cC$};
path (b) -- (c) coordinate[midway] (v);
vertex[above=1.5cm of v] (a){$aA$};
diagram* {(b) -- [fermion,momentum'={$p$}] (v) -- [fermion,momentum'={$p-k$}]
(c),(v) -- [charged boson,momentum'={$k$}] (a)};
end{feynman}
end{tikzpicture}
end{document}
As I said, your blob diagrams contain unreadable elements.
Just realized that theb
s attached to the propagators should most likely bep
s, and be attached to momentum arrows. You may tell whoever wrote the stuff on the blackboard to writep
s in a way that they could be distinguished more easily fromb
s, and, what is probably more important, not to confuse arrows that indicate the charge flow with those indicating momentum flow. This is generally confusing, and will lead to inconsistencies in theories with Majorana fermions, say.
– marmot
Jan 20 at 17:09
add a comment |
Welcome to TeX.SE! The idea of this site is to provide assistance if you get stuck, not to convert screen shots to LaTeX code. In what follows, to give you a start I provide the first three diagrams because the ones with the blobs contain unreadable pieces. Notice that these do not rely on the graph libraries, i.e. can be compiled without lualatex. This choice is made because these diagrams do really not require any automatic layout routines, and the latter have caused problems in connection with the latest updates of lualatex and TikZ. Besides, arXiv does not support lualatex.
documentclass{article}
usepackage{tikz-feynman}
begin{document}
begin{tikzpicture}
begin{feynman}
vertex (a) {$Phi_{aA}$};
vertex [right=3cm of a] (b) {$Phi_{bB}$};
diagram* {(a) -- [fermion,edge label'={$b$}] (b)};
end{feynman}
end{tikzpicture}
begin{tikzpicture}
begin{feynman}
vertex (a) {$phi_{aA}$};
vertex [right=3cm of a] (b) {$phi_{bB}$};
diagram* {(a) -- [charged boson,edge label'={$b$}] (b)};
end{feynman}
end{tikzpicture}
begin{tikzpicture}
begin{feynman}
vertex (b) {$bB$};
vertex [right=3cm of a] (c) {$cC$};
path (b) -- (c) coordinate[midway] (v);
vertex[above=1.5cm of v] (a){$aA$};
diagram* {(b) -- [fermion,momentum'={$p$}] (v) -- [fermion,momentum'={$p-k$}]
(c),(v) -- [charged boson,momentum'={$k$}] (a)};
end{feynman}
end{tikzpicture}
end{document}
As I said, your blob diagrams contain unreadable elements.
Just realized that theb
s attached to the propagators should most likely bep
s, and be attached to momentum arrows. You may tell whoever wrote the stuff on the blackboard to writep
s in a way that they could be distinguished more easily fromb
s, and, what is probably more important, not to confuse arrows that indicate the charge flow with those indicating momentum flow. This is generally confusing, and will lead to inconsistencies in theories with Majorana fermions, say.
– marmot
Jan 20 at 17:09
add a comment |
Welcome to TeX.SE! The idea of this site is to provide assistance if you get stuck, not to convert screen shots to LaTeX code. In what follows, to give you a start I provide the first three diagrams because the ones with the blobs contain unreadable pieces. Notice that these do not rely on the graph libraries, i.e. can be compiled without lualatex. This choice is made because these diagrams do really not require any automatic layout routines, and the latter have caused problems in connection with the latest updates of lualatex and TikZ. Besides, arXiv does not support lualatex.
documentclass{article}
usepackage{tikz-feynman}
begin{document}
begin{tikzpicture}
begin{feynman}
vertex (a) {$Phi_{aA}$};
vertex [right=3cm of a] (b) {$Phi_{bB}$};
diagram* {(a) -- [fermion,edge label'={$b$}] (b)};
end{feynman}
end{tikzpicture}
begin{tikzpicture}
begin{feynman}
vertex (a) {$phi_{aA}$};
vertex [right=3cm of a] (b) {$phi_{bB}$};
diagram* {(a) -- [charged boson,edge label'={$b$}] (b)};
end{feynman}
end{tikzpicture}
begin{tikzpicture}
begin{feynman}
vertex (b) {$bB$};
vertex [right=3cm of a] (c) {$cC$};
path (b) -- (c) coordinate[midway] (v);
vertex[above=1.5cm of v] (a){$aA$};
diagram* {(b) -- [fermion,momentum'={$p$}] (v) -- [fermion,momentum'={$p-k$}]
(c),(v) -- [charged boson,momentum'={$k$}] (a)};
end{feynman}
end{tikzpicture}
end{document}
As I said, your blob diagrams contain unreadable elements.
Welcome to TeX.SE! The idea of this site is to provide assistance if you get stuck, not to convert screen shots to LaTeX code. In what follows, to give you a start I provide the first three diagrams because the ones with the blobs contain unreadable pieces. Notice that these do not rely on the graph libraries, i.e. can be compiled without lualatex. This choice is made because these diagrams do really not require any automatic layout routines, and the latter have caused problems in connection with the latest updates of lualatex and TikZ. Besides, arXiv does not support lualatex.
documentclass{article}
usepackage{tikz-feynman}
begin{document}
begin{tikzpicture}
begin{feynman}
vertex (a) {$Phi_{aA}$};
vertex [right=3cm of a] (b) {$Phi_{bB}$};
diagram* {(a) -- [fermion,edge label'={$b$}] (b)};
end{feynman}
end{tikzpicture}
begin{tikzpicture}
begin{feynman}
vertex (a) {$phi_{aA}$};
vertex [right=3cm of a] (b) {$phi_{bB}$};
diagram* {(a) -- [charged boson,edge label'={$b$}] (b)};
end{feynman}
end{tikzpicture}
begin{tikzpicture}
begin{feynman}
vertex (b) {$bB$};
vertex [right=3cm of a] (c) {$cC$};
path (b) -- (c) coordinate[midway] (v);
vertex[above=1.5cm of v] (a){$aA$};
diagram* {(b) -- [fermion,momentum'={$p$}] (v) -- [fermion,momentum'={$p-k$}]
(c),(v) -- [charged boson,momentum'={$k$}] (a)};
end{feynman}
end{tikzpicture}
end{document}
As I said, your blob diagrams contain unreadable elements.
answered Jan 19 at 18:20
marmotmarmot
94.8k4110210
94.8k4110210
Just realized that theb
s attached to the propagators should most likely bep
s, and be attached to momentum arrows. You may tell whoever wrote the stuff on the blackboard to writep
s in a way that they could be distinguished more easily fromb
s, and, what is probably more important, not to confuse arrows that indicate the charge flow with those indicating momentum flow. This is generally confusing, and will lead to inconsistencies in theories with Majorana fermions, say.
– marmot
Jan 20 at 17:09
add a comment |
Just realized that theb
s attached to the propagators should most likely bep
s, and be attached to momentum arrows. You may tell whoever wrote the stuff on the blackboard to writep
s in a way that they could be distinguished more easily fromb
s, and, what is probably more important, not to confuse arrows that indicate the charge flow with those indicating momentum flow. This is generally confusing, and will lead to inconsistencies in theories with Majorana fermions, say.
– marmot
Jan 20 at 17:09
Just realized that the
b
s attached to the propagators should most likely be p
s, and be attached to momentum arrows. You may tell whoever wrote the stuff on the blackboard to write p
s in a way that they could be distinguished more easily from b
s, and, what is probably more important, not to confuse arrows that indicate the charge flow with those indicating momentum flow. This is generally confusing, and will lead to inconsistencies in theories with Majorana fermions, say.– marmot
Jan 20 at 17:09
Just realized that the
b
s attached to the propagators should most likely be p
s, and be attached to momentum arrows. You may tell whoever wrote the stuff on the blackboard to write p
s in a way that they could be distinguished more easily from b
s, and, what is probably more important, not to confuse arrows that indicate the charge flow with those indicating momentum flow. This is generally confusing, and will lead to inconsistencies in theories with Majorana fermions, say.– marmot
Jan 20 at 17:09
add a 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%2f470897%2fspecific-feynman-diagram%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
1
search this site for tag
feynman
. you will find many examples. select one which will be close to what you like to have and tray to draw own one. if in this will suck, show us where. people here than will more easy to help you.– Zarko
Jan 19 at 18:44