Solución:
Utilizar el hyperref
paquete, incluido en casi todas las distribuciones de látex en estos días.
usepackage[pdftex,
pdfauthor={Your Name},
pdftitle={The Title},
pdfsubject={The Subject},
pdfkeywords={Some Keywords},
pdfproducer={Latex with hyperref, or other system},
pdfcreator={pdflatex, or other tool}]{hyperref}
Utilizar el pdfinfo
macro, donde los contenidos se dan en notación PDF:
pdfinfo{
/Author (Nicola Talbot)
/Title (Creating a PDF document using PDFLaTeX)
/CreationDate (D:20040502195600)
/Subject (PDFLaTeX)
/Keywords (PDF;LaTeX)
}
(Fuente: http://theoval.cmp.uea.ac.uk/~nlct/latex/pdfdoc/pdfdoc/pdfdoc.html)
Como ya han respondido otros, me gusta usar hyperref
. Sin embargo, como mis documentos a menudo tienen author
y title
comandos No quiero repetirme en los parámetros del paquete. Afortunadamente, hyperref
también tiene un parámetro para eso. Si desea que lea la información de su author
y etiquetas similares, simplemente inclúyalo así:
usepackage[pdfusetitle]{hyperref}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)