在 latex 中插入 pdf 图像

在 latex 中插入 pdf 图像

当我尝试插入这样的图像时

\fancypagestyle{mystyle}
{
\setlength{\headheight}{15pt}
\lhead{} \chead{} \rhead{\includegraphics[scale=0.05,trim ={0.25mm 0.25mm 0.25mm 0.25mm},clip=true]{mylogo.pdf}}
\lfoot{} \cfoot{\thepage} \rfoot{}
\renewcommand{\headrulewidth}{0.35 pt}
\renewcommand{\footrulewidth}{0 pt}
}
\pagestyle{mystyle}

它根本行不通,而且我

\usepackage{graphicx}

我刚刚在那个地方得到了 logo.pdf 文本和小矩形

我有这个

%%HEADER
\fancypagestyle{mystil}
{
\setlength{\headheight}{15pt}
\lhead{} \chead{} \rhead{\includegraphics[scale=0.05,trim ={0.25mm 0.25mm 0.25mm 0.25mm},clip=true]{logo.pdf}}
\lfoot{} \cfoot{\thepage} \rfoot{}
\renewcommand{\headrulewidth}{0.35 pt}
\renewcommand{\footrulewidth}{0 pt}
}
\pagestyle{mystil}

在新页面上

\newpage
\pagestyle{mystil}

答案1

此 MWE 在此处:

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{fancyhdr}
\usepackage{lipsum}
\fancypagestyle{mystyle}
{
\setlength{\headheight}{15pt}
\lhead{} \chead{} \rhead{\includegraphics[scale=0.05,trim ={0.25mm 0.25mm 0.25mm 0.25mm},clip=true]{example-image}}
\lfoot{} \cfoot{\thepage} \rfoot{}
\renewcommand{\headrulewidth}{0.35 pt}
\renewcommand{\footrulewidth}{0 pt}
}
\pagestyle{mystyle}
\begin{document}
\lipsum
\end{document}

按预期工作:

在此处输入图片描述

了解为何要准备一个功能齐全的最小工作示例(MWE)真的那么重要吗?

可能在准备过程中,你就能发现错误——我遇到过很多次。如果没有它,我们就无法猜测问题的根源。

相关内容