forked from jaliste/latexila
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TODO
60 lines (44 loc) · 2.14 KB
/
TODO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
TODO
See also the Roadmap:
https://live.gnome.org/latexila-roadmap
The Roadmap is less detailed, but have a long-term view.
The TODO is more detailed, but focus more on the short-term.
LaTeXila 2.4
============
- Possibility to compile an unsaved LaTeX file, to test easily some code without
the need to save it in a temporary file that we have to delete just after the test,
and that we don't delete anyway.
The unsaved file would simply be saved somewhere in /tmp/.
- Improve completion:
- complete placeholders (\ref, \cite, ...)
(take into account all *.tex, *.bib, ... files of the project)
LaTeXila ≥ 2.4
==============
- Migrate to GTK+ 3 [in progress]
- It's not a high priority, since it's not a big issue for GNOME 3 users,
but it would be nice. The problem is that it involves a lot of work,
more than expected. See the branch gnome-3.
- Improve completion:
- show details by default (now we have to click on the button to see
the details)
- Insert an image easily. Instead of a wizzard, the approach is to:
- have very good completion of:
- \begin{figure}[here]
- \includegraphics[here]{and here}
- automatically complete the label with the filename of the image
A big disadvantage of a wizzard is: how to modify easily the image afterwards?
Generally, in this case, the user deletes the LaTeX code and re-run the wizzard…
(-) Structure:
- Select the current section or item when the document cursor moves
- Update on the fly the structure when the document is modified.
An item can be inserted, deleted or modified.
The simplest way I think is to re-run the parsing only on the modified
lines (with a lower and upper bounds) every 2 seconds for example.
This way, we simply delete all items between the two bounds, and the
parsing will re-add them correctly.
(-) Edit toolbar: create a custom MenuToolButton:
Now the icon does nothing when we click on it, we must always click
first on the arrow and then select the item. It would be better if
the icon is the last item used (and we can click on it).
A drawback is that the button would take more place, this can be a
problem for small screens.