How to set same identation for
tabular's on different, but successive, pages?
I've two tabular's, each on different, but successive, pages of the document.
To have same identation, I've tried the \noindent, but this doesn't seem to help.
As can be seen on the image, the identation are slightly different.
What mechanism can I use to get same indentation?
\noindent\begin{tabular*}{\columnwidth}[h]{rlrrl}
\toprule
\multicolumn{5}{l}{\textbf{30s: Environmental Information}} \vspace{5pt} \\
\textbf{Value} & \textbf{Mnemonic} & $\delta$ & $\alpha$ & \textbf{Description} \vspace{5pt} \\
0x30 & {ADDRESS} & 0 & 1 & Get address of currently executing account. \\
0x31 & {BALANCE} & 1 & 1 & Get balance of the given account. \\
0x32 & {ORIGIN} & 0 & 1 & Get execution origination address. \\
0x33 & {CALLER} & 0 & 1 & Get caller address. \\
0x34 & {CALLVALUE} & 0 & 1 & Get deposited value by the instruction/transaction. \\
0x35 & {CALLDATALOAD} & 1 & 1 & Get input data of current environment. \\
0x36 & {CALLDATASIZE} & 0 & 1 & Get size of input data in current environment. \\
0x37 & {CALLDATACOPY} & 3 & 0 & Copy input data in current environment to memory. \\
0x38 & {CODESIZE} & 0 & 1 & Get size of code running in current environment. \\
0x39 & {CODECOPY} & 3 & 0 & Copy code running in current environment to memory. \\
0x3a & {GASPRICE} & 0 & 1 & Get price of gas in current environment. \\
0x3b & {EXTCODESIZE} & 1 & 1 & Get size of an account's code. \\
0x3c & {EXTCODECOPY} & 4 & 0 & Copy an account's code to memory. \\
\end{tabular*}
\noindent\begin{tabular*}{\columnwidth}[h]{rlrrl}
\toprule
\multicolumn{5}{l}{\textbf{40s: Block Information}} \vspace{5pt} \\
\textbf{Value} & \textbf{Mnemonic} & $\delta$ & $\alpha$ & \textbf{Description} \vspace{5pt} \\
0x40 & {BLOCKHASH} & 1 & 1 & Get the hash of one of the 256 most recent complete blocks. \\
0x41 & {COINBASE} & 0 & 1 & Get the block's beneficiary address. \\
0x42 & {TIMESTAMP} & 0 & 1 & Get the block's timestamp. \\
0x43 & {NUMBER} & 0 & 1 & Get the block's number. \\
0x44 & {DIFFICULTY} & 0 & 1 & Get the block's difficulty. \\
0x45 & {GASLIMIT} & 0 & 1 & Get the block's gas limit. \\
\end{tabular*}

\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem. – dexteritas Sep 14 '17 at 11:30onesideand have a look if the position of the table is now the same. – samcarter_is_at_topanswers.xyz Sep 14 '17 at 11:38