页面顶部的文本

页面顶部的文本

我尝试使用 tikz 包在页面顶部添加一个框,但我没有添加文本,如图所示。 在此处输入图片描述 这是我的代码:

\begin{tikzpicture}[remember picture, overlay]
  \draw[fill=rougeECL] (0,0) rectangle
    (\paperwidth,1cm);%{\color{white} AU:2020-2022};
  \node[yshift=15, xshift=0.67\paperwidth,rectangle,
         rounded corners=27pt,inner sep=11pt,
         fill=rougeECL]
        {\color{white} \shortstack{Code ECUE :\\ GCR.P2.5.1.27.2.F}};
  \end{tikzpicture} 

谢谢

答案1

由于你没有提供任何最小工作示例(MWE),我没有寻找您页面的任何特定几何形状。

yshift您可以通过添加具有相同和不同的另一个节点来实现您的要求xshift

页面顶部的文本

\documentclass{article}
\usepackage{tikz}

\begin{document}

    \begin{tikzpicture}
      \draw[fill=red!50!black] (0,0) rectangle (\paperwidth,1cm);
      \node[yshift=15, xshift=0.1\paperwidth,text=white]{AU:2020-2022};
      \node[yshift=15, xshift=0.67\paperwidth,
             rounded corners=27pt,
             inner sep=11pt,
             fill=red!50!black,
             text=white]
            {\shortstack{Code ECUE :\\ GCR.P2.5.1.27.2.F}};
    \end{tikzpicture} 
  
\end{document}

相关内容