如何删除打印版中的多余边距

如何删除打印版中的多余边距

我在 ubuntu 16.04 LTS 上运行 Texmaker 4.4.1。

我为我的论文写了一个封面,里面有一张 Tikz 图片,在 texmaker 中预览这个文档效果很好,用 evince 打开文档效果也很好。但是相应文件夹中的缩略图显示了我的 .tex 文件中不存在的边距(我将所有边距设置为 0)。当我打印文档时也会出现这些边距,我不想在打印版本中出现它们。我检查了打印机的属性,没有自动添加边距。

以下是乳胶代码的一部分:

\documentclass[a4paper,12pt]{report}

\usepackage[top=0cm,bottom=0cm,left=0cm,right=0cm]{geometry}

\usepackage[usenames,dvipsnames]{xcolor}

\usepackage{tikz}

\definecolor{Classique}{RGB}{211,236,185}

\begin{document}

\flushleft

\begin{tikzpicture}
\fill[color=Classique] (0,0)--(20.98,0)--(20.98,1.5)--(2.5,1.5)--(2.5,28.1797)--(20.98,28.1797)--(20.98,29.6797)--(0,29.6797)--cycle; 
\end{tikzpicture}

\end{document}

相关内容