<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: TITLES/FOOTNOTES in Accessible PDF in Accessibility</title>
    <link>https://communities.sas.com/t5/Accessibility/TITLES-FOOTNOTES-in-Accessible-PDF/m-p/641421#M9</link>
    <description>&lt;P&gt;I noticed your workaround uses the NUMBER option to generate page numbers, and SAS doesn't create a tag for them.&amp;nbsp; That led my colleague Kristin and me to try customizing page number style attributes to create what looks like a footnote without the tag created for an actual footnote.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It meets our visual requirements, but does it comply with WCAG/Section 508 requirements?&amp;nbsp; CommonLook PDF Validator generates a warning "Page 1 does not contain header Artifacts".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Mon, 20 Apr 2020 17:08:56 GMT</pubDate>
    <dc:creator>RandyHerbison</dc:creator>
    <dc:date>2020-04-20T17:08:56Z</dc:date>
    <item>
      <title>TITLES/FOOTNOTES in Accessible PDF</title>
      <link>https://communities.sas.com/t5/Accessibility/TITLES-FOOTNOTES-in-Accessible-PDF/m-p/639027#M4</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;We have multi-page reports with titles and footnotes that repeat on each page. The screen reader NVDA reads the titles and footnotes for each page.&amp;nbsp; Is there a way to change the accessibility tags, for the titles and footnotes after the 1st page, into artifacts?&amp;nbsp; Our accessibility experts tell us they should be artifacts so that screen readers do not repeat them after the 1st page.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2020 17:47:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Accessibility/TITLES-FOOTNOTES-in-Accessible-PDF/m-p/639027#M4</guid>
      <dc:creator>RandyHerbison</dc:creator>
      <dc:date>2020-04-10T17:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: TITLES/FOOTNOTES in Accessible PDF</title>
      <link>https://communities.sas.com/t5/Accessibility/TITLES-FOOTNOTES-in-Accessible-PDF/m-p/639034#M5</link>
      <description>Hi:&lt;BR /&gt;  I'd recommend working with Tech Support on this question. PDF is a proprietary format. This paper &lt;A href="https://support.sas.com/resources/papers/proceedings17/SAS0483-2017.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings17/SAS0483-2017.pdf&lt;/A&gt; shows how to turn on the accessible option, which it sounds like you are already doing. It looks like you can specify a particular style element with the Report Writing Interface. But for changing the accessible tags for different pages on the SAME title and footnotes for one procedure, I am not sure how you would do that. That's why I recommend Tech Support.&lt;BR /&gt;Cynthia</description>
      <pubDate>Fri, 10 Apr 2020 18:01:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Accessibility/TITLES-FOOTNOTES-in-Accessible-PDF/m-p/639034#M5</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2020-04-10T18:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: TITLES/FOOTNOTES in Accessible PDF</title>
      <link>https://communities.sas.com/t5/Accessibility/TITLES-FOOTNOTES-in-Accessible-PDF/m-p/639038#M6</link>
      <description>&lt;P&gt;Right now there is no way to do that.&amp;nbsp;&lt;SPAN&gt;It is an issue we are tracking in our system and we hope to include this fix in a future release.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;The workaround I have done is to include the TITLE or FOOTNOTE on the first page only, then I created a new style for subsequent pages that uses a background image on each page, and that image contains the text I want to appear in the header and footer on those pages. Since the image is a background image for the page, it automatically gets artifacted.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You can see this in action in&amp;nbsp;&lt;A href="https://support.sas.com/accessibility/ods/shoes-report.sas" target="_blank"&gt;https://support.sas.com/accessibility/ods/shoes-report.sas&lt;/A&gt;&amp;nbsp;starting at line 148.&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;/* Customizations for portrait layout */
proc template;
	define style myPearlPortrait;
		parent=myPearl;
		class body from document /
			background=_undef_
			backgroundimage="&amp;amp;path.assets/companyConfidential_portrait.jpg";
	end;
run;

/* Customizations for landscape layout */
proc template;
	define style myPearlLandscape;
		parent=myPearl;
		class body from document /
			background=_undef_
			backgroundimage="&amp;amp;path.assets/companyConfidential_landscape.jpg";
	end;
run;&lt;/PRE&gt;
&lt;P&gt;I've attached the images I used in both cases. This is the&amp;nbsp;&lt;A href="https://support.sas.com/accessibility/ods/shoes-report.pdf" target="_self"&gt;end result&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2020 18:13:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Accessibility/TITLES-FOOTNOTES-in-Accessible-PDF/m-p/639038#M6</guid>
      <dc:creator>gdkraus</dc:creator>
      <dc:date>2020-04-10T18:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: TITLES/FOOTNOTES in Accessible PDF</title>
      <link>https://communities.sas.com/t5/Accessibility/TITLES-FOOTNOTES-in-Accessible-PDF/m-p/639043#M7</link>
      <description>Thanks, Greg. Glad to learn SAS is working on it. Thanks for the workaround.</description>
      <pubDate>Fri, 10 Apr 2020 18:35:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Accessibility/TITLES-FOOTNOTES-in-Accessible-PDF/m-p/639043#M7</guid>
      <dc:creator>RandyHerbison</dc:creator>
      <dc:date>2020-04-10T18:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: TITLES/FOOTNOTES in Accessible PDF</title>
      <link>https://communities.sas.com/t5/Accessibility/TITLES-FOOTNOTES-in-Accessible-PDF/m-p/639045#M8</link>
      <description>Thanks, Cynthia. I'll try Tech Support. Have worked with them on other accessibility issues. Always very helpful.</description>
      <pubDate>Fri, 10 Apr 2020 18:40:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Accessibility/TITLES-FOOTNOTES-in-Accessible-PDF/m-p/639045#M8</guid>
      <dc:creator>RandyHerbison</dc:creator>
      <dc:date>2020-04-10T18:40:35Z</dc:date>
    </item>
    <item>
      <title>Re: TITLES/FOOTNOTES in Accessible PDF</title>
      <link>https://communities.sas.com/t5/Accessibility/TITLES-FOOTNOTES-in-Accessible-PDF/m-p/641421#M9</link>
      <description>&lt;P&gt;I noticed your workaround uses the NUMBER option to generate page numbers, and SAS doesn't create a tag for them.&amp;nbsp; That led my colleague Kristin and me to try customizing page number style attributes to create what looks like a footnote without the tag created for an actual footnote.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It meets our visual requirements, but does it comply with WCAG/Section 508 requirements?&amp;nbsp; CommonLook PDF Validator generates a warning "Page 1 does not contain header Artifacts".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2020 17:08:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Accessibility/TITLES-FOOTNOTES-in-Accessible-PDF/m-p/641421#M9</guid>
      <dc:creator>RandyHerbison</dc:creator>
      <dc:date>2020-04-20T17:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: TITLES/FOOTNOTES in Accessible PDF</title>
      <link>https://communities.sas.com/t5/Accessibility/TITLES-FOOTNOTES-in-Accessible-PDF/m-p/641433#M10</link>
      <description>&lt;P&gt;That's a pretty clever trick! I believe the message CommonLook is giving you is a warning and not an error about the document. I think it is coming from the requirement for WCAG 3.2, which is about providing consistent navigation. For &lt;A href="https://www.w3.org/TR/UNDERSTANDING-WCAG20/consistent-behavior-consistent-locations.html#consistent-behavior-consistent-locations-techniques-head" target="_self"&gt;WCAG 3.2 there are two "Advisory Techniques"&lt;/A&gt; that relate to PDFs, headers, and pagination. Advisory Techniques are usually treated as recommendations or best practices and not as requirements for conformance, however, you should consult with your compliance official for what requirements you must meet.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2020 17:50:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Accessibility/TITLES-FOOTNOTES-in-Accessible-PDF/m-p/641433#M10</guid>
      <dc:creator>gdkraus</dc:creator>
      <dc:date>2020-04-20T17:50:55Z</dc:date>
    </item>
  </channel>
</rss>

