\hrulefill 用于数字标牌

\hrulefill 用于数字标牌

我正在尝试添加一个这样的数字标牌的地方

\vspace*{0.65cm}
\hspace*{3.5in}\hrulefill \includegraphics[width=0.2\textheight]{sign} \\
\hspace*{0cm} \hfill {Test}\\
\hspace*{0cm} \hfill Test

但结果就是这样 在此处输入图片描述

图像(具有透明背景的 PDF)未超出水平线\hrulefill。如何才能获得带有图像的水平线?我希望线条不会正好位于图像下方,但我希望图像与线条重叠。可能不使用表格...

答案1

这就是你想要的东西吗?

\documentclass{article}

\usepackage{graphicx, mwe} 
\usepackage{xcolor}

\begin{document}

\vspace*{0.65cm}
\raggedleft\includegraphics[width=0.2\textheight]{example-image-a} \\[-7.8ex]
\hspace*{2.5in}{\color{red}\hrulefill} \\[7.8ex]
\hspace*{0cm} \hfill {Test}\\
\hspace*{0cm} \hfill Test

\end{document} 

在此处输入图片描述

相关内容