다음과 같이 태그가 지정된 섹션 헤드 번호 및 표 캡션 번호에 대해 Adobe DC에서 접근성 전체 검사에 실패했습니다.. 이 문제를 해결하는 방법

다음과 같이 태그가 지정된 섹션 헤드 번호 및 표 캡션 번호에 대해 Adobe DC에서 접근성 전체 검사에 실패했습니다.. 이 문제를 해결하는 방법

접근성 확인과 관련하여 아래에 몇 가지 쿼리가 나열되어 있습니다. 누구든지 아래 나열된 문제를 해결하는 데 도움을 줄 수 있습니까?

  • 태그된 PDF에서는 섹션 번호와 표 캡션 번호가 <LBL>태그로 지정됩니다. Adobe DC에서 접근성 전체 검사를 실행하면 오류가 표시됩니다(아래 스크린샷 참조).

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

  • pdfversion=2.0,pdfstandard=ua-2에서 사용할 때 아래 오류를 표시하는 유효성 검사기 검사기(아래 스크린샷 참조)를 제거하면 \DocumentMetadata유효성 검사를 위해 PDF가 전달됩니다.PAC 2024pdfversion=2.0,pdfstandard=ua-2

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

  • 을 제거한 후 pdfversion=2.0,pdfstandard=ua-2PDF는 에서 유효성을 검사 PAC 2024하지만 테이블에 대한 유효성 검사 오류를 표시합니다(아래 스크린샷 참조).

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

메모:TeXLive 2024와 Lualatex-dev를 사용하고 있습니다.

MWE:

\DocumentMetadata{testphase={phase-III,table},pdfversion=2.0,pdfstandard=ua-2,
uncompress}


\documentclass{article}


\tagpdfsetup{role/map-tags=pdf}
\begin{document}

\title{Sample title}

\maketitle

\section{A Head}

Sample text

\subsection{A Head}

Sample text11111111111111\footnote{222222222222222222222222222222222222222222222222222222222222} 333333333333333333333333

\subsubsection{A Head}

Sample text

\paragraph{4th Level Head}

text

\subparagraph{5th Level Head}

text


\section{Another A Head}

Sample text

\begin{enumerate}
\item Fitst list item 
\item second list item 
\end{enumerate}

\begin{itemize}
\item Fitst list item 
\item second list item 
\end{itemize}


\tagpdfsetup{table-header-rows=1}
\begin{table}[!b]
\caption{Table Head}
\begin{tabular}{lcc}
\hline
THead 1 & THead2 & THead3\\
\hline
1 & 2 &3\\
4&5&6\\
\hline
\end{tabular}
\end{table}


\begin{thebibliography}{}
\bibitem{bib01} bibligraphy item 1
\bibitem{bib02} bibligraphy item 2
\bibitem{bib03} bibligraphy item 3
\bibitem{bib04} bibligraphy item 4
\end{thebibliography}

\end{document}

관련 정보