创建组件不起作用!MetaUml:在 LuaLaTeX 中使用 MetaPost

创建组件不起作用!MetaUml:在 LuaLaTeX 中使用 MetaPost

我正在尝试使用创建组件图元Uml使用 LuaLaTeX 嵌入 TeX。每个示例表格手册我尝试过,除了组件之外,运行良好。

\documentclass{article}
\usepackage{luamplib}
\title{Algo}
\author{Paul}
\begin{document}
\maketitle
\newpage
\tableofcontents
\newpage
\section{Reengineering Algo Architecture}
\subsection{Current System Structure}
\subsection{Restructured System}
\subsection{Extended  Restructured System}
    \subsubsection{System Component Structure}
        \begin{mplibcode}
            input metauml;
            beginfig(1);
            Component.C("Business Logic")();
            drawObject(C);
            endfig;
            end
        \end{mplibcode}
    \subsubsection{Inner Component Structure}
    \subsubsection{Usecasses}
\end{document}

这对我来说不起作用,但应该可以,参见第 14 页

错误信息是:

错误信息

错误信息]

搞不清楚。抱歉。

编辑:自动安装不正确:固定安装

但它仍然不起作用。

相关内容