Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I continue list indentation after a table in Pandoc when converting to PDF?

This is similar to this question but this time, instead of dealing with images, I am dealing with tables.

I would like to insert a table within a list item and then continue the indentation of that list point.

Markdown I am using:

## Problem 1 ##
a. This point starts here.
   Some stuff here.

--------------- -------------- --------------- --------------- ---------------
0 bit in error  1 bit in error 2 bits in error 3 bits in error 4 bits in error
--------------- -------------- --------------- --------------- ---------------
NNNN            ENNN, NENN,    EENN, ENEN,     EEEN, EENE,     EEEE
                NNEN, NNNE     ENNE, NEEN,     ENEE, EEEN
                               NENE, NNEE

------------------------------------------------------------------------------

   Point a continued here. This doesn't indent properly.

On Ubuntu 18.04 (WSL)

Pandoc Version: 2.2.3.2

Latex Version (pdflatex): 3.14159265-2.6-1.40.18

Current output looks like:

enter image description here

like image 842
Akshay Gaur Avatar asked Dec 17 '25 15:12

Akshay Gaur


1 Answers

Indent the whole content of your list item by four spaces, including the table:

## Problem 1 ##

a.  This point starts here.
    Some stuff here.

    --------------- -------------- --------------- --------------- ---------------
    0 bit in error  1 bit in error 2 bits in error 3 bits in error 4 bits in error
    --------------- -------------- --------------- --------------- ---------------
    NNNN            ENNN, NENN,    EENN, ENEN,     EEEN, EENE,     EEEE
                    NNEN, NNNE     ENNE, NEEN,     ENEE, EEEN
                                   NENE, NNEE
    ------------------------------------------------------------------------------

    Point a continued here. This doesn't indent properly.

This ensures that both, the table and the following paragraph, are recognized as belonging to the list item.

like image 126
tarleb Avatar answered Dec 20 '25 07:12

tarleb



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!