Consider the linear optimization problem
\begin{equation}\label{eq:original_problem}
\text{max}\{ c x: A x \leq b, C y \geq d, x + y \geq 0 \} = \text{max}\{ c x: A x \leq b, -C y \leq -d, -x - y \leq 0 \} .
\end{equation}
One may introduce the composite column vectors
\begin{align*}
z &:= \begin{bmatrix}
x \\ y
\end{bmatrix}, \\
b' &:= \begin{bmatrix}
b \\ -d \\ 0
\end{bmatrix},
\end{align*}
the composite row vector
\begin{equation*}
c' := \begin{bmatrix}
c & 0
\end{bmatrix},
\end{equation*}
and the composite matrix
\begin{equation*}
A' := \begin{bmatrix}
A & 0 \\ 0 & -C \\ -1 & -1
\end{bmatrix}.
\end{equation*}
In this way, the linear optimization problem (\ref{eq:original_problem}) is written as
\begin{equation}\label{eq:matrix_form}
\text{max}\{ c' z: A' z \leq b' \}.
\end{equation}
Applying the strong duality theorem to (\ref{eq:matrix_form}), gives
\begin{equation}\label{eq:dual_matrix_form}
\text{max}\{ c' z: A' z \leq b' \} = \text{min}\{ u b': u A'= c', u \geq 0 \}.
\end{equation}
Here $u$ is the composite row vector with elements
\begin{equation*}
u = \begin{bmatrix}
\alpha & \beta & \gamma
\end{bmatrix},
\end{equation*}
where $\alpha$, $\beta$ and $\gamma$ are row vectors.
By expanding the composite column vector $b'$, the composite row vectors $u$ and $c'$, and the composite matrix $A'$, (\ref{eq:dual_matrix_form}) is written as
\begin{equation}\label{eq:dual_algebra_form}
\text{min}\{ \alpha b - \beta d: \alpha A - \gamma = c, -\beta C - \gamma = 0, \alpha \geq 0, \beta \geq 0, \gamma \geq 0 \}.
\end{equation}
The objective function does not include the variable $\gamma$, and the constraint $\gamma \geq 0$ is incorporated into the other constraints in (\ref{eq:dual_algebra_form}), giving the final answer
\begin{equation}\label{eq:dual_final}
\text{min}\{ \alpha b - \beta d: \alpha A \geq c, \beta C \leq 0, \alpha A - c = -\beta C, \alpha \geq 0, \beta \geq 0 \}.
\end{equation}