将徽标插入表格中

将徽标插入表格中

我正在尝试在持续时间部分下的表格中插入一个徽标,这样我就会有一张表格,左侧是垂直的持续时间和 lofo,另一侧是描述和详细信息。我尝试了很多方法,但都没有用。描述部分一直向下移动。你能帮忙吗?

\begin{tabular}{r|p{11cm}}
\\
\textsc{2020-Present} 
 & BlaBla University \\\textsc{}&\emph{Undergraduate Researcher}\\&\footnotesize{Numerical simulations are done on controlling reverberations through multi-layered soundproofing materials with acoustic metamaterial shaping. Experimental work is done on sound wave manipulation by using programmable phase array transducers. \\\textsc{}&\emph{Supervisor: Asst. Prof. Hasan Yılmaz}
}\\\multicolumn{2}{c}{}\\
\end{tabular}

答案1

我建议为这个定义创建一个新命令,这样更容易保持条目之间的格式一致。我还建议将职位头衔(研究员)放在机构(大学)之前。我认为你想要多行而不是多列的徽标。希望我读懂了你的想法……

平均能量损失

\documentclass{article}
\usepackage{graphicx,multirow}
\newcommand{\education}[5]{%
  \textsc{#1}&\textbf{#2}\\ % date & position title
  \multirow{3}{2cm}{\\\includegraphics[width=2cm]{example-image-a}}&\emph{#3}\\ % logo & institution
  &\footnotesize#5\\ % details
  &\footnotesize\emph{#4}\\[\baselineskip]} % supervisor
\begin{document}
  \begin{tabular}{r|p{9cm}}
    \education{2020--Present}{Undergraduate Researcher}{BlaBla University}{Supervisor: Asst. Prof. Hasan Yılmaz}
    {Numerical simulations are done on controlling reverberations through multi-layered soundproofing materials with acoustic metamaterial shaping. Experimental work is done on sound wave manipulation by using programmable phase array transducers.}
    \education{2020--Present}{Undergraduate Researcher}{BlaBla University}{Supervisor: Asst. Prof. Hasan Yılmaz}
    {Numerical simulations are done on controlling reverberations through multi-layered soundproofing materials with acoustic metamaterial shaping. Experimental work is done on sound wave manipulation by using programmable phase array transducers.}
\end{tabular}
\end{document}

结果

结果

相关内容