插入 PDF 上方的标题

插入 PDF 上方的标题

我在项目中插入了一个三页长的表格。该表格作为 pdf 文档添加。现在我想在表格上方插入一个标题Table A= …

我曾尝试自己解决这个问题,使用我找到的一个例子,但它把标题放在了表格下面,并使用Figure …

下面是它现在的样子以及我想要实现的目标的一个例子。 在此处输入图片描述

我使用以下代码插入pdf \includepdf[pages={1,2,3}]{Vorgeschlagene Versuchsreihen.pdf}:。

答案1

  • 我们没有关于您的文件的任何信息
  • 您的表格是作为图像插入的还是借助某些包作为表格写入的?
  • 在后一种情况下,起点可以提供以下 MWE(不对行进行着色):
\documentclass{article}
\usepackage[margin=25mm]{geometry}
\usepackage{microtype}
\usepackage{tabularray}
\usepackage{lipsum}

\begin{document}
\lipsum[1-2]
    \begin{center}
    \begin{longtblr}[
caption = {My long table},
  label = {tab:<name>}
                    ]{
    rowhead = 1,
    hlines, vlines,
    colspec = {*{3}{c}X[j] *{3}{c}X[j]},
    row{1}  = {font=\bfseries},
    row{2,3} = {bg=yellow!30},
                     }
text    &   text    &   text    &   text    
        &   text    &   text    &   text    &   text        \\
    1   &   2       &   3       &   4
        &   5       &   6       &   7       &   8           \\       
    1   &   2       &   3       &   \lipsum[66]
        &   5       &   6       &   7       &   8           \\
    1   &   2       &   3       &   4
        &   5       &   6       &   7       &   \lipsum[66] \\
\SetRow{fg=blue}
    1   &   2       &   3       &   \lipsum[66]
        &   5       &   6       &   7       &   8           \\
\SetRow{bg=orange!30}
    1   &   2       &   3       &   4
        &   5       &   6       &   7       &   \lipsum[66] \\
    \end{longtblr}
    \end{center}
\lipsum[4-5]
\end{document}

编译此 MWE 可得到表格标题所需的位置:

在此处输入图片描述

编辑: 添加了两种为行背景和行内文本着色的方法。

相关内容