Difference between revisions of "PDF-strings"

From Wiki
Jump to navigation Jump to search
(Usage of PDF-Strings in LaTeX compared with ConTeXt:)
 
Line 1: Line 1:
 
< [[From LaTeX to ConTeXt]]
 
< [[From LaTeX to ConTeXt]]
 +
 +
Usage of PDF-Strings in LaTeX compared with ConTeXt:
  
 
== In LaTeX ==
 
== In LaTeX ==

Latest revision as of 22:45, 10 January 2011

< From LaTeX to ConTeXt

Usage of PDF-Strings in LaTeX compared with ConTeXt:

In LaTeX

\documentclass{article}
\def\ST{\ac{ST}}
\def\Title{A \emph{Title}}
\usepackage{acronym}
\usepackage{hyperref}
\hypersetup{bookmarksopen=true,pdftitle=\Title}
\begin{document}
\section{\Title}
\section{\slshape slanted}
first usage of \ST.
\section{\ST}
\begin{acronym}
  \acro{ST}{some text}
\end{acronym}
\end{document}

In ConTeXt

\setupoutput[pdftex]
\appendtoks \def\em{}\def\sl{}\def\Full#1{???} \to \simplifiedcommands
\def\Title{A \em Title}
\setupinteraction[state=start,title=\Title]
\setupinteractionscreen[option=bookmark]
\definesynonyms[Acro][acronymes][\Full]
\Acro{ST}{some text}
\placebookmarks[section]
\starttext
\section{\Title}
\section{\Full{ST}} % here is still a problem...
\section{\sl slanted}
\stoptext