可以用TikZ实现,在TikZ说明书的首页就有样例代码。
简单实现了一个,细节请再仔细调整:
\documentclass{ctexart}
\usepackage{tikz}
\usetikzlibrary{fadings}
% 文字倒影(TikZ实现)
\newbox\mybox
\def\nodeshadowed[#1]#2;{
  \node[scale=2,above,#1]{
    \global\setbox\mybox=\hbox{#2}
    \copy\mybox
  };
  \node[scale=2,above,#1,yscale=-1, scope fading=south,opacity=0.4]{\box\mybox};
}
\makeatletter
\renewcommand\maketitle{
  {
    \raggedright % Note the extra {
    \begin{center}
      {
        \begin{tikzpicture}
          \nodeshadowed[blue, at = {(-5, 8)}]{\@title};
        \end{tikzpicture}
      }\\[4ex]
      {
        \begin{tikzpicture}
          \nodeshadowed[blue, at = {(-5, 8)}]{\@author};
        \end{tikzpicture}
      }\\[4ex]
    \end{center}
  }
} % Note the extra }
\makeatother
\title{线性代数.总结与复习}
\author{武汉大学\ 黄正华}
\date{}
\begin{document}
\maketitle
\end{document}其结果为:
左下角的Logo图像也是用tikz化的吧,这种Logo如何实现呢?
可以有各种实现方式。
能否帮忙实现一下呢?多谢!
@u7751 用TiKZ的decorations.footprints库可以实现,细节得调整。