Определение положения среды tabularx

Определение положения среды tabularx

В моем отчете я использую tabularxокружение внутри mdframedокружения. Я не знаю почему, но мне приходится удалять tableокружение, окружающее мое tabularxокружение, когда я хочу таблицу в моем mdframed. Вот так:

\begin{mdframed}
\begin{tabularx}{\textwidth}{|p{3.8 cm}|X|}
Blablabla
\end{tabularx}
\end{mdframed}

Проблема в том, что моя таблица плавает внутри моего mdframed. Я не знаю, как определить положение моего tabularx... Я ищу эквивалент [h] для tabularxокружения...

Надеюсь, вы сможете мне помочь. И я надеюсь, что мой английский не так уж плох, и вы меня понимаете.

Мой код, как указано в комментарии:

\documentclass[12pt, a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[top=2.5cm, bottom=2.5cm, left=2.5cm, right=2.5cm]{geometry}
\usepackage{tabularx}
\usepackage{mdframed}

\begin{document}
\begin{mdframed}
L'établissement des composants des processus et systèmes d'information sont illustrés ci-dessous avec les exemples présentés au point \ref{ExempleProcess} page \pageref{ExempleProcess}. Seuls les composants important sont identifiés ci-dessous. Il est évident qu'une analyse réelle doit tenter d'être la plus exhaustive possible.
\subsubsection*{Exemple 1 : gestion des commandes téléphoniques}

\textbf{Composantes du processus d'affaires :}

\noindent
\begin{tabularx}{\textwidth}{|p{3.8 cm}|X|}
\hline
Intrants et extrants
& Intrant : information relative aux besoins du client \\
& Extrants : information pour le processus d'analyse de la solvabilité (si le client est nouveau) ou ordre de préparation de commande \\                        
\hline
Sources et destinations
& Source : client \\
& Destinations : processus de d'analyse de la solvabilité (si le client est nouveau) ou entrepôt \\
\hline
\end{tabularx}

BLABLABLA

\end{mdframed}

\end{document}

Связанный контент