标题页中的徽标和标题之间不需要空格

标题页中的徽标和标题之间不需要空格

我有一个无法解决的问题。我已经使用 LaTeX 制作了一个标题页,但它在我学校的徽标和学校名称之间包含很多空格。这是我的代码,如果有人能帮助我

\begin{titlepage}
\begin{minipage}{\linewidth}
\begin{center}
\color{blue}
\bf {REPUBLIQUE TUNISIENNE \\
MINISTERE DE L'ENSEIGNEMENT SUPERIEUR,\\
DE LA RECHERCHE SCIENTIFIQUE ET DE LA TECHNOLOGIE \\
UNIVERSITE TUNIS EL MANAR }
\centerline{
\includegraphics[width=0.8\linewidth]{logo}
}
\centerline{
\textcolor{myblue}{\bf \normalsize{INSTITUT SUPERIEUR D'INFORMATIQUE}}
}

\end{center}
\end{minipage}
\vspace{1cm}

\begin{minipage}[b]{\linewidth}
\begin{center}
\color{black}
\bf \Large{M\'EMOIRE DE MAST\`ERE}
\end{center}
\end{minipage}
\vspace{0.5cm}

\begin{minipage}[b]{\linewidth}
\begin{center}
\color{black} \normalsize \bf{{Pr\'esent\'e en vue de l'obtention du \\
Dipl\^ome de mast\`ere de recherche en G\'enie logiciel \\
Option:Logiciels et Syst\`emes Critiques }}
\end{center}
\end{minipage}
\vspace{0.5cm}

\hspace{4cm}\begin{minipage}[b]{0.5\linewidth}
\begin{center}



\end{center}
\end{minipage}

{\begin{minipage}[b]{\linewidth}
\begin{center}


 \fontsize{18}{24}\selectfont 
\bfseries{Protection de la vie priv\'ee dans les r\'eseaux sociaux : 
principalement Facebook}
\end{center}
\end{minipage}}

\vspace{0.5cm}

\begin{minipage}[b]{\linewidth}
\begin{center}
\textbf{Elabor\'e Par: Gherib Boutheina}
\vspace{0.5cm}

\textbf{Encadr\'e par: Nawel Ben Salem Grati}
\vspace{1cm}

{\large \bf{Ann\'ee Universitaire:2011-2012}}
\end{center}
\end{minipage}

\end{titlepage}

答案1

我认为您的代码的相关部分就是这个,不是吗?

\centerline{%
\includegraphics[width=0.8\linewidth]{logo}%
}
\centerline{%
\textcolor{myblue}{\bf \normalsize{INSTITUT SUPERIEUR D'INFORMATIQUE}}%
}

从这段代码中,我看不出徽标和后面的文本之间有太大空白的原因,所以我猜想这个空白确实在徽标“内部”。您可以使用外部工具检查徽标周围是否包含某种白色边缘吗?

如果是这样,请在包含之前用一些图形编辑工具进行剪辑,或者使用的选项trim=a b c d和,其中分别是从原始框的左侧、底部、右侧和顶部删除的数量。clip\includegraphicsa b c d

\centerline{%
\includegraphics[width=0.8\linewidth,clip,trim=left bottom right top]{logo}%
}

相关内容