I am doing literate programming in Emacs org mode. When I do the Latex export to a pdf, I would like the name of the file the code gets tangled to to be displayed by each code block. I can't find a suitable header argument in the manual.
Here is my org file:
A piece of Python code:
#+BEGIN_SRC python :tangle pythontest.py
print("hello")
#+END_SRC
Here is my .emacs:
(org-babel-do-load-languages
'org-babel-load-languages
'((python . t)))
Here is a screenshot of the part of the pdf export with text on it: