Even the simple ctrl+F is not working... I tried installing texmaker from software center and xm1math web site, but shortcuts still doesn't work...
Even the simple ctrl+F is not working... I tried installing texmaker from software center and xm1math web site, but shortcuts still doesn't work...
Install the Qt5 version of texmaker (at this date it is the one you get from ubuntu-software-center) and always run it from terminal using:
env UBUNTU_MENUPROXY= texmaker
or (a permanent solution)
Edit
texmaker
:Open nautilus as root:
Navigate to
usr/share/applications/texmaker
, right click on it, properties, and change on Commandtexmaker %F
byenv UBUNTU_MENUPROXY= texmaker %F
`You don't have to install the older version, you just need to remove the
appmenu
package for QT5:P.S. I am not sure if it can cause problems for other applications on your system. It didn't cause any problem in my end.
Regarding solution 2 of Vitor, you can also edit the launcher shortcut to TexMaker:
and change the line
to
from terminal:
you will see
Now change the line
to
and then save and exit
The command
Worked for my fresh ubuntu 16.04 installation.
Create an alias in the
.bashrc
or create the file~/.bash_aliases
and define the alias:alias texmaker='env UBUNTU_MENUPROXY= texmaker'
save it, exit and source it. From the home directory, do:
$. .bashrc
$. .bash_aliases
Done. Now opening Texmaker from the terminal will work perfectly.
Note: In a way it's very similar to @Vitor Abella's method.
The problem seems to be Qt5 and setting
UBUNTU_MENUPROXY
did not fix it for me on Ubuntu 16.10 for me, so here is my solution:sudo apt-get remove texmaker texmaker-data
texmaker_debian_jessie_4.5_amd64.deb
sudo dpkg -i texmaker_debian_jessie_4.5_amd64.deb
Note: the package might have some dependencies like
libqt4-opengl
andlibqtwebkit4
that you might have to install manuallyIn case of Ubuntu 16.10, I have installed version 4.5 for Ubuntu 14.04 and shortcut are working. I suppose the other versions for Qt4 will work too.
I had the same issue with ubuntu 16.10, and adding the
env UBUNTU_MENUPROXY=
to/usr/share/applications/texmaker.desktop
did not work. Nevertheless, since Ubuntu 17.04 the problem seems to be gone - even without theenv UBUNTU_MENUPROXY=
, hotkeys work for me in Texmaker.