抽認卡類別中的垂直間距不正確

抽認卡類別中的垂直間距不正確

我正在使用抽認卡類別創建一組抽認卡,專為 Avery 5388 紙張設計。這會在每頁創建三個抽認卡,但垂直對齊不正確。頂部抽認卡和頁面頂部以及底部抽認卡和頁面底部之間應該有相等的間距,我認為是 1 英寸,但文檔編譯時頂部的空間太大。當我列印文件時,抽認卡的邊框與紙張上的穿孔不對齊。這是一個例子:

\documentclass[grid,avery5388]{flashcards}
\usepackage[utf8]{inputenc}

\cardfrontstyle{headings}

\begin{document}
    \begin{flashcard}{Term 1}
        Example text
    \end{flashcard}
    \begin{flashcard}{Term 2}
        Example text
    \end{flashcard}
    \begin{flashcard}{Term 3}
        Example text
    \end{flashcard}
\end{document}

據我所知,該類別沒有提供可以手動更改頂部和底部填充的命令。我該如何解決這個問題?

答案1

我沒有紙來知道什麼適合或不適合,但\voffset按照下面的行添加會將所有輸出向上移動 0.1 英寸(類似的\hoffset可用於調整水平位置),所以你應該能夠精細將位置調整到印表機中輸出的精確位置。

\voffset=-.1in
\documentclass[grid,avery5388]{flashcards}
\usepackage[utf8]{inputenc}

\cardfrontstyle{headings}

\begin{document}
    \begin{flashcard}{Term 1}
        Example text
    \end{flashcard}
    \begin{flashcard}{Term 2}
        Example text
    \end{flashcard}
    \begin{flashcard}{Term 3}
        Example text
    \end{flashcard}
\end{document}

相關內容