Extras > Autokorrektur > Autokorrektur-Optionen > Automatisch *fett* /kursiv/ -durchgestrichen- _unterstreichen_ deaktivieren
sudo apt remove libreoffice*
In /etc/apt/sources.list hinzufügen: deb http://ftp.debian.org/debian buster-backports main sudo apt update sudo apt -t buster-backports install libreoffice libreoffice-l10n-de libreoffice-help-de
Datei > Drucken > Seiten: 1,3,5,7-11
/opt/libreoffice4.4/share/template
Export all the Impress slides or Draw pages as images of JPG, PNG, GIF, BMP and TIFF format.
http://extensions.libreoffice.org/extension-center/export-as-images
### Alte Version entfernen $ sudo apt-get remove libreoffice* ### Libre Office installieren $ tar -xzf LibreOffice_4.0.0_Linux_x86-64_deb.tar.gz $ sudo dpkg -i LibreOffice_4.0.0.3_Linux_x86-64_deb/DEBS/*.deb $ sudo dpkg -i LibreOffice_4.0.0.3_Linux_x86-64_deb/DEBS/desktop-integration/*.deb ### Deutsches Sprachpaket $ tar -xzf LibreOffice_4.0.0_Linux_x86-64_deb_langpack_de.tar.gz $ sudo dpkg -i LibreOffice_4.0.0.3_Linux_x86-64_deb_langpack_de/DEBS/*.deb ### Deutschesprachige Hilfe $ tar -xzf LibreOffice_4.0.0_Linux_x86-64_deb_helppack_de.tar.gz $ sudo dpkg -i LibreOffice_4.0.0.3_Linux_x86-64_deb_helppack_de/DEBS/*.deb ### Zur Sicherheit... $ sudo apt-get -f install
LibreOffice 3.6 löschen: zypper rm -u libreoffice3.6 libreoffice3.6-ure libreoffice3.6-suse-menus
Download: sh get_libreoffice4.sh
#!/bin/bash VERSION="4.0.0" MIRROR="download.documentfoundation.org" DIR="libreoffice/stable" wget -t 0 -c "http://$MIRROR/$DIR/$VERSION/rpm/x86/LibreOffice_"$VERSION"_Linux_x86_rpm.tar.gz" wget -t 0 -c "http://$MIRROR/$DIR/$VERSION/rpm/x86/LibreOffice_"$VERSION"_Linux_x86_rpm_langpack_de.tar.gz" wget -t 0 -c "http://$MIRROR/$DIR/$VERSION/rpm/x86/LibreOffice_"$VERSION"_Linux_x86_rpm_helppack_de.tar.gz" wget -t 0 -c "http://$MIRROR/$DIR/$VERSION/rpm/x86_64/LibreOffice_"$VERSION"_Linux_x86-64_rpm.tar.gz" wget -t 0 -c "http://$MIRROR/$DIR/$VERSION/rpm/x86_64/LibreOffice_"$VERSION"_Linux_x86-64_rpm_langpack_de.tar.gz" wget -t 0 -c "http://$MIRROR/$DIR/$VERSION/rpm/x86_64/LibreOffice_"$VERSION"_Linux_x86-64_rpm_helppack_de.tar.gz" wget -t 0 -c "http://$MIRROR/$DIR/$VERSION/win/x86/LibreOffice_"$VERSION"_Win_x86.msi" wget -t 0 -c "http://$MIRROR/$DIR/$VERSION/win/x86/LibreOffice_"$VERSION"_Win_x86_helppack_de.msi"
Auspacken: sh extract4.sh
#!/bin/bash VERSION="4.0.0" mkdir -p "$VERSION/"{32,64} mkdir tmp tar -xf "LibreOffice_"$VERSION"_Linux_x86_rpm.tar.gz" -C tmp/ tar -xf "LibreOffice_"$VERSION"_Linux_x86_rpm_langpack_de.tar.gz" -C tmp/ tar -xf "LibreOffice_"$VERSION"_Linux_x86_rpm_helppack_de.tar.gz" -C tmp/ find tmp -type f -name "*README*" -exec mv {} "$VERSION/32/" \; find tmp -type f -name "*.rpm" -exec mv {} "$VERSION/32/" \; rm "$VERSION"/32/*freedesktop* "$VERSION"/32/*mandriva* rm -rf tmp mkdir tmp tar -xf "LibreOffice_"$VERSION"_Linux_x86-64_rpm.tar.gz" -C tmp/ tar -xf "LibreOffice_"$VERSION"_Linux_x86-64_rpm_langpack_de.tar.gz" -C tmp/ tar -xf "LibreOffice_"$VERSION"_Linux_x86-64_rpm_helppack_de.tar.gz" -C tmp/ find tmp -type f -name "*README*" -exec mv {} "$VERSION/64/" \; find tmp -type f -name "*.rpm" -exec mv {} "$VERSION/64/" \; rm "$VERSION"/64/*freedesktop* "$VERSION"/64/*mandriva* rm -rf tmp
Installieren: 32 Bit: rpm -Uvh 4.0.0/32/*.rpm 64 Bit: rpm -Uvh 4.0.0/64/*.rpm rpm -e libreoffice4.0-stdlibs
Alte Version löschen for rpm in $(rpm -qa --qf "%{name}\n" | grep libreoffice ) ; do zypper -n rm -u $rpm; done oder mit yast2 > Suchen nach libreoffice > alle in der Liste löschen oder zypper rm libreoffice3-ure tar xvfz LibO_3.3.2_Linux_x86_install-rpm_en-US.tar.gz rpm -Uvh LibO_3.3.2rc2_Linux_x86_install-rpm_en-US/RPMS/*.rpm LibO_3.3.2rc2_Linux_x86_install-rpm_en-US/RPMS/desktop-integration/libreoffice3.3-suse-menus-3.3-202.noarch.rpm tar xvfz LibO_3.3.2_Linux_x86_langpack-rpm_de.tar.gz rpm -Uvh LibO_3.3.2rc2_Linux_x86_langpack-rpm_de/RPMS/*.rpm tar xvfz LibO_3.3.2_Linux_x86_helppack-rpm_de.tar.gz rpm -Uvh LibO_3.3.2rc2_Linux_x86_helppack-rpm_de/RPMS/*.rpm