LaTeX How to include contraction symbols in LaTeX

AI Thread Summary
To draw contraction symbols in LaTeX for perturbation theory in quantum field theory (QFT), the package simplewick.sty is recommended. Users can download it from CTAN. Common issues include encountering "Undefined control sequence" errors when using the \contraction command. To resolve this, ensure that the simplewick.sty file is correctly placed in the same directory as the .tex file and that the \usepackage{simplewick} command is included in the preamble of the document. A sample document structure is provided to illustrate proper usage, confirming that the \contraction command should function correctly if set up properly.
nrqed
Science Advisor
Messages
3,762
Reaction score
297
I apologize, I know this is not a QM question per se but I think I am more likely to find someone who could answer this here.

I'd like to know (or rather, be reminded of) how to draw contraction symbols in LaTeX (or TeX). I mean the symbol we use to show how two fields are "paired up" when we do perturbation theory in QFT. You know what I mean: a line that goes a bit down (or up) from a field, runs across horizontally to the second field and then goes up again (or down again).
I used to have a way to do that but when my work computer was upgraded I lost those files.

Thanks in advance.

Patrick
 
Physics news on Phys.org
I also have the same doubt, but when I tried the way it is given in the CTAN package, and tried to compile the latex document I got the error
! Undefined control sequence.
l.27 \contraction
[2ex]{}{\phi_1}{\phi_2\phi_3}{\phi_4}
?
! Undefined control sequence.
l.28 \contraction
{\phi_1}{\phi_2}{}{\phi_3}
?

I also used their instruction generated the simplewick.sty file by latex simplewick.ins and placed it in the same directory as my original .tex fle but still the error persisted.
Is there anything else also I need to do like putting in some macros?
Please help?
 
\contraction works fine for me with simplewick.sty, placing the style file in the same same directory should work. Perhaps you forgot \usepackage. This example is compilable:

Code:
\documentclass{article}
\usepackage{simplewick}
\begin{document}
\[
  \contraction[2ex]{}{\phi_1}{\phi_2\phi_3}{\phi_4}
\]
\end{document}

Stefan
 
Back
Top