|
|
|
|
Please check may be one of your questions is already anwered in below list. How to install new document class in BaKoMa TeX ? Installing new LaTeX classes/styles may be done in 2-3 simple steps:
How to edit german, french, spanish, polish, ... documents in TeXWord ?
To edit european language documents in TeXWord you should carefully set some
parameters. When you create new document from template, these parameters
are set properly. However, manually created documents may have not ideal
parameters.
Using inputenc:
\usepackage[cp1252]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[german]{babel}
% Note: Options/TeX Running Parameters ...
% Document Input Encoding = Cp1252
% Internal TeX Encoding = T1
% [ ] Perform Conversion between Input and Internal (TCX DISABLED)
Using TCX:
\usepackage[T1]{fontenc}
\usepackage[german]{babel}
% Note: Options/TeX Running Parameters ...
% Document Input Encoding = CP1252
% Internal TeX Encoding = T1
% [X] Perform Conversion between Input and Internal (TCX ENABLED)
How to see document outline (table of contents) at left ? Use hyperref package. Insert into document preamble (in source window) '\usepackage{hyperref]' and then click 'View/Refresh' (F5) command to build document outline. Where is 'File/Save As ...' command in TeXWord ? TeXWord do not support 'Save As' command for entire LaTeX document, because of multi-file nature of LaTeX documents. However, you can save any source file under another name by using 'Save As' command available in source window context menu (To see it click right mouse button in source window). Why 'File/Save All' menu command of TeXWord do not save LOG file ?
TeXWord saves only completed (closed by TeX) files.
However, LOG file is never closed by TeX engine running under TeXWord.
In this reason saving LOG file from under TeXWord is impossible.
Why vertical scroll bar scrolls page but not entire doc ? It is because TeXword don't know number of pages in your document. TeXWord do not process entire document. Commonly, document is processed only up to visible page. This approach increases performance of editing LaTeX document. In this reason, we are not planning to change it in future. How to improve TeXWord responcivity ? In some cases TeXWord may have long delay between click and view. There are two main cases of slow down.
For second case, we have several efficient recomendations to improve responce.
|
|