머리글과 바닥글이 표 형식이고 바닥글이 페이지를 벗어났습니다.

머리글과 바닥글이 표 형식이고 바닥글이 페이지를 벗어났습니다.

몇 가지 문제가 있습니다. 바닥글이 페이지를 벗어났고 표가 약간 왼쪽으로 이동했습니다. 사진을 참조하세요.

\documentclass[12pt]{article}
\newlength{\border}
\setlength{\border}{1cm}
\usepackage{geometry}
\geometry{left=2cm, right=2cm, top=\border, bottom=\border, includehead, includefoot}
\usepackage{multirow}
\usepackage{graphicx}
\usepackage{tabularx}
\usepackage{lastpage}
\usepackage{array}
\newcolumntype{x}{>{\centering\arraybackslash}X}
\newcolumntype{C}[1]{>{\centering\arraybackslash}m{#1}}
\usepackage{calc}
\usepackage{fancyhdr}
\fancypagestyle{mystyle}{%
    \newlength{\forheader}
    \setlength{\forheader}{(\paperwidth-2\border-\textwidth)}
    \fancyheadoffset{\forheader}
    \fancyfootoffset{\forheader}
    \newlength{\tabhead}
    \setlength{\tabhead}{(\textwidth+\forheader)}
    \fancyhf{}
    \fancyhead[C]{%
        \begin{tabularx}{\tabhead}{C{3.5cm}|x|C{5cm}}
            \multirow{3}{*}{\includegraphics[width=2cm]{example-image}} &
            \multirow{2}{*}{Text} &
            First
            \\ \cline{3-3}
            & & Second
            \\ \cline{3-3}
            & \multirow{-2}{*}{Latin report title} & Third
            \\ \hline
        \end{tabularx}
    }
    \fancyfoot[C]{%
        \begin{tabularx}{\tabhead}{C{4cm}|x|C{4cm}}
            \hline
            Page \thepage{} of \pageref{LastPage} &
            Text &
            Page \thepage{} of \pageref{LastPage}
        \end{tabularx}
    }
    \renewcommand{\headrulewidth}{0pt}
}
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage{eso-pic}
\usepackage{lipsum}
\AddToShipoutPictureBG{%
    \begin{tikzpicture}[overlay,remember picture]
        \draw[line width=1pt]
        ($ (current page.north west) + (\border,-\border) $)
        rectangle
        ($ (current page.south east) + (-\border,\border) $);
    \end{tikzpicture}
}
\pagestyle{mystyle}
\headheight43.9pt
\begin{document}
    \lipsum
    
    \lipsum
\end{document} 

여기에 이미지 설명을 입력하세요


바닥글은 머리글과 같아야 합니다. 국경에!

여기에 이미지 설명을 입력하세요

답변1

\documentclass[12pt]{article}
\newlength{\border}
\setlength{\border}{1cm}
\newlength{\margins}
\setlength{\margins}{\dimexpr\border+1cm}
\usepackage{geometry}
\geometry{left=\margins, right=\margins, top=\border, bottom=\border, includehead, includefoot}
\usepackage{multirow}
\usepackage{graphicx}
\usepackage{tabularx}
\usepackage{lastpage}
\usepackage{array}
\newcolumntype{x}{>{\centering\arraybackslash}X}
\newcolumntype{C}[1]{>{\centering\arraybackslash}m{#1}}
\usepackage{fancyhdr}
\fancypagestyle{mystyle}{%
    \newlength{\forheader}
    \setlength{\forheader}{\dimexpr\paperwidth-2\border-\textwidth}
    \fancyheadoffset{\forheader}
    \fancyfootoffset{\forheader}
    \newlength{\tabhead}
    \setlength{\tabhead}{\dimexpr\textwidth+\forheader}
    \fancyhf{}
    \fancyhead[C]{%
        \begin{tabularx}{\tabhead}{C{3.5cm}|x|C{4cm}}
            \multirow{3}{*}{\includegraphics[width=2cm]{example-image}} &
            \multirow{2}{*}{Text} &
            First 
            \tabularnewline \cline{3-3}
            & & Second 
            \tabularnewline \cline{3-3}
            & \multirow{-2}{*}{Latin report title} & Third 
            \tabularnewline \hline
        \end{tabularx}%
    }
    \fancyfoot[C]{%
        \raisebox{\depth}{%
            \begin{tabularx}{\tabhead}{C{4cm}|x|C{4cm}}
                \hline
                Page \thepage{} of \pageref{LastPage} &
                Text &
                Page \thepage{} of \pageref{LastPage}
            \end{tabularx}%
        }%
    }
    \renewcommand{\headrulewidth}{0pt}
}
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage{eso-pic}
\usepackage{lipsum}
\AddToShipoutPictureBG{%
    \begin{tikzpicture}[overlay,remember picture]
        \draw[line width=1pt]
        ($ (current page.north west) + (\border,-\border) $)
        rectangle
        ($ (current page.south east) + (-\border,\border) $);
    \end{tikzpicture}
}
\pagestyle{mystyle}
\headheight43.9pt
\setlength{\textheight}{\dimexpr\paperheight-\headheight-\headsep-\footskip-2\border}
\begin{document}
    \lipsum
    
    \lipsum
\end{document}

관련 정보