答案1
首先,您需要考虑一些事项。
水平规则、对齐的方程环境、部分的罗马数字以及方程的 section.eqn# 格式。
这里有一些能满足您所有需求的优秀资源:
对齐方程:使用 amsmath 对齐方程
各部分用罗马数字表示:章节和小节使用罗马数字
方程式的 Section.eqn# 格式:更改文档类文章中的公式编号类型[重复]
我希望这有帮助!
更新:
由于我从技术上使用了回答功能并且没有发表评论,所以我实际上应该为 OP 提供完整的解决方案,所以就这样!
\documentclass{article}
\usepackage{amsmath}
\usepackage{geometry}
\begin{document}
\noindent\makebox[\linewidth]{\rule{\textwidth}{0.8pt}}
\textbf{Formulation VI} Exercise 1.5 \\[-1ex]
\noindent\makebox[\linewidth]{\rule{\textwidth}{0.4pt}}
\begin{align}
& & & & \min \ \sum_{o \in O}\sum_{c \in C}d_{co}x_{co} \tag{VI.1} \\
& & \text{s.t.} & & \qquad \sum_{o \in O} x_{co} & \leq 9 & {} & \forall c \in C \tag{VI.2} \\
& & & & \sum_{o \in O}x_{co} & \geq 5 & {} & \forall c \in C \tag{VI.3} \\
& & & & \sum_{o \in O}m_o x_{co} & \geq 1 & {} & \forall c \in C \tag{VI.4} \\
& & & & \sum_{c \in C}x_{co} & = 1 & {} & \forall o \in O \tag{VI.5} \\
& & & & x_{co} & \in \left\{0,1\right\} & {} & \forall c \in C,\ \forall o \in O \tag{VI.6}
\end{align}
\noindent\makebox[\linewidth]{\rule{\textwidth}{0.8pt}}
\end{document}