| True WYSIWYG LaTeX System |
|
Please read short FAQ below contact form before posting your question.
Please note, that our answers are not delivered to "...@yahoo.com"
E-Mail addresses.
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.Font Encoding: european languages should be prepared with fonts in T1 encoding. Check it! Insert \usepackage[T1]{fontenc} into document preamble. When such document is edited in TeXWord font encoding should be set properly in dialog 'Options/TeX Running parameters' - 'Internal TeX Encoding'. Modern versions of TeXWord check this parameter automatically and suggest user to change it properly. Input Encoding: choose proper input encoding in 'Options/TeX Running parameters'. NOTE: All central european (matched CP1250) languages, and two western languages (german, french) require using inputenc or TCX. 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 OFF)
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 ON)
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.So, to generate LOG file you should run TeX from Centaur or command line. 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.
|
|