Tabularcolumns directive in warning not shown in latex

I use sphinx for my documentation. I have a note in which I want to add a table. Since I want the table to be distributed over the entire width of the note, I want to use the tableularcolumns directive. However, when adding this directive, the table is not displayed in latex format and, as such, is not in pdf or html format.

This is my edited snippet of text:

.. note:: 

   Reserve the necessary amount of time to install your environment. The following table gives approximate values for installation of the Operating System (OS) and for the initialization of the nodes.

   .. tabularcolumns:: |p{5cm}|p{5cm}|p{5cm}|

   +-------------------------+-----------------------+---------------------+
   | Node                    | Install OS (parallel) | Initialize (serial) |
   +=========================+=======================+=====================+
   | AS20/AS30 Storage Node  | 12 minutes            | 10 minutes          |
   +-------------------------+-----------------------+---------------------+
   | AS36 Storage Node       | 8 minutes             | 15 minutes          |
   +-------------------------+-----------------------+---------------------+
   | AC1/AC2 Controller Node | 8 minutes             | 15 minutes          |
   +-------------------------+-----------------------+---------------------+

When I omit the directive, the table is processed correctly

+4
source share
1 answer

If you separate table space 3, it should work. Like this:

.. note:: 

   Reserve the necessary amount of time to install your environment. The
   following table gives approximate values for installation of the 
   Operating System (OS) and for the initialization of the nodes.

   .. tabularcolumns:: |p{5cm}|p{5cm}|p{5cm}|

      +-------------------------+-----------------------+---------------------+
      | Node                    | Install OS (parallel) | Initialize (serial) |
      +=========================+=======================+=====================+
      | AS20/AS30 Storage Node  | 12 minutes            | 10 minutes          |
      +-------------------------+-----------------------+---------------------+
      | AS36 Storage Node       | 8 minutes             | 15 minutes          |
      +-------------------------+-----------------------+---------------------+
      | AC1/AC2 Controller Node | 8 minutes             | 15 minutes          |
      +-------------------------+-----------------------+---------------------+
-1
source

All Articles