
Tenho 3 tblr
subtabelas (dentro de um table
ambiente) e gostaria de colocar as 2 primeiras tblr
subtabelas uma ao lado da outra e a terceira tblr
subtabela abaixo das duas primeiras. Como eu posso fazer isso? (Por favor veja o código abaixo).
\documentclass[twocolumn,fleqn,10pt,dvipsnames,table]{wlscirep_modified}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{multirow, booktabs, tabularx}
\usepackage{makecell}
\usepackage{xurl}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{tabularx}
\usepackage{xfp}
\usepackage{color}
\usepackage{tabularray}
\usepackage{tikz}
\usepackage{textcomp,gensymb}
\usepackage{tabulary,longtable,afterpage}
\makeatletter
\newcommand{\aftertwo}[1]{\afterpage{\if@firstcolumn #1
\else\afterpage{#1}\fi}}
\makeatother
\begin{document}
% -------------------
% Two columns
\aftertwo{
\onecolumn
%
\begingroup
\setlist[itemize]{label={--},nosep, leftmargin=*,
before=\vspace*{-\baselineskip}}
\setlength{\extrarowheight}{1.5pt}
\begin{small}
% -------------------
\begin{table}[ht]
\centering
\caption{A general description about subcaption \textbf{(a)}, subcaption \textbf{(b)} and subcaption \textbf{(c)}...
}
\subcaption{Some text for this subcaption ...}
\begin{tblr}
{
width = \textwidth,
colspec = {lllllllll},
hlines,
row{1} = {font=\bfseries},
hline{1,Z}=0.8pt, hline{2}=0.4pt,
hline{1-12}=solid,
rowhead=1
}
Feature & A & B & C \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
\end{tblr}
\bigskip
\subcaption{Some text here ...}
\begin{tblr}
{
width = \textwidth,
colspec = {lllllllll},
hlines,
row{1} = {font=\bfseries},
hline{1,Z}=0.8pt, hline{2}=0.4pt,
hline{1-12}=solid,
rowhead=1
}
Feature & A & B & C \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
\end{tblr}
\bigskip
\subcaption{Some other text here ...}
\begin{tblr}
{
width = \textwidth,
colspec = {lllllllll},
hlines,
row{1} = {font=\bfseries},
hline{1,Z}=0.8pt, hline{2}=0.4pt,
hline{1-12}=solid,
rowhead=1
}
Feature & A & B & C \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
\end{tblr}
\end{table}
% -------------------
% Two columns
\end{small}
\endgroup
\twocolumn
}
% -------------------
\end{document}
Responder1
Não tenho ideia da classe de documento que você usa, mas você pode tentar usar subcaptionblock
s. No MWE abaixo, mantive o máximo possível do seu MWE e apenas alterei a classe do documento para article
e carreguei o enumitem
pacote conforme você usou \setlist
, o que presumi ser necessário.
Usei a opção labelfont=bf
ao carregar o subcaption
pacote para renderizar os rótulos das sublegendas em negrito. Observe que dentro de a subcaptionblock
você deve usar \caption
and not \subcaption
mas o primeiro é interpretado como se você tivesse usado o último.
\documentclass[twocolumn, fleqn, 10pt, dvipsnames, table]{article}
\usepackage{enumitem}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{multirow, booktabs, tabularx}
\usepackage{makecell}
\usepackage{xurl}
\usepackage{caption}
\usepackage[labelfont=bf]{subcaption}
\usepackage{tabularx}
\usepackage{xfp}
\usepackage{color}
\usepackage{tabularray}
\usepackage{tikz}
\usepackage{textcomp, gensymb}
\usepackage{tabulary, longtable, afterpage}
\makeatletter
\newcommand{\aftertwo}[1]{\afterpage{\if@firstcolumn #1
\else\afterpage{#1}\fi}}
\makeatother
\begin{document}
% -------------------
% Two columns
\aftertwo{
\onecolumn
%
\begingroup
\setlist[itemize]{label={--},nosep, leftmargin=*,
before=\vspace*{-\baselineskip}}
\setlength{\extrarowheight}{1.5pt}
\begin{small}
% -------------------
\begin{table}[ht]
\centering
\caption{A general description about subcaption \textbf{(a)}, subcaption \textbf{(b)} and subcaption \textbf{(c)}...
}
\begin{subcaptionblock}{.5\textwidth}
\caption{Some text for this subcaption ...}
\begin{tblr}
{
width = \textwidth,
colspec = {lllllllll},
hlines,
row{1} = {font=\bfseries},
hline{1,Z}=0.8pt, hline{2}=0.4pt,
hline{1-12}=solid,
rowhead=1
}
Feature & A & B & C \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
\end{tblr}
\end{subcaptionblock}%
\begin{subcaptionblock}{.5\textwidth}
\caption{Some text here ...}
\begin{tblr}
{
width = \textwidth,
colspec = {lllllllll},
hlines,
row{1} = {font=\bfseries},
hline{1,Z}=0.8pt, hline{2}=0.4pt,
hline{1-12}=solid,
rowhead=1
}
Feature & A & B & C \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
\end{tblr}
\end{subcaptionblock}
\begin{subcaptionblock}{\textwidth}
\centering\bigskip
\caption{Some other text here ...}
\begin{tblr}
{
width = \textwidth,
colspec = {lllllllll},
hlines,
row{1} = {font=\bfseries},
hline{1,Z}=0.8pt, hline{2}=0.4pt,
hline{1-12}=solid,
rowhead=1
}
Feature & A & B & C \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
\end{tblr}
\end{subcaptionblock}
\end{table}
% -------------------
% Two columns
\end{small}
\endgroup
\twocolumn
}
% -------------------
\end{document}
Responder2
- Eu não tenho sua aula de documento. Em vez disso, uso
article
, mas tenho certeza de que a solução proposta também funcionará com a sua. - A meu ver, suas tabelas mostradas em questão são curtas e podem caber em uma página, para que possam caber facilmente no
table*
ambiente (que abrange ambas as colunas do seu documento), portanto, não há necessidade de mudar de duas colunas para uma colunas e costas. - Você deve estar ciente de que
table*
aparecerá no topo da próxima página após sua inserção no texto. - se você estima que ele pode estar na parte inferior da mesma página onde está inserido, você pode forçá-lo usando o
stfloats
pacote (como faço no MWE abaixo). - Para subtabelas eu usaria
subfloat
o ambiente fornecido pelosubfig
pacote ou melhor, sua emulação fornecida pelosubcaption
pacote versão 3.1 ou mais recente. Usá-lo o código da tabela é um pouco mais curto. - Primeiramente duas subtabelas eu separaria
\hfill
entre as, para a terceira você só precisa inserir linhas vazias antes dela (e eventualmente adicionar algum salto vertical (por exemplo\bigskip
) para uma melhor formação de tabelas:
\documentclass[twocolumn, fleqn]{article}
%--------------- show page layout. don't use in a real document!
\usepackage{showframe}
\renewcommand\ShowFrameLinethickness{0.15pt}
\renewcommand*\ShowFrameColor{\color{red}}
%
\usepackage{lipsum} % for dummy text
%---------------------------------------------------------------%
\usepackage[T1]{fontenc}
\usepackage{textcomp,gensymb}
\usepackage{caption, subcaption}
% for inserting bit floats on page
\renewcommand{\dbltopfraction}{0.9} % fit big float above 2-col. text
\renewcommand{\textfraction}{0.07} % allow minimal text w. figs
\usepackage{xfp}
\usepackage{xcolor}
% \usepackage{longtable, makecell, multirow,
% tabulary, tabularx} % not needed in this particular case
\usepackage{tabularray}
\UseTblrLibrary{booktabs, siunitx}
\usepackage{stfloats} % for forcing floats to bottom of page
\usepackage{tikz}
\begin{document}
\lipsum[1][1-3]
\begin{table*}[b]
\centering
\caption{A general description about subcaption \textbf{(a)}, subcaption \textbf{(b)} and subcaption \textbf{(c)}...
}
\subfloat[Some text for this subcaption ...]%
{%
\begin{tblr}{hline{1,Z}=0.8pt, hline{2}=0.4pt,
colspec = {@{} l Q[c, si={table-format=1.3}]
Q[c, si={table-format=4.2}]
Q[c, si={table-format=1.3}]
@{} },
row{1} = {guard, font=\bfseries},
rowsep = 0.5pt,
row{even[4]} = {abovesep=1ex}
}
Feature & A & B & C \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
\end{tblr}
}
\hfill
\subfloat[Some text for this subcaption ...]%
{%
\begin{tblr}{hline{1,Z}=0.8pt, hline{2}=0.4pt,
colspec = {@{} l Q[c, si={table-format=1.3}]
Q[c, si={table-format=4.2}]
Q[c, si={table-format=1.3}]
@{} },
row{1} = {guard, font=\bfseries},
rowsep = 0.5pt,
row{even[4]} = {abovesep=1ex}
}
Feature & A & B & C \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
\end{tblr}
}
\bigskip
\subfloat[Some text for this subcaption ...]%
{%
\begin{tblr}{hline{1,Z}=0.8pt, hline{2}=0.4pt,
colspec = {@{} l Q[c, si={table-format=1.3}]
Q[c, si={table-format=4.2}]
Q[c, si={table-format=1.3}]
@{} },
row{1} = {guard, font=\bfseries},
rowsep = 0.5pt,
row{even[4]} = {abovesep=1ex}
}
Feature & A & B & C \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
\end{tblr}
}
\end{table*}
\lipsum[2-9]
\end{document}
Tem certeza de que precisa de todos os pacotes carregados para escrever tabelas? A maioria deles pode ser facilmente substituída por tabularray
pacote ...
(as linhas vermelhas indicam o layout da página)
Responder3
Talvez eu tenha encontrado uma solução, usando a seguinte estrutura, proposta por @Guido Muscioni em "Alinhe figuras e tabelas no ambiente de subfiguras" (e usando um espaço horizontal personalizado entre as duas subtabelas superiores, conforme sugerido em "Como adiciono espaçamento horizontal adicional entre duas figuras em látex?", onde uso \hspace{0.05\textwidth}
em vez de \hfill
).
A ideia básica é usar esta estrutura:
\begin{table}\centering
\subfloat[legend]{\label{A}}\hfill
\subfloat[legend]{\label{B}}\par
\subfloat[legend]{\label{C}}
\caption{my table}
\end{table}
e adicione tblr
dentro de \subfloat
, como segue (apenas um MWE):
\begin{table}\centering
\subfloat[legend]{\label{A}\begin{tblr}{}Feature & A & B & C\\\end{tblr}}\hfill
\subfloat[legend]{\label{B}\begin{tblr}{}Feature & A & B & C\\\end{tblr}}\par
\subfloat[legend]{\label{C}\begin{tblr}{}Feature & A & B & C\\\end{tblr}}
\caption{my table}
\end{table}
Então, voltando ao meu post original, este é o resultado final:
\documentclass[twocolumn,fleqn,10pt,dvipsnames,table]{wlscirep_SI}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{multirow, booktabs, tabularx}
\usepackage{makecell}
\usepackage{xurl}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{tabularx}
\usepackage{xfp}
\usepackage{color}
\usepackage{tabularray}
\usepackage{tikz}
\usepackage{textcomp,gensymb}
\usepackage{tabulary,longtable,afterpage}
\makeatletter
\newcommand{\aftertwo}[1]{\afterpage{\if@firstcolumn #1
\else\afterpage{#1}\fi}}
\makeatother
\begin{document}
% -------------------
% Two columns
\aftertwo{
\onecolumn
%
\begingroup
\setlist[itemize]{label={--},nosep, leftmargin=*,
before=\vspace*{-\baselineskip}}
\setlength{\extrarowheight}{1.5pt}
\begin{small}
% -------------------
\begin{table}\centering
\caption{A general description about subcaption \textbf{(a)}, subcaption \textbf{(b)} and subcaption \textbf{(c)}}
\subfloat[Subcaption for subtable \textbf{(a)}]{\label{a}\begin{tblr}
{
width = \textwidth,
colspec = {lllllllll},
hlines,
row{1} = {font=\bfseries},
hline{1,Z}=0.8pt, hline{2}=0.4pt,
hline{1-12}=solid,
rowhead=1
}
Feature & A & B & C \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
\end{tblr}}
\hspace{0.05\textwidth} %\hfill
\subfloat[Subcaption for subtable \textbf{(b)}]
{\label{b}\begin{tblr}
{
width = \textwidth,
colspec = {lllllllll},
hlines,
row{1} = {font=\bfseries},
hline{1,Z}=0.8pt, hline{2}=0.4pt,
hline{1-12}=solid,
rowhead=1
}
Feature & A & B & C \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
\end{tblr}}\par
\bigskip
\subfloat[Subcaption for subtable \textbf{(c)}]
{\label{c}\begin{tblr}
{
width = \textwidth,
colspec = {lllllllll},
hlines,
row{1} = {font=\bfseries},
hline{1,Z}=0.8pt, hline{2}=0.4pt,
hline{1-12}=solid,
rowhead=1
}
Feature & A & B & C \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
\end{tblr}}
\end{table}
% -------------------
% Two columns
\end{small}
\endgroup
\twocolumn
}
% -------------------
\end{document}
Responder4
Não sei wlscirep_modified
, mas acho que a solução apresentada também funciona com ele.
Não há necessidade de truques para obter a saída de uma coluna, basta usar
table*
Use
subtable
ambientes separados
Aqui está o código, embora eu não entenda por que usar o tblr
. Eu adiciono um truque que permite acomodar o float que não está sozinho em uma página.
\documentclass[twocolumn,fleqn,10pt,dvipsnames,table]{wlscirep}
\usepackage[T1]{fontenc}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{tabularray}
\usepackage{lipsum}% for context
\renewcommand\dblfloatpagefraction{0.7}% usual value 0.5
\begin{document}
\lipsum[1-4]
\begin{table*}
\centering\small
\caption{A general description about subcaption
\textbf{(a)}, subcaption \textbf{(b)} and subcaption \textbf{(c)}...}
\begin{subtable}{0.5\textwidth}
\centering
\subcaption{Some text for this subcaption ...}
\begin{tblr}
{
width = \textwidth,
colspec = {lllllllll},
hlines,
row{1} = {font=\bfseries},
hline{1,Z}=0.8pt, hline{2}=0.4pt,
hline{1-12}=solid,
rowhead=1
}
Feature & A & B & C \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
\end{tblr}
\end{subtable}%
\begin{subtable}{0.5\textwidth}
\centering
\subcaption{Some text here ...}
\begin{tblr}
{
width = \textwidth,
colspec = {lllllllll},
hlines,
row{1} = {font=\bfseries},
hline{1,Z}=0.8pt, hline{2}=0.4pt,
hline{1-12}=solid,
rowhead=1
}
Feature & A & B & C \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
\end{tblr}
\end{subtable}
\bigskip
\begin{subtable}{0.5\textwidth}
\centering
\subcaption{Some other text here ...}
\begin{tblr}
{
width = \textwidth,
colspec = {lllllllll},
hlines,
row{1} = {font=\bfseries},
hline{1,Z}=0.8pt, hline{2}=0.4pt,
hline{1-12}=solid,
rowhead=1
}
Feature & A & B & C \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
A quite long text here & 0.84 & 3020.15 & 0.78 \\
\end{tblr}
\end{subtable}
\end{table*}
\lipsum[5-21]
\end{document}