Alinhamento de múltiplas tabelas LaTeX horizontal e verticalmente

Alinhamento de múltiplas tabelas LaTeX horizontal e verticalmente

Estou tentando alinhar várias tabelas e tentei de várias maneiras diferentes, infelizmente nenhuma delas funciona. Aqui anexei um código de exemplo para sua leitura. Você poderia me sugerir como se livrar desse tipo de problema bobo. Eu realmente apreciarei seu apoio sincero. Obrigado

A saída pode ser encontrada usando estelink. Saída de amostra

Código de amostra:-

    \documentclass[letterpaper,10pt]{article}
    \usepackage{hyperref}
    \hypersetup{colorlinks=true, linkcolor=red,  urlcolor=blue}
    \usepackage[letterpaper,margin=0.65in]{geometry}
    \usepackage{array,booktabs,siunitx,xcolor,colortbl}
    \usepackage[utf8x]{inputenc}
    \usepackage{mdwlist}
    \usepackage{amsmath}
    \usepackage{enumitem}% http://ctan.org/pkg/enumitem
    \usepackage{calc}% http://ctan.org/pkg/calc

    \usepackage{fancyhdr}% http://ctan.org/pkg/fancyhdr
    \usepackage{lastpage}% http://ctan.org/pkg/lastpage
    \pagestyle{fancy}% Set default page style to fancy
    \renewcommand{\headrulewidth}{0pt}% Remove header rule
    \fancyhead{}% Remove all header contents
    \cfoot{Page \thepage\ of \pageref{LastPage}}% Page X of Y in the footer (centered)

    \usepackage{tabulary}
    \usepackage[newcommands]{ragged2e}

    \begin{document}


    \section{ABCdhahdak dahd }
    \hrule

    \vspace{0.2cm}
    \begin{tabulary}{1.00\textwidth}{r|| L c}
    time &  ajdhahsdash dhas dhasjh dashd ashd ashdjah dhas dha & adlaksd \\
    adasd &  adlahf ahf ahfha dfhah fhad fha & \\
     &  sfhakd hfhadf ajdhf adhf adjfha fjdh fahf ahah fjadfh ajfhlad xfhalflgdh gjadf djhgad ghad gadjhg ad &  \\ 
     &  fa fjadh dfaf hajhf ahfah fhd fajhf adhf hajfh ahfjah fahf afh ajhf ahfjajhf h &  \\ 
     &  hhf ahfjh adhfaj fjahd fhaj fah jahf ahfjah fha fha &  \\
    \end{tabulary}

    \vspace{0.4cm}
    \hspace{-0cm}

    \vspace{0.2cm}
    \begin{tabulary}{1.00\textwidth}{r|| L c}
    time &  ajdhahsdash dhas dhasjh dashd ashd ashdjah dhas dha & adlaksd \\
    adasd &  adlahf ahf ahfha dfhah fhad fha & \\
     &  sfhakd hfhadf ajdhf adhf adjfha fjdh fahf ahah fjadfh ajfhlad xfhalflgdh gjadf djhgad ghad gadjhg ad &  \\ 
     &  fa fjadh dfaf hajhf ahfah fhd fajhf adhf hajfh ahfjah fahf afh ajhf ahfjajhf h &  \\ 
     &  hhf ahfjh adhfaj fjahd fhaj fah jahf ahfjah fha fha &  \\
    \end{tabulary}

    \end{document}

Responder1

Use \noindentpara iniciar a tabela na margem esquerda.

Não tenho certeza se você deseja alinhar também as colunas da tabela. Neste caso, use as p{}colunas quando necessário, em vez de r, lou ccolunas, onde a largura depende do conteúdo:

 \noindent\begin{tabulary}{1.00\textwidth}{p{1.5cm}|| L c}

informação relacionada