tabularx 环境中的水平线长度过长

tabularx 环境中的水平线长度过长

我正在使用 tabularx 环境来构建表格,但是右侧的水平线长度过多,如下所示: 在此处输入图片描述

我的乳胶代码如下所示:

\documentclass[12pt]{article}
    \usepackage{amsmath}
    \usepackage{amsfonts}
    \usepackage{mathrsfs}
    \usepackage{graphicx}
    \usepackage{array}
    \usepackage{float}
    \usepackage[colorlinks=true,linkcolor=blue,urlcolor=black,citecolor=blue,bookmarksopen=true]{hyperref}
    \usepackage[utf8]{inputenc}
    \usepackage[english]{babel}
    \usepackage{natbib}
    \usepackage{geometry,tabularx,multirow}
    \usepackage[table]{xcolor}
    \usepackage{tcolorbox}
    \usepackage{bookmark}
    \usepackage{gensymb}
    \newcolumntype{Y}{>{\centering\arraybackslash}X}
\renewcommand\tabularxcolumn[1]{m{#1}} %This is the cause
    \begin{document}
    \newgeometry{right = 1.00in}
    \thispagestyle{empty}
    \begin{tabularx}{420pt}{|Y|Y|Y|}
    \hline
    \textbf{Description} & \textbf{Event} & \textbf{Date} \\
    \hline
    \end{tabularx}
    \end{document}

请告诉我如何消除这个问题。

相关内容