Im trying to create a pdf/a document. The check with Adobe Acrobat gives me to following protocol:
https://ibb.co/7KC9DSW
I think I know why some of this problems occur, but I don't know how to solver them:
- I'm using pictures in the pdf-format, that I include with includegraphics. I created this pdf-pictures from illustrator as .ps and then converted them with Adobe distiller in PDF/A-1b CMYK. (I think thats why "CMYK used, but pdf/a OutputIntent noch CMYK" appears).
- I'm sure the fonts that are not embedded are part of Matlab graphics that I included as .pdf files. By converting these files in Adobe Acrobat to pdf/a-1b the above 2 error messages disappear.
- The transparency problem is due to png graphics that I have included. I will replace them with jpg graphics.
- Annotation has no flags entry
- Annotation not set on print
- How to set xcolor to cmyk, instead of of rgb? If iI set it to cmyk, then the warning appears that the package has already been loaded with hyperref and rgb options. I however a PDF/A compliant document with cmyk options.
- Is it a problem to convert the Matlab pdf files to pdf/a1-b in Acrobat, as this converts the colors to rgb, but I want cmyk?
Code: Select all
\documentclass[a4paper,12pt,
ngerman,
headsepline,
twoside=false,
listof=totoc,
]{scrbook}
\usepackage[left= 2.5cm,right = 2.5cm, bottom = 2.5cm, top = 2.5cm]{geometry}
% ============= Packages =============
\usepackage[
pdftitle={Testdocument},
pdfsubject={},
pdfauthor={Marc},
pdfkeywords={},
%Links nicht einrahmen
hidelinks
]{hyperref}
% Standard -packages
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[T1]{fontenc}
\usepackage{graphicx, subfig}
\graphicspath{{img/}}
%\usepackage{fancyhdr}
\usepackage{lmodern}
\usepackage{color}
\usepackage{transparent}
\usepackage{ragged2e}
%\usepackage{showframe}
\usepackage{scrhack}
\usepackage[onehalfspacing]{setspace}
\usepackage{siunitx}
%\usepackage{color}
\usepackage{booktabs}
\usepackage{tabularx}
\usepackage{framed}
\usepackage[a-1b]{pdfx}
\usepackage[rgb]{xcolor}
\colorlet{shadecolor}{gray!25}
\usepackage[backend=biber, style=ieee]{biblatex}
\addbibresource{Literatur3300.bib}
\urlstyle{sf}
\DeclareNameAlias{default}{last-first}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{hyperref}
\usepackage{comment}
%\pdfxSetCMYKcolorProfileDir{CoatedFOGRA39.icc⟩}
\usepackage[printonlyused, nohyperlinks]{acronym}
\setlength{\parindent}{0pt}
\RedeclareSectionCommand[%
%beforeskip=-2\baselineskip,
afterskip=0.167\baselineskip
]{subsubsection}
\usepackage[automark]{scrlayer-scrpage}
\clearpairofpagestyles
\ohead{\headmark}
\automark*{section}
\ofoot*{\pagemark}
\DeclareTOCStyleEntry[beforeskip=0pt]{chapter}{chapter}
Marc