Compile as PDF-A
up vote
2
down vote
favorite
I am running my LaTeX from the TexStudio GUI. How can I compile/export to PDF/A format? Is there an easy way to do it without converting through some external method?
compiling texstudio pdf-a
add a comment |
up vote
2
down vote
favorite
I am running my LaTeX from the TexStudio GUI. How can I compile/export to PDF/A format? Is there an easy way to do it without converting through some external method?
compiling texstudio pdf-a
To convert your existing PDF to PDF/A you can use the preflight tool of Adobe Acrobat Pro.
– Henri Menke
Aug 30 at 22:10
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I am running my LaTeX from the TexStudio GUI. How can I compile/export to PDF/A format? Is there an easy way to do it without converting through some external method?
compiling texstudio pdf-a
I am running my LaTeX from the TexStudio GUI. How can I compile/export to PDF/A format? Is there an easy way to do it without converting through some external method?
compiling texstudio pdf-a
compiling texstudio pdf-a
asked Aug 30 at 17:55
AIM_BLB
1874
1874
To convert your existing PDF to PDF/A you can use the preflight tool of Adobe Acrobat Pro.
– Henri Menke
Aug 30 at 22:10
add a comment |
To convert your existing PDF to PDF/A you can use the preflight tool of Adobe Acrobat Pro.
– Henri Menke
Aug 30 at 22:10
To convert your existing PDF to PDF/A you can use the preflight tool of Adobe Acrobat Pro.
– Henri Menke
Aug 30 at 22:10
To convert your existing PDF to PDF/A you can use the preflight tool of Adobe Acrobat Pro.
– Henri Menke
Aug 30 at 22:10
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
I recommend the package https://ctan.org/pkg/pdfx. It has options to for various PDF/A-standards and I used it successfully on one of my projects. You should pay attention to the manual.
Edit:
Please read the fine manual (RTFM); there is not always free lunch in TeX
. E.g. sections 1, 2.5: you could write a file jobname.xmpdata
with the contents
pdfxSetCMYKcolorProfileDir{/myDirectory/ColorSync/Profiles/}
setCMYKcolorprofile{PSO_Uncoated_ISO12647_eci.icc}
{PSO_Uncoated_ISO12647_eci}
{PSO Uncoated ISO12647 (ECI)}
{http://www.eci.org/en/start}
where your color profiles are installed in the directory mentioned above. You can download color profiles from http://www.eci.org/en/downloads.
You could also pay attention to Using pdfx with LuaLaTeX results in error.
Please pay attention to the comments by https://tex.stackexchange.com/users/85415/dd23 below.
1
I tried that but I keep getting the "No color profile found to use for RGB screen colors." error from the pdfx.sty file
– AIM_BLB
Aug 30 at 18:26
@AIM_BLB As I said, you need to pay attention to the manual. The package (or the standard, resp) requires to fix a color profile, compare section 2.5 of the manual.
– CampanIgnis
Aug 30 at 18:31
1
There is also thexmpincl
package that produces pdf/a files, see for example tex.stackexchange.com/questions/314171/…
– Marijn
Aug 30 at 21:24
1
The pdfx manual in section 2.5 also says "Since most LaTeX users are not graphics professionals and are not particularly picky about colors, the pdfx package includes default profiles that will be included when nothing else is specified. Therefore, the average user doesn’t have to do anything special about color." Without specifying anything (this used to work until the most recent texlive update on Arch Linux), I'm now also getting the following error: "pdfx.sty:1301: No color profile found to use for RGB screen colors". Even when I try to specify icc files, the error remains.
– dd23
Dec 3 at 15:02
1
Apparently texlive has recently renamed some color profiles… Adding the following to your jobname.xmpdata fixes my problem: setRGBcolorprofile{sRGB.icc} {sRGB_IEC61966-2-1_black_scaled} {sRGB IEC61966 v2.1 with black scaling} {color.org} The .icc file had a different name before…
– dd23
Dec 3 at 15:56
|
show 3 more comments
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
I recommend the package https://ctan.org/pkg/pdfx. It has options to for various PDF/A-standards and I used it successfully on one of my projects. You should pay attention to the manual.
Edit:
Please read the fine manual (RTFM); there is not always free lunch in TeX
. E.g. sections 1, 2.5: you could write a file jobname.xmpdata
with the contents
pdfxSetCMYKcolorProfileDir{/myDirectory/ColorSync/Profiles/}
setCMYKcolorprofile{PSO_Uncoated_ISO12647_eci.icc}
{PSO_Uncoated_ISO12647_eci}
{PSO Uncoated ISO12647 (ECI)}
{http://www.eci.org/en/start}
where your color profiles are installed in the directory mentioned above. You can download color profiles from http://www.eci.org/en/downloads.
You could also pay attention to Using pdfx with LuaLaTeX results in error.
Please pay attention to the comments by https://tex.stackexchange.com/users/85415/dd23 below.
1
I tried that but I keep getting the "No color profile found to use for RGB screen colors." error from the pdfx.sty file
– AIM_BLB
Aug 30 at 18:26
@AIM_BLB As I said, you need to pay attention to the manual. The package (or the standard, resp) requires to fix a color profile, compare section 2.5 of the manual.
– CampanIgnis
Aug 30 at 18:31
1
There is also thexmpincl
package that produces pdf/a files, see for example tex.stackexchange.com/questions/314171/…
– Marijn
Aug 30 at 21:24
1
The pdfx manual in section 2.5 also says "Since most LaTeX users are not graphics professionals and are not particularly picky about colors, the pdfx package includes default profiles that will be included when nothing else is specified. Therefore, the average user doesn’t have to do anything special about color." Without specifying anything (this used to work until the most recent texlive update on Arch Linux), I'm now also getting the following error: "pdfx.sty:1301: No color profile found to use for RGB screen colors". Even when I try to specify icc files, the error remains.
– dd23
Dec 3 at 15:02
1
Apparently texlive has recently renamed some color profiles… Adding the following to your jobname.xmpdata fixes my problem: setRGBcolorprofile{sRGB.icc} {sRGB_IEC61966-2-1_black_scaled} {sRGB IEC61966 v2.1 with black scaling} {color.org} The .icc file had a different name before…
– dd23
Dec 3 at 15:56
|
show 3 more comments
up vote
2
down vote
accepted
I recommend the package https://ctan.org/pkg/pdfx. It has options to for various PDF/A-standards and I used it successfully on one of my projects. You should pay attention to the manual.
Edit:
Please read the fine manual (RTFM); there is not always free lunch in TeX
. E.g. sections 1, 2.5: you could write a file jobname.xmpdata
with the contents
pdfxSetCMYKcolorProfileDir{/myDirectory/ColorSync/Profiles/}
setCMYKcolorprofile{PSO_Uncoated_ISO12647_eci.icc}
{PSO_Uncoated_ISO12647_eci}
{PSO Uncoated ISO12647 (ECI)}
{http://www.eci.org/en/start}
where your color profiles are installed in the directory mentioned above. You can download color profiles from http://www.eci.org/en/downloads.
You could also pay attention to Using pdfx with LuaLaTeX results in error.
Please pay attention to the comments by https://tex.stackexchange.com/users/85415/dd23 below.
1
I tried that but I keep getting the "No color profile found to use for RGB screen colors." error from the pdfx.sty file
– AIM_BLB
Aug 30 at 18:26
@AIM_BLB As I said, you need to pay attention to the manual. The package (or the standard, resp) requires to fix a color profile, compare section 2.5 of the manual.
– CampanIgnis
Aug 30 at 18:31
1
There is also thexmpincl
package that produces pdf/a files, see for example tex.stackexchange.com/questions/314171/…
– Marijn
Aug 30 at 21:24
1
The pdfx manual in section 2.5 also says "Since most LaTeX users are not graphics professionals and are not particularly picky about colors, the pdfx package includes default profiles that will be included when nothing else is specified. Therefore, the average user doesn’t have to do anything special about color." Without specifying anything (this used to work until the most recent texlive update on Arch Linux), I'm now also getting the following error: "pdfx.sty:1301: No color profile found to use for RGB screen colors". Even when I try to specify icc files, the error remains.
– dd23
Dec 3 at 15:02
1
Apparently texlive has recently renamed some color profiles… Adding the following to your jobname.xmpdata fixes my problem: setRGBcolorprofile{sRGB.icc} {sRGB_IEC61966-2-1_black_scaled} {sRGB IEC61966 v2.1 with black scaling} {color.org} The .icc file had a different name before…
– dd23
Dec 3 at 15:56
|
show 3 more comments
up vote
2
down vote
accepted
up vote
2
down vote
accepted
I recommend the package https://ctan.org/pkg/pdfx. It has options to for various PDF/A-standards and I used it successfully on one of my projects. You should pay attention to the manual.
Edit:
Please read the fine manual (RTFM); there is not always free lunch in TeX
. E.g. sections 1, 2.5: you could write a file jobname.xmpdata
with the contents
pdfxSetCMYKcolorProfileDir{/myDirectory/ColorSync/Profiles/}
setCMYKcolorprofile{PSO_Uncoated_ISO12647_eci.icc}
{PSO_Uncoated_ISO12647_eci}
{PSO Uncoated ISO12647 (ECI)}
{http://www.eci.org/en/start}
where your color profiles are installed in the directory mentioned above. You can download color profiles from http://www.eci.org/en/downloads.
You could also pay attention to Using pdfx with LuaLaTeX results in error.
Please pay attention to the comments by https://tex.stackexchange.com/users/85415/dd23 below.
I recommend the package https://ctan.org/pkg/pdfx. It has options to for various PDF/A-standards and I used it successfully on one of my projects. You should pay attention to the manual.
Edit:
Please read the fine manual (RTFM); there is not always free lunch in TeX
. E.g. sections 1, 2.5: you could write a file jobname.xmpdata
with the contents
pdfxSetCMYKcolorProfileDir{/myDirectory/ColorSync/Profiles/}
setCMYKcolorprofile{PSO_Uncoated_ISO12647_eci.icc}
{PSO_Uncoated_ISO12647_eci}
{PSO Uncoated ISO12647 (ECI)}
{http://www.eci.org/en/start}
where your color profiles are installed in the directory mentioned above. You can download color profiles from http://www.eci.org/en/downloads.
You could also pay attention to Using pdfx with LuaLaTeX results in error.
Please pay attention to the comments by https://tex.stackexchange.com/users/85415/dd23 below.
edited Dec 3 at 18:48
answered Aug 30 at 17:58
CampanIgnis
2,4242831
2,4242831
1
I tried that but I keep getting the "No color profile found to use for RGB screen colors." error from the pdfx.sty file
– AIM_BLB
Aug 30 at 18:26
@AIM_BLB As I said, you need to pay attention to the manual. The package (or the standard, resp) requires to fix a color profile, compare section 2.5 of the manual.
– CampanIgnis
Aug 30 at 18:31
1
There is also thexmpincl
package that produces pdf/a files, see for example tex.stackexchange.com/questions/314171/…
– Marijn
Aug 30 at 21:24
1
The pdfx manual in section 2.5 also says "Since most LaTeX users are not graphics professionals and are not particularly picky about colors, the pdfx package includes default profiles that will be included when nothing else is specified. Therefore, the average user doesn’t have to do anything special about color." Without specifying anything (this used to work until the most recent texlive update on Arch Linux), I'm now also getting the following error: "pdfx.sty:1301: No color profile found to use for RGB screen colors". Even when I try to specify icc files, the error remains.
– dd23
Dec 3 at 15:02
1
Apparently texlive has recently renamed some color profiles… Adding the following to your jobname.xmpdata fixes my problem: setRGBcolorprofile{sRGB.icc} {sRGB_IEC61966-2-1_black_scaled} {sRGB IEC61966 v2.1 with black scaling} {color.org} The .icc file had a different name before…
– dd23
Dec 3 at 15:56
|
show 3 more comments
1
I tried that but I keep getting the "No color profile found to use for RGB screen colors." error from the pdfx.sty file
– AIM_BLB
Aug 30 at 18:26
@AIM_BLB As I said, you need to pay attention to the manual. The package (or the standard, resp) requires to fix a color profile, compare section 2.5 of the manual.
– CampanIgnis
Aug 30 at 18:31
1
There is also thexmpincl
package that produces pdf/a files, see for example tex.stackexchange.com/questions/314171/…
– Marijn
Aug 30 at 21:24
1
The pdfx manual in section 2.5 also says "Since most LaTeX users are not graphics professionals and are not particularly picky about colors, the pdfx package includes default profiles that will be included when nothing else is specified. Therefore, the average user doesn’t have to do anything special about color." Without specifying anything (this used to work until the most recent texlive update on Arch Linux), I'm now also getting the following error: "pdfx.sty:1301: No color profile found to use for RGB screen colors". Even when I try to specify icc files, the error remains.
– dd23
Dec 3 at 15:02
1
Apparently texlive has recently renamed some color profiles… Adding the following to your jobname.xmpdata fixes my problem: setRGBcolorprofile{sRGB.icc} {sRGB_IEC61966-2-1_black_scaled} {sRGB IEC61966 v2.1 with black scaling} {color.org} The .icc file had a different name before…
– dd23
Dec 3 at 15:56
1
1
I tried that but I keep getting the "No color profile found to use for RGB screen colors." error from the pdfx.sty file
– AIM_BLB
Aug 30 at 18:26
I tried that but I keep getting the "No color profile found to use for RGB screen colors." error from the pdfx.sty file
– AIM_BLB
Aug 30 at 18:26
@AIM_BLB As I said, you need to pay attention to the manual. The package (or the standard, resp) requires to fix a color profile, compare section 2.5 of the manual.
– CampanIgnis
Aug 30 at 18:31
@AIM_BLB As I said, you need to pay attention to the manual. The package (or the standard, resp) requires to fix a color profile, compare section 2.5 of the manual.
– CampanIgnis
Aug 30 at 18:31
1
1
There is also the
xmpincl
package that produces pdf/a files, see for example tex.stackexchange.com/questions/314171/…– Marijn
Aug 30 at 21:24
There is also the
xmpincl
package that produces pdf/a files, see for example tex.stackexchange.com/questions/314171/…– Marijn
Aug 30 at 21:24
1
1
The pdfx manual in section 2.5 also says "Since most LaTeX users are not graphics professionals and are not particularly picky about colors, the pdfx package includes default profiles that will be included when nothing else is specified. Therefore, the average user doesn’t have to do anything special about color." Without specifying anything (this used to work until the most recent texlive update on Arch Linux), I'm now also getting the following error: "pdfx.sty:1301: No color profile found to use for RGB screen colors". Even when I try to specify icc files, the error remains.
– dd23
Dec 3 at 15:02
The pdfx manual in section 2.5 also says "Since most LaTeX users are not graphics professionals and are not particularly picky about colors, the pdfx package includes default profiles that will be included when nothing else is specified. Therefore, the average user doesn’t have to do anything special about color." Without specifying anything (this used to work until the most recent texlive update on Arch Linux), I'm now also getting the following error: "pdfx.sty:1301: No color profile found to use for RGB screen colors". Even when I try to specify icc files, the error remains.
– dd23
Dec 3 at 15:02
1
1
Apparently texlive has recently renamed some color profiles… Adding the following to your jobname.xmpdata fixes my problem: setRGBcolorprofile{sRGB.icc} {sRGB_IEC61966-2-1_black_scaled} {sRGB IEC61966 v2.1 with black scaling} {color.org} The .icc file had a different name before…
– dd23
Dec 3 at 15:56
Apparently texlive has recently renamed some color profiles… Adding the following to your jobname.xmpdata fixes my problem: setRGBcolorprofile{sRGB.icc} {sRGB_IEC61966-2-1_black_scaled} {sRGB IEC61966 v2.1 with black scaling} {color.org} The .icc file had a different name before…
– dd23
Dec 3 at 15:56
|
show 3 more comments
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f448548%2fcompile-as-pdf-a%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
To convert your existing PDF to PDF/A you can use the preflight tool of Adobe Acrobat Pro.
– Henri Menke
Aug 30 at 22:10