This table has a few issues.
I used the
\centeringcommand to center align the first row of the table but it doesn't work and everything is left alignedborder on the top-right hand side of the table is missing some parts
Is there a way to minimize empty spaces between the rows?
Code:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[a4paper, total={6in, 8in}]{geometry}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{amsmath,amssymb}
\usepackage{amsthm}
\usepackage{mathrsfs}
\usepackage{cleveref}
\usepackage{tikz}
\usetikzlibrary{positioning,calc,arrows.meta}%arrows is deprecated
\usepackage{float}
\usepackage{framed}
\usepackage{blindtext}
\newfloat{infobox}{htbp}{lop}
\theoremstyle{definition}
\newtheorem{definition}{Definition}[section]
\pagenumbering{gobble}
\begin{document}
\begin{center}
\begin{table}
\centering
\begin{tabular}{|p{0.4\linewidth} | p{0.5\linewidth}|}
\hline
Visit Type & Fixed-Point Loop? \ \
\hline\hline
Circular visit inside of circular visit & No fixed-point loop. Since the parent visit repeats the evaluation, its loop includes the child visit as well.\ \hline
Non-circular visit in circular visit & No fixed-point loop. Visit has to evaluate only once. \ \hline
Non-circular visit in non-circular visit & No fixed-point loop. Visit has to evaluate only once. \ \hline
Circular visit in non-circular visit & Needs fixed-point loop. \ \hline
\end{tabular}\caption{case-by-case analysis of loop requirement in CRAG visit sequence evaluator}
\end{table}
\end{center}
\end{document}




figureortablefloat in acenterenvironment`. – Mico Nov 07 '21 at 07:08No fixed-point loop. (extra spacing here)Visit has to evaluate only once– js bibra Nov 07 '21 at 07:55\pagenumbering{gobble}. – egreg Nov 07 '21 at 11:33