Tabularx 功能具有小尺寸和嵌入徽标

Tabularx 功能具有小尺寸和嵌入徽标

我一直在尝试学习如何使用 tabularx 来创建一个简单的摘要文本表以及一个可以嵌入图片(Logo)的标题表。我附上了一张这两个表应该是什么样子的图片!此外,我将提供我用于创建简单摘要表的输入和输出(尽管它给了我错误的结果,可能是因为我对 tabularx 命令不熟悉)。任何帮助都将不胜感激!

输入:

\begin{table}[H]
\begin{tabularx}{|X|}
\hline
Abstract \\ \hline
         \\ \hline
\end{tabularx}
\end{table}

输出:—X—摘要

在此处输入图片描述

答案1

目前,您的问题很不幸有些不清楚。您的问题到底是什么?是如何将图像插入单元格,是对齐方式,还是列宽……

但是,这里有一个 MWE,它创建了两个与您的问题有些相似的表:

在此处输入图片描述

\documentclass{article}

\usepackage{tabularx}
\usepackage{graphicx}

\usepackage{makecell}

\usepackage[export]{adjustbox}

\usepackage[table]{xcolor}
\definecolor{mylightgray}{RGB}{240,240,240}
\definecolor{mydarkgray}{RGB}{130,130,130}


\usepackage{lipsum} % For filler text, provedes the \lipsum command. Do not use in your real document.

\begin{document}

\noindent
\begin{tabularx}{\textwidth}{|r|X|l|}
\hline
\multicolumn{1}{|c|}{\includegraphics[width=2cm,valign=c]{example-image}} & \Large \makecell{Some large Text} & \makecell{\scriptsize some text\\ \Large text}\\
\hline
\cellcolor{mylightgray} text text: & \multicolumn{2}{l|}{\color{red} some red text} \\
\hline
\cellcolor{mylightgray} some other text: & \begin{tabular*}{\hsize}{@{\extracolsep{\fill}}@{}lr@{}} text & \multicolumn{1}{|r@{}}{\cellcolor{mylightgray}text:} \end{tabular*}  & \color{red} red text\\
\hline
\end{tabularx}

\bigskip

\noindent
\begin{tabularx}{\textwidth}{|X|}
\hline
\rowcolor{mylightgray}\makecell{Abstract:} \\ \hline
      \lipsum[4] Some more text \\ \hline
\end{tabularx}
\end{document}

相关内容