How can I achieve that Kile updates the pdf automatically in certain intervals?
Version: Kile 2.1.3 on Ubuntu 13.10
Best Answer
The latest stable version of Kile (2.1.3) does not offer automatic updates. You can however update to the development version (Kile 3 beta 1) to get automatic updates and live preview.
The dev version is in beta from quite some time and I use it in my production environment without issues. It is still a beta by the way, so there may be some rough edges.
To install the beta version of Kile in ubuntu you need to add this PPA:
As the PPA dev says, if you're updgrading from Kile 2.1.3 then
it is recommended to reset the configuration of the tools. In order to do so, open the tool configuration section in the configuration dialog, which can be found under Settings / Configure Kile... / Tools / Build, and press the "Restore Default Tools..."
For other Linux distros, the generic instructions to build Kile from source are:
git clone --depth 1 git://anongit.kde.org/kile
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ..
make
sudo make install
You need the build tools provided by your distro, see the distro documentation to check how to install them.
After you got the beta version, to enable automatic updates go to
Settings ->
Configure Kile ->
Live Preview ->
Compile documents whenever there are changes after <insert milliseconds>
Now
click on this new item and insert on
the right into the field for the
command
/usr/local/texlive/2010/bin/x86_64-linux/biber
(this example shows my path)
Into the
parameter field insert "%S"
Now
enable the Quick Build item on the
left and add biber in the field on
the right.
Close the windows and everything should work. At the first time when running biber it takes a lot of time because it has to unpack all included files into a temporary directory. In your document do not forget to set
\usepackage[backend=biber,...]{biblatex}
With the latest version of biblatex it should be the default.
Create modified kile deb package without dependency to old tex using the following shell commands (and then install it)
srcpkg=kile_2.1.0-1ubuntu1_amd64.deb
dstpkg=kile_2.1.0-1ubuntu1_no_texlive_amd64.deb
apt-get download kile
ar x $srcpkg
tar xzf control.tar.gz
# now remove all the tex-live dependencies
pico control
tar c post{inst,rm} md5sums control | gzip -c > control.tar.gz
ar rcs $dstpkg debian-binary control.tar.gz data.tar.lzma
sudo dpkg -i $dstpkg
Best Answer
The latest stable version of Kile (2.1.3) does not offer automatic updates. You can however update to the development version (Kile 3 beta 1) to get automatic updates and live preview.
The dev version is in beta from quite some time and I use it in my production environment without issues. It is still a beta by the way, so there may be some rough edges.
To install the beta version of Kile in ubuntu you need to add this PPA:
As the PPA dev says, if you're updgrading from Kile 2.1.3 then
For other Linux distros, the generic instructions to build Kile from source are:
You need the build tools provided by your distro, see the distro documentation to check how to install them.
After you got the beta version, to enable automatic updates go to