How to get enumerated tables to line up with the left edge of text?
I created this simple example to show, when I add enumerations to my tables, its indenting the content. How can I stop this indentation from happening? I want the numbering to be consistent with the other numbers in my document, not indented. --Joel Example below: \starttext \input knuth % notice that the numbers line up with the text to the left \startitemize[n] \startitem test\stopitem \startitem test2\stopitem \stopitemize \input knuth % notice that the text in this table lines up with the text to the left \starttabulate[|p|p|p|] \NC test \NC info \NC details \NC\NR \NC test 2 \NC info \NC details \NC\NR \stoptabulate \input knuth % notice the numbering is indented from the left, no longer lines up \startitemize[n] \starttabulate[|p|p|p|] \NI test \NC info \NC details \NC\NR \NI test 2 \NC info \NC details \NC\NR \stoptabulate \stopitemize \input knuth \stoptext
Joel via ntg-context schrieb am 27.12.2024 um 14:31:
I created this simple example to show, when I add enumerations to my tables, its indenting the content. How can I stop this indentation from happening? I want the numbering to be consistent with the other numbers in my document, not indented.
--Joel
Example below:
\starttext
\input knuth
% notice that the numbers line up with the text to the left
\startitemize[n] \startitem test\stopitem \startitem test2\stopitem \stopitemize
\input knuth
% notice that the text in this table lines up with the text to the left
\starttabulate[|p|p|p|] \NC test \NC info \NC details \NC\NR \NC test 2 \NC info \NC details \NC\NR \stoptabulate
\input knuth
% notice the numbering is indented from the left, no longer lines up
\startitemize[n] \starttabulate[|p|p|p|] \NI test \NC info \NC details \NC\NR \NI test 2 \NC info \NC details \NC\NR \stoptabulate \stopitemize
\startitemize[n][width=0pt] \starttabulate[|p|p|p|] \NI test \NC info \NC details \NC\NR \NI test 2 \NC info \NC details \NC\NR \stoptabulate \stopitemize or \startitemizetable[n][n=3,width=0pt] \NI test \NC info \NC details \NC\NR \NI test 2 \NC info \NC details \NC\NR \stopitemizetable Wolfgang
participants (2)
-
Joel
-
Wolfgang Schuster