虽然我在几何包选项中设置了 left=0cm,但输出 pdf 中也有一个边距

虽然我在几何包选项中设置了 left=0cm,但输出 pdf 中也有一个边距

在此处输入图片描述

\documentclass{article}
\usepackage{forloop}
\usepackage{polyglossia}
\setmainlanguage[numerals=Devanagari]{bengali}
\setmainlanguage{bengali}
\setotherlanguage{english}
\newfontfamily\bengalifont[Script=Bengali]{Akaash}
\usepackage[a4paper,left=0cm,top=0cm,bottom=0cm]{geometry}
\newcommand{\aline}{\\\hline \arabic{theyflines} &&&&&&&\rule{0cm}{0.5cm}}
\begin{document}
\pagenumbering{gobble}
\newcounter{theyflines}
%\begin{center}
%Extension - 1
%\end{center}
\begin{tabular}{|p{0.15cm}|p{6cm}|p{1.5cm}|p{1.3cm}|p{1cm}|p{1.5cm}|p{4.5cm}|p{3cm}|}
\hline
{\tiny ক্রমিক} নং & নাম & রুম নং & ডিপার্টমেন্ট & বর্ষ & সেশন & মোবাইল নং & জেলা
\forloop{theyflines}{1}{\value{theyflines} < 40}{\aline}\\
\hline
\end{tabular}
\end{document}

答案1

我希望这能有所帮助:使用包设置边距后geometry,使用\noindent(如所述@daleif)删除缩进间距。这样就可以得到0pt边距。

\documentclass[letterpaper]{article}
\usepackage[left=0in, top=0in,bottom=0in]{geometry}

\begin{document}
\noindent\begin{tabular}{|p{0.15cm}|p{6cm}|p{1.5cm}|p{1.3cm}|p{1cm}|p{1.5cm}|p{4.5cm}|p{3cm}|}
    \hline
    {\tiny a} & n & v & e & a & h& e & q\\
    \hline
\end{tabular}
\end{document}

在此处输入图片描述

相关内容