操作表格和多列

操作表格和多列

我正在尝试为我的硕士作业制作一个模板。这个硕士是由一所大学和一个研究中心组织的。所以我想到在页面顶部(左侧和右侧)放上他们的徽标。在这些徽标下面我想放上他们的名字。

我创建徽标时没有遇到任何麻烦。对于他们的名字,我想过使用左右对齐的表格来写他们的名字,但尽管我告诉它将其[H]准确地放在这里,它还是转到了下一页。

我也尝试过multicols但似乎也无法操纵它。

我的代码是

\documentclass[a4paper,11pt]{article}

\usepackage[greek,english]{babel}
\setcounter{secnumdepth}{3}
\usepackage[iso-8859-7]{inputenc}
\usepackage{kerkis}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{amsthm}
\usepackage[margin=2.8cm]{geometry}
\usepackage{subfigure}
\usepackage{multicol}
\newtheorem{exe}{¢óêçóç}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}

\begin{document}

\begin{figure}%
\subfigure{\includegraphics[width=0.1\columnwidth]{ntua-logo}}\hfill
\subfigure{\includegraphics[width=0.1\columnwidth]{demokritos-logo}}
\end{figure}

\begin{table}[H]
\begin{center}
\begin{tabular}{lC{1cm}r}
National Technical University of Athens & ${}$ &National Research Center of Physical        Sciences\\
School of Applied Mathematics and Physical Sciences & ${}$ & Demokritos\\
\end{tabular}
\end{center}
\end{table}

%\begin{multicols}{2}
%National Technical University of Athens \columnbreak National Research Center of Physical        Sciences\\
%School of Applied Mathematics and Physical Sciences \columnbreak Demokritos
%\end{multicols}

\begin{center}\textbf{Master Title}\end{center}

\begin{exe}
$1+1=2$
\end{exe}

\end{document}

我的输出是

对此有什么想法吗?

答案1

这不是一个figure您想要定位在合适分页符处的带标签的浮动构造。只需\includegraphics在没有图形环境的情况下使用,也许最好的方法是将其置于图片模式,\put以便您可以准确定位它,因此:

\begin{picture}(0,30)
\put(0,0){\includegraphics{...}}
\put(30,-50){XXX University}
\end{picture}

也可以看看在 LaTeX 中实现基于线条的企业设计

相关内容