When using the project files shown below, links generated by \cite[…] are displayed as links, but when I click on them nothing happens.
But when \completepublications[…] is directly written in main.tex, everything works as expected.
My project is a bit more complex, so that I would like to use separate component files and include them in the main file. But how to make links work?
(Is this a bug?)
main.tex:
\project test-project
\setupinteraction[state=start]
\setupbibtex[database={literature}]
\setuppublications[refcommand=short, numbering=short]
\startproduct test-product
\component a-chapter
\component bibliography % does not work
%\completepublications[criterium=text] % this works
\stopproduct
a-chapter.tex:
\startcomponent a-chapter
\chapter{A Chapter}
Some text. \cite[birche2012]
\stopcomponent
bibliography.tex:
\startcomponent bibliography
\completepublications[criterium=text]
\stopcomponent
literature.bib:
@article{birche2012,
Title = {{Complete System Power Estimation Using Processor Performance Events}},
Author = {W. Lloyd Birche and Lizy K. John},
Journal = {IEEE TRANSACTIONS ON COMPUTERS},
Month = {4},
Number = {4},
Pages = {563-577},
Volume = {61},
Year = {2012}
}
Context version is 2012.05.30 11:26.
\completepublicationscall in aproductinstead of acomponent. – Marco Dec 11 '12 at 19:56\in[…]don't work, too. But the links in TOC work fine. I'll try to make a minimal example with this problem. – hiddenbit Dec 11 '12 at 20:23\(start|stop)componentreally causes all the PDF link problems in my document. I replaced this commands with\(start|stop)productand all links work now. But why? Because it does not make much sense to me to create products and include them with\component. Are projects meant to work this way? – hiddenbit Dec 11 '12 at 20:53bibliography.pdf(just try to place a PDF namedbibliography.pdfin the working directory and click the link). A component should work within a product (see Project Structure). I would suggest to create a minimal example and ask on the ConteXt mailing list. – Marco Dec 11 '12 at 21:11