我怎样才能使这个标题像图片中那样?我怎样才能轻松地在多个页面上重复使用它?

我怎样才能使这个标题像图片中那样?我怎样才能轻松地在多个页面上重复使用它?

有人知道如何在 LaTex 中制作此标题吗?我希望它像图片中那样。

是否可以轻松地重复使用它?我想用它来完成大学的多项家庭作业和任务?

在此处输入图片描述

这是 Microsoft Word 中当前任务的一个示例。

[![这是标题的图片][3]][3]

答案1

麻烦的是要对齐顶部;只需使用\raisebox即可。我不得不调整它,因为您提供的图像顶部有白色边框。

\documentclass{article}

\usepackage{graphicx}

\begin{document}

\mbox{\large\sffamily\bfseries
  \raisebox{\dimexpr-\height+2.5pt}{%
    \includegraphics[width=4cm]{KHLeuven}%
  }\quad
  \raisebox{-\height}{%
    \begin{tabular}{@{}l@{}}
    2TI Reeks X \ Date: \\
    Communicatie in het Frans: Deel 2 \\
    Pr\'esentation de son site web \\
    Nom:
    \end{tabular}%
  }%
}

\end{document}

在此处输入图片描述

如需多次使用,只需在序言中添加代码:

\documentclass{article}

\usepackage{graphicx}

\newcommand{\mylogo}{%
  \mbox{\large\sffamily\bfseries
    \raisebox{\dimexpr-\height+2.5pt}{%
      \includegraphics[width=4cm]{KHLeuven}%
    }\quad
    \raisebox{-\height}{%
      \begin{tabular}{@{}l@{}}
      2TI Reeks X \ Date: \\
      Communicatie in het Frans: Deel 2 \\
      Pr\'esentation de son site web \\
      Nom:
      \end{tabular}%
    }%
  }%
}

\begin{document}

\mylogo

\end{document}

答案2

这里有两种方法可以做到这一点:一种是使用纯 tex 宏包insbox及其 `InsertBoxL{未缩进的行数}{插入的框}[可选的缩进的额外行数以进行更正]

第二种解决方案是使用lettrine包,用图像代替用作字母的字母。

\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[showframe]{geometry}
\usepackage{tabularx, graphicx, eqparbox, lettrine, }
\input{insbox}

\begin{document}
%
\InsertBoxL{0}{\eqmakebox[G]{\includegraphics[scale=0.333]{khleuven_logo.png}}}
{\linespread{1.25}\parbox[t]{\dimexpr\linewidth-\eqboxwidth{G}\relax}{\sffamily\bfseries%
2 TI Reeks X\quad Date: \\
 Communicatie in het Frans: Deel 2\\
 Présentation de son site web\\
 Nom: }}
\vskip1cm

\lettrine[image = true, lines=3, lraise=-0.1]{khleuven_logo.png}{\renewcommand\arraystretch{1.25}
\begin{tabular}[t]{>{\sffamily\bfseries}l@{}}
    2 TI Reeks X\quad Date: \\
     Communicatie in het Frans: Deel 2\\
     Présentation de son site web\\
     Nom:
 \end{tabular} }

\end{document} 

在此处输入图片描述

相关内容