Is there any way to rotate labels in feynmp? I want the dots in this picture to run from k_1 to k_n, so I need to rotate the labels by about 80 degrees clockwise. Thanks!
MWE:
\documentclass[amsmath,amssymb,aps,12pt,eqsecnum]{revtex4}
\usepackage[a4paper]{geometry}
\linespread{1}
\usepackage{slashed}
\usepackage{simplewick}
\usepackage{feynmp-auto}
\usepackage[pdftex]{graphicx}
\usepackage{textcomp}
\usepackage{gensymb}
\begin{document}
\begin{fmffile}{graph41}
\begin{fmfgraph*}(120,120)
\fmfcmd{input vbloboval;}
\fmfleftn{i}{9}
\fmfright{o1,o2}
\fmfblobOval{0.16w}{v1}
\fmf{fermion}{o1,v1}
\fmf{fermion,label=$p'$}{v1,i7}
\fmffreeze
\fmf{photon}{v1,i1}
\fmf{photon}{v1,i2}
\fmf{photon}{v1,i3}
\fmfv{label=$k_1$}{i3}
\fmfv{label=$\cdots$}{i2}
\fmfv{label=$k_n$}{i1}
\end{fmfgraph*}
\end{fmffile}
\end{document}

but it didn't have any effect
– supercoolphysicist Jan 20 '15 at 20:36fmfgraphseems to want to resist the relocation. A\raisebox(which would have been the logical choice) seemed to have no effect. – Steven B. Segletes Jan 20 '15 at 20:47\ruleand it seems to work OK. – Steven B. Segletes Jan 20 '15 at 20:59(Sorry I can't get that to display correctly, but basically I only want to adjust the dots)
– supercoolphysicist Jan 20 '15 at 21:20\fmfv{label=\rule{0pt}{8pt}$k_1~~$}{i3}\fmfv{label=\rotatebox{-70}{$\cdots\phantom{~\cdots}$}}{i2}\fmfv{label=$k_n~$}{i1}? In any event, controlling the placement is a royal pain. – Steven B. Segletes Jan 21 '15 at 00:57