For instance, I want to do the steps 'tex' -> 'dvi' -> 'ps' -> 'pdf' (F2, F4, F8) without pressing three different keys.
Thanks in advance.

NEW: TikZ book now 40% off at Amazon.com for a short time.
It works, thanks for the solution and thanks also for the welcome!Stefan_K wrote:Welcome to the forum!
Texmaker has quick-build commands and keyboard shortcuts for them. Go to the Texmaker configuration, to "Quick-build", choose "User" to create a custom profile. Before that, look at the existing profiles. One may already work for you, or you can see how they are built.
Stefan
arara
might also be of interest to you. You set the programs to run in the preamble of the document, call arara and arara does the work for you. Code: Select all
% arara: latex
% arara: biber
% arara: latex
% arara: pdflatex
\documentclass{article}
\usepackage{blindtext}
\usepackage{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\blindtext
\cite{companion}
\blindtext
\printbibliography
\end{document}
Thanks. So by varying options in there, compilations are automatically done in the desired format(s) ?Johannes_B wrote:Hi and welcome,
arara
might also be of interest to you. You set the programs to run in the preamble of the document, call arara and arara does the work for you.
Code: Select all
% arara: latex % arara: biber % arara: latex % arara: pdflatex \documentclass{article} \usepackage{blindtext} \usepackage{biblatex} \addbibresource{biblatex-examples.bib} \begin{document} \blindtext \cite{companion} \blindtext \printbibliography \end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.