Tagged Questions
The docview tag has no wiki summary.
5
votes
2answers
460 views
Recommendations for how to annotate PDFs while working within Emacs?
Many scientific papers, especially in the life sciences, are published in pdf format.
I want to work as much as possible within emacs (org-mode especially). I am aware of DocView mode which at least ...
4
votes
1answer
243 views
rotate document in emacs doc-view-mode
I have a document displayed in a doc-view buffer. However, the document is rotated 90 degrees left. Can I rotate a doc in emacs doc-view?
Thanks
2
votes
1answer
198 views
How to scroll down on pages in doc-view mode in Emacs?
I have recently started using doc-view in Emacs, but I am having quite a few problems with it. The main one is that I can't scroll down on pages. I can see the next or previous page using "n" or "p", ...
2
votes
2answers
573 views
docview in emacs: refreshing dvi content automatically
Hello:
Is there a way Emacs can automatically refresh the buffer showing the dvi right after my LaTeX compilation?
Thank you.
1
vote
5answers
144 views
How can I open files externally?
I want to open a pdf with evince instead of DocView mode. Is there a possibility to open a file with a specific command like 'evince'?
1
vote
0answers
351 views
After Navigate2 Method returns S_OK Stuck at READYSTATE of READYSTATE_LOADING
I am working on a MFC Document View architecture application which has multiple documents and views and a tabbed window interface.
I have been tasked with making an automatic switch to another tab on ...
1
vote
1answer
276 views
UpdateAllViews() from within a worker thread?
I have a worker thread in a class that is owned by a ChildView. (I intend to move this to the Doc eventually.) When the worker thread completes a task I want all the views to be updated. How can I ...
1
vote
2answers
233 views
How do I use the wx.lib.docview package?
I'm currently working on a simple wxPython app that's essentially document based. So far I've been manually implementing the usual open/save/undo/redo etc etc stuff.
It occurred to me that wxPython ...
0
votes
1answer
43 views
Emacs: setting doc-view-continuous doesn't work with modified key-bindings
I work in Emacs with ergoemacs minor mode turned on. This minor mode changes C-n and C-p to M-k and M-i correspondingly.
In doc-view mode I can move up and down inside one page with M-i and M-k but ...
0
votes
0answers
46 views
Emacs docview: saving/jumping to locations with
When using doc-view in Emacs, I'd like to jump to different locations (e.g., move to the bibliography of a paper and back to where I was). I've tried using C-u C-SPC and registers to jump to different ...
0
votes
2answers
120 views
How to set Emacs variable doc-view-continuous?
Can anyone help me set the emacs variable doc-view-continuous?
If I set it to non-nil then I can use C-n to scroll to the next page.
...
0
votes
1answer
91 views
Passing Parameters to MFC View Before OnCreateClient
I have an MFC MDI app based on Doc/View Architecture. The problem is that I want to pass some parameters to the View class from the main frame "before" OnCreateClient is called. I am not sure how I ...
0
votes
1answer
193 views
Help to restructure my Doc/View more correctly
Edited by OP.
My program is in need of a lot of cleanup and restructuring.
In another post I asked about leaving the MFC DocView framework and going to the WinProc & Message Loop way (what is ...
0
votes
1answer
537 views
MFC: Accessing Views from Mainframe
I am trying to access a view inside a splitter from my mainframe. At the moment I have this:
CWnd* pView = m_wndSplitter.GetPane( 0, 0 );
However this gets me a pointer to the CWnd not the ...