Does Texniccenter or any other tex editor automatically fill in links in Latex?
I want to use a latex editor with auto-complete functionality for existing links in a latex file. Do you know the good ones? I am trying to find this function in the texniccenter, but I guess it doesn't exist or I couldn't find it.
Update: Ok, I found how to enable autocomplete in Texniccenter. I first needed to create a project. Then open the file in this project (or copy its text). Now Ctrl-Space inside the \ ref {} tag automatically terminates the link.
source to share
RefTeX mode for Emacs will do what you ask: the shortcut C-c )
activates the "insert a \ref
" mode (of course, you can customize the link type: fancyref, hyperref, etc.). and hitting TAB will let you start typing and autocomplete by typing tab again after typing some characters.
It also calculates (or asks if he can) what type of ref you are inserting and shows a list of all defined \labels
in your document, selectable with the arrow keys or C-n
/ C-p
.
Now we just need a Vi user to show up and tell us how to do it ...
source to share