我在MSC圖中使用遺失訊息。我需要控制遺失訊息行的長度和顏色,如下所示。我查看了手冊,它建議\selfmesswidth
在 msc 定義中使用。我嘗試了一下,但完全沒有效果。這是一個範例腳本:
\documentclass{article}
\usepackage{graphicx}
\usepackage{msc}
\usepackage{xcolor}
\begin{document}
\begin{figure*}[b!]
\vspace{-1cm}
\[
\resizebox{\textwidth}{!}{
\centering
\setmsckeyword{}
\drawframe{no}
\hspace{-1cm}
\begin{msc}[small values, /msc/level height=0.6cm, /msc/label distance=0.5ex , /msc/first level height=0.6cm, /msc/last level height=0.6cm, /msc/top head dist=0, /msc/bottom foot dist=0]{}
\setlength{\instwidth}{2.5\mscunit}
\setlength{\instdist}{5\mscunit}
\declinst{A}{}{A}
\declinst{B}{}{B}
\mess {Message1} {A}{B}
\nextlevel
\lost[side=left]{}{}{B}
\nextlevel
\mess {Messag2} {A}{B}
\nextlevel
\end{msc}
}
\]
\caption[caption]{Figure}
\end{figure*}
\end{document}
我需要更改遺失訊息的長度和顏色,如下所示。我在手冊中找不到做到這一點的方法。
編輯:文檔類已更新。您還需要來自的 msc.sty這裡
答案1
將以下命令加入序言:
\makeatletter
\newcommand\lostredlong[1][l]%
{\psset{linecolor=red}% color lines in red. Unfortunately this affects all lines.
\selfmesswidth=\instwidth% set the length of the arrow
\def\lostfound@position{#1}%
\def\lostfound@type{lost}%
\def\msc@circlefillstyle{red}% fill the circle in red
\lostfound@B%
}
\makeatother
設定linecolor
並\selfmesswidth
影響以下所有命令。為了避免這種情況,請將\lostredlong
呼叫括在大括號中。
{\lostredlong{}{}{B}}
基本上可以將這些大括號添加到命令的定義中\lostredlong
,但這需要複製更多程式碼,這msc.sty
可能是應該避免的。
\documentclass{article}
\usepackage{graphicx}
\usepackage{msc}
\usepackage{xcolor}
\makeatletter
\newcommand\lostredlong[1][l]%
{\psset{linecolor=red}%
\selfmesswidth=\instwidth
\def\lostfound@position{#1}%
\def\lostfound@type{lost}%
\def\msc@circlefillstyle{red}%
\lostfound@B%
}
\makeatother
\begin{document}
\begin{msc}{}
\setlength{\instwidth}{2.5\mscunit}
\setlength{\instdist}{5\mscunit}
\declinst{A}{}{A}
\declinst{B}{}{B}
\mess {Message1} {A}{B}
\nextlevel
{\lostredlong{}{}{B}}
\nextlevel
\mess {Messag2} {A}{B}
\nextlevel
\end{msc}
\end{document}