Latex 不显示表格的其余部分

Latex 不显示表格的其余部分

我对 Latex 还不太熟悉,所以请原谅我。Latex 没有显示我的表格的其余部分,我不知道我做错了什么。我花了 2 个小时却没有找到解决方案。有人能告诉我发生了什么吗?这是我的表格:

\documentclass{article} 

\usepackage[english]{babel} %%% 'french', 'german', 'spanish', 'danish', etc.
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{txfonts}
\usepackage{mathdots}
\usepackage[classicReIm]{kpfonts}
\usepackage[dvips]{graphicx} %%% use 'pdftex' instead of 'dvips' for PDF output

% You can include more LaTeX packages here 


\begin{document}

\noindent 

\noindent 

\noindent 

\noindent 

\noindent 

\noindent 

\begin{tabular}{|p{1.2in}|p{0.5in}|p{1.0in}|p{1.0in}|} \hline 
\textbf{Requirement} & \textbf{Applicable }  & \textbf{Standard Applied }  & \textbf{Comments }  \\ \hline 
1.The devices must be designed and manufactured in such a way that, when used under the conditions and for the purposes intended, they will not compromise the clinical condition or tprotection of health and safety. & A & IEC 60903:2014 - live working. Electrical insulating gloves & Glove must be made of insulating material due to close proximity to current carrying materials. This standard is not accessible on the BSOL website so may need some help getting access... \\ \hline 
2. The solutions adopted y acknowledged state of the art.\newline In selecting the most appropriate solutions, the manufacturer must apply\newline the following principles in the following order:\newline --- elot be eliminated,\newline --- inform users of the residual risks due to any shortcomings of the\newline protection measures adopted. &  aa & aa & aa  \\ \hline
3. The devices must achieve the performances intended by the manufacturer and be designed, manufactured and packaged in such a way that they are suitable for one or more of the functions referred to in Article 1 \eqref{GrindEQ__2_} (a), as specified by the manufacturer.\newline \newline  & A & BS EN ISO 13934-1:2013 - Textiles --- Tensile properties of fabrics\newline Test: page 8 & Tensile strength of the glove must be manufactured accurately such that deformation of the glove during operation can be taken into account when processing data. \\ \hline 
4. The devices must achieve the performances intended by the manufacturer and be designed, manufactured and packaged in such a way that they are suitable for one or more of the functions referred to in Article 1 \eqref{GrindEQ__2_} (a), as specified by the manufacturer.\newline \newline  & A & BS EN ISO 13934-1:2013 - Textiles --- Tensile properties of fabrics\newline Test: page 8 & Tensile strength of the glove must be manufactured accurately such that deformation of the glove during operation can be taken into account when processing data. \\ \hline
 \end{tabular}



\textbf{}

\noindent 

\noindent 


\end{document}

答案1

这和你的环境有关tabular。用环境替换它longtable,并且不要忘记longtable在序言中包含该包。

\documentclass{article} 

\usepackage[english]{babel} %%% 'french', 'german', 'spanish', 'danish', etc.
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{txfonts}
\usepackage{mathdots}
\usepackage[classicReIm]{kpfonts}
\usepackage[dvips]{graphicx} %%% use 'pdftex' instead of 'dvips' for PDF output
\usepackage{longtable}
% You can include more LaTeX packages here 


\begin{document}

\noindent 

\noindent 

\noindent 

\noindent 

\noindent 

\noindent 

\begin{longtable}{|p{1.2in}|p{0.5in}|p{1.0in}|p{1.0in}|} \hline 
\textbf{Requirement} & \textbf{Applicable }  & \textbf{Standard Applied }  & \textbf{Comments }  \\ \hline 
1.The devices must be designed and manufactured in such a way that, when used under the conditions and for the purposes intended, they will not compromise the clinical condition or tprotection of health and safety. & A & IEC 60903:2014 - live working. Electrical insulating gloves & Glove must be made of insulating material due to close proximity to current carrying materials. This standard is not accessible on the BSOL website so may need some help getting access... \\ \hline 
2. The solutions adopted y acknowledged state of the art.\newline In selecting the most appropriate solutions, the manufacturer must apply\newline the following principles in the following order:\newline --- elot be eliminated,\newline --- inform users of the residual risks due to any shortcomings of the\newline protection measures adopted. &  aa & aa & aa  \\ \hline
3. The devices must achieve the performances intended by the manufacturer and be designed, manufactured and packaged in such a way that they are suitable for one or more of the functions referred to in Article 1 \eqref{GrindEQ__2_} (a), as specified by the manufacturer.\newline \newline  & A & BS EN ISO 13934-1:2013 - Textiles --- Tensile properties of fabrics\newline Test: page 8 & Tensile strength of the glove must be manufactured accurately such that deformation of the glove during operation can be taken into account when processing data. \\ \hline 
4. The devices must achieve the performances intended by the manufacturer and be designed, manufactured and packaged in such a way that they are suitable for one or more of the functions referred to in Article 1 \eqref{GrindEQ__2_} (a), as specified by the manufacturer.\newline \newline  & A & BS EN ISO 13934-1:2013 - Textiles --- Tensile properties of fabrics\newline Test: page 8 & Tensile strength of the glove must be manufactured accurately such that deformation of the glove during operation can be taken into account when processing data. \\ \hline
 \end{longtable}



\textbf{}

\noindent 

\noindent 


\end{document}

您将获得:

在此处输入图片描述 在此处输入图片描述

相关内容