如何建立文档页眉?

如何建立文档页眉?

我一直在从事印刷媒体工作,我想将我当前的 word 样式格式化为 LaTeX。我对这方面的知识还很陌生,但想为我的职业学习。我真的很期待这样的标题,但我自己在代码上弄得一团糟。我相信我们可以使用表格来做到这一点,但我的代码很乱。如果有人能帮我解决这个问题就太好了。我需要在页面标题上方使用这种格式。抱歉没有提供示例。

在此处输入图片描述

答案1

\documentclass[a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage{xcolor,calc}
\usepackage{colortbl}
\usepackage{graphicx}

\definecolor{confblue}{rgb}{.514,.792,1}
\definecolor{confgray}{gray}{.702}

\newcommand{\conferenceheader}{%
  \vspace*{-3cm}
  \noindent\makebox[\textwidth]{%
  \begin{minipage}{1.2\textwidth}
  \sbox0{\includegraphics[width=.33333\textwidth]{qFu74}}%
  \dimen8=\ht0 \fboxrule=0pt
  \large\sffamily
  \raisebox{-\fboxsep}{\usebox0}%\kern-.5\fboxsep
  \fcolorbox{black}{confblue}{%
  \parbox[b][\dimen8-2\fboxsep][t]{.33333\textwidth-2\fboxsep}{%
    ZooZooCampaign\\ Indra Park\\ Banglore}}%
  \fcolorbox{black}{confgray}{%
  \parbox[b][\dimen8-2\fboxsep][t]{.33333\textwidth-2\fboxsep}{%
    Ahmed Patel\\ CEO, IGRF systems\\[\baselineskip]
    \textcolor{blue}{\ttfamily [email protected]}\\
    www.icrf.com}}\\[2ex]
  \fcolorbox{black}{confblue}{\makebox[\textwidth-2\fboxsep][l]{>\/> Sponsors}}\\[1ex]
  IDEA Corporation\\
  Airtel Communication\\
  ICRF foundation\\
  Sree Bharathi Institutes, Banergatta Road
  \end{minipage}}}

\begin{document}

\conferenceheader

\end{document}

这只是为了展示盒子设置的一些细节的尝试。

在此处输入图片描述

相关内容