Tongjie Chen
Tongjie Chen
`follow-mode` worked in some way, but the viewer is implemented as a single image viewer. A quick way would be to rebind all scroll key in your defined follow-mode to...
The LaTeX you gave compiled and showed fine in my old build of epdfinfo. ```latex \documentclass[12pt]{article} \usepackage{amsmath} \begin{document} \textbf{aaa} CCC \textbf{cccddd} \end{document} ``` I am not a maintainer. But I...
Maybe this is not that impossible. This feature needs to find the region of text and then use that location to parse text before and after. Or make an image...
Modify the function and now you can get the enlarged context. ```emacs-lisp (setq pdf-occur-need-enlarge t) (defun pdf-occur-add-matches (filename matches) (pdf-occur-assert-occur-buffer-p) (when matches (let (entries) (dolist (match matches) (let-alist match ;;...
For the highlight, the original .text includes `'(start end (face-match))`. Need to add that face match back to the newly extracted text.
Hi @Twix53791. That's really hard work on all of this. I did not set a good example on the code style when I replied. - Long lines obscures readability. It's...
If condition just has two cases, you can use `(if pred true-clause false-clause)`, use `(progn ...)` to combine multiple expressions in true or false clauses. You can get help of...
> Ah, and maybe another quite "general" question : is that better to multiply variables to store one time calculations/grasp of values or to include several times the same calculus/seeking...
I did not see why you use `(let ((occurrences))` to declare a nil variable and not put it inside. If the variables you want to declare have dependence, use `let*`,...
> > For `if` clauses, you can enclose all true or false clauses inside a `(progn)` if that is multi line, such as, from the info > > I understand...