姓名 -------------------------- 照片

姓名 -------------------------- 照片

可能重复:
带有徽标的标题

我想问你如何创建标题,以便我的名字和个人信息位于我的照片旁边。我需要以下内容

============================================================

姓名 -------------------------- 照片

出生日期 ----------------- 照片

国籍 -------------------- 照片

这里我想开始提供联系信息。

任何帮助都将非常感激。

提前致谢

答案1

您正在使用哪个文档类?您应该添加一个可编译的示例...如果您只想包装图形,您可以minipage在任何类中使用一个简单的环境来实现这一点...

\documentclass{letter}
\usepackage{graphicx}% Required to include the figure
 \begin{document}
  \begin{minipage}{.5\textwidth}
   Name: Lorem Ipsum \\
   Date of Birth: 01/01/2011 \\
   nationality: Nowhere \\
  \end{minipage}%
  \begin{minipage}{.5\textwidth}
   \includegraphics[width=0.48\textwidth]{/path/to/figure}
  \end{minipage}
\end{document}

实际上有相关问题的答案比我的更好。请参阅:这个问题:“带有徽标的标题”

相关内容