writes: > J’ai un soucis avec le clocktable qui semble être un bug car il n’accepte pas les attributs latex avant la ligne BEGIN: > #+ATTR_LATEX: :align Xll :width \textwidth > #+BEGIN: clocktable :scope file :maxlevel 2 This is a commonly reported problem - when using dynamic blocks (in particular, clocktable block), it is impossible to set export attributes for the generated table. This is because the attributes of the dynamic block have no effect on the table inside it. I suggest to provide a standard dynamic block parameter that will make Org mode prepend certain affiliated keywords to the generated contents: #+attr_latex: :width \textwidth #+begin: clocktable :scope file :maxlevel 2 :org-dblock-prepend (:attr_latex ) #+end: will yield #+attr_latex: :width \textwidth #+begin: clocktable :scope file :maxlevel 2 :org-dblock-prepend (:attr_latex) #+attr_latex: :width \textwidth #+CAPTION: Clock summary at [2024-01-18 Thu 16:23] | Headline | Time | |------------+---------| | *Total time* | *0h 0min* | #+end: Tentative patch is attached.