Adding a negative horizontal indent for a tabularray table #508
russurquhart1
started this conversation in
Q&A
Replies: 1 comment 1 reply
-
It's caused by the Setting inner option \documentclass[oneside]{book}
\usepackage{tabularray}
\begin{document}
% before
\subsection{Software blows up after starting} \label{JIRA-3079}
\begin{tblr}{>{\bfseries}ll}
Errata ID & JIRA-3079 \\
Functional Area & System OS \\
Component & NOC \\
Severity & S5: No workaround
\end{tblr}
% after
\subsection{Software blows up after starting} % \label{JIRA-3079}
\begin{tblr}{colspec={>{\bfseries}ll}, column{1}={leftsep=0pt}}
Errata ID & JIRA-3079 \\
Functional Area & System OS \\
Component & NOC \\
Severity & S5: No workaround
\end{tblr}
\end{document} BTW for tables as simple as this one, the traditional |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm writing errata topics that have a very simple format:
I wanted to keep the coding of the table simple. My only issue is that the table is indented about 2.5 mm in from the left margin, and doesn't line up with the subsection title above it. Short of putting a
\hspace{-2.5mm}
in front of each row, is there a more elegant wave to more the table to the left by -25mm?Beta Was this translation helpful? Give feedback.
All reactions