图形在脚部,如何定位

图形在脚部,如何定位

我需要在每个页面的脚注中放置一个徽标。到目前为止,它都可以正常工作,但是徽标的位置非常高,有时它非常靠近文本。我需要将徽标放置得更低或使文本结尾更高。(我希望徽标更低)我尝试更改几何设置,但这只会使所有内容都变得更高。我使用 fancyfoot 来获取徽标。我使用的是 MiKTeX 2.9。

这是我的命令:

\documentclass[a4paper, 12pt]{article}
\usepackage[ngerman]{babel}
\usepackage[babel,german=quotes]{csquotes}
\usepackage[ansinew]{inputenc}
\usepackage{graphicx} 
\usepackage[square]{natbib}
\usepackage[ 
colorlinks=true,
urlcolor=black,
linkcolor=black
]{hyperref}
\usepackage{breakurl}
\usepackage[onehalfspacing]{setspace}
\usepackage[T1]{fontenc}
\newcommand{\changefont}[3]{
\fontfamily{#1} \fontseries{#2} \fontshape{#3} \selectfont}
\usepackage{titlesec}
\usepackage{url}
\usepackage{geometry}
\geometry{a4paper,left=25mm,right=25mm, top=3cm, bottom=30mm}
\usepackage{xcolor}
\graphicspath{{Bilder/}}
\usepackage{fancyhdr}Stylepakete
\setlength{\headheight}{1.1\baselineskip}
\setlength{\footskip}{2\baselineskip}
\pagestyle{fancy}
\fancyhead[L]{\slshape \rightmark}
\fancyhead[R]{\slshape \leftmark}
\fancyfoot[L]{\includegraphics[width=6cm]{logotransp.png}}
\fancyfoot[C]{\thepage}
\usepackage{multicol}
\usepackage{fancybox}
\usepackage{amssymb}
\usepackage{placeins}
\newcommand{\zB}{z.\,B. }
\newcommand{\code}[1]{\textsf{#1}}
\newcommand{\f}{\textbf}%Fettschreiben
\newcommand{\gr}{\textcolor[rgb]{0,0.6,0}}
\setlength\parindent{0ex}
\newcommand{\uu}[1]{\f{\gr{\large{#1}}}\\}
\titleformat{\section}
{\normalfont\huge\bfseries}{\thesection}{1em}{\gr}
\titleformat{\subsection}
{\normalfont\Large\bfseries}{\thesubsection}{1em}{\gr}
\titleformat{\subsubsection}
{\normalfont\large\bfseries}{\thesubsubsection}{1em}{\gr}
\titleformat{\paragraph}
{\normalfont\bfseries}{\theparagraph}{1em}{\gr}
\apptocmd{\UrlBreaks}{\do\/\do\-\do\f\do\m}{}{}

答案1

您可以降低图形:

\fancyfoot[L]{\raisebox{-1cm}[0pt][0pt]{\includegraphics[width=6cm]{logotransp.‌​png}}}

相关内容