使用 mdframed 时 PDF 的缩放比例很奇怪

使用 mdframed 时 PDF 的缩放比例很奇怪

我的目标只是在文本和表格周围设置一个简单的方框。为此,我阅读了使用软件包mdframed。我这样做了,在 Sumatra 中预览时一切正常。现在我完成了我的文档并在 Adob​​e Acrobat 中打开了它。在 Adob​​e 中预览时,顶部留置线mdframed丢失了。只有使用 70.4% 缩放时才会出现。当缩放到 100% 时,所有线条都存在,但底部和右侧的线条比顶部和左侧的线条粗(见附图)。 100% 缩放 70.4% 扩展 当我想打印它时,它是一样的。我尝试\mdfdefinestyle使用命令linewidth= 1.5pt。这有助于避免消失,但它在各个方面都不一样。

LaTeX 代码:

    \begin{mdframed}%[style=dick]
        \textbf{_Text_}

        _Text_

        % gepunktete Linien
        \setlength\dashlinedash{1.5pt}
        \setlength\dashlinegap{2pt}
        \setlength\arrayrulewidth{0.3pt}

        \vspace{0.7cm}

        \begin{tabularx}{\textwidth}{XX}
            \hdashline
            Ort und Datum & Unterschrift des Prüfungsteilnehmers\\
        \end{tabularx}
    \end{mdframed}

提前非常感谢您!

答案1

感谢@Ulrike Fischer,我解决了这个问题。

使用[framemethod=tikz]导入时mdframed,我可以将 Adob​​e 中的 PDF 缩放到任意百分比而不会出现任何问题。

梅威瑟:

\documentclass{article}

\usepackage[linewidth=1pt, framemethod=tikz]{mdframed}

\begin{document}
    \begin{mdframed}
        This a wonderful test!
    \end{mdframed}
\end{document}

这在 TeXworks 的预览中看起来很糟糕,但在 Adob​​e Acrobat 和 Sumatra 中没有问题。

相关内容