[ Skip to the content ]

Institute of Formal and Applied Linguistics Wiki


[ Back to the navigation ]

This is an old revision of the document!


Table of Contents

Screen

Ze splitu (^AS) se lze dostat pomocí ^AQ.

X na jiném displayi

startx -- :1

Synergy tunelem

alias synergman='ssh -f -N -L 24801:localhost:24800 stranak@manfred && synergyc -f localhost:24801'

užitečné LaTeXové balíčky a triky

Xyling (lingvistické stromy)

Ross Moore napsal (xetex mailing list, 9. ledna 2009 22:05:50 GMT+01:00):

there is a simple way to overcome
incompatibilities between packages, when you are
*absolutely certain* that your document is only going to
use a macro in just one way. For the case at hand:
\usepackage{xunicode}
\let\B\relax
\let\T\relax
\usepackage{xyling}

Of course this will mean that you cannot put words requiring
\B  and  \T  within the content of the linguistic-tree nodes.

If this is in fact needed, then a better approach would be:
\usepackage{xunicode}
\let\realB\B
\let\B\relax
\let\realT\T
\let\T\relax
\usepackage{xyling}
\let\lingB\B
\let\lingT\T

Now you can locally reset \B to the original one:
{{\let\B\realB
  some words needing ...\B.... }}
within linguistic tree nodes.
Similarly for \T .

Yes, this requires great care; but at least it is possible.

Vim

:set list zobrazit neviditelné znaky
:h listchars které neviditelné znaky konkrétně
g[jk] přejít o vizuální řádek nahoru/dolů (při nastaveném 'wrap')
ga zobrazí Unicode Dec, Hex a Octal hodnotu znaku

[ Back to the navigation ] [ Back to the content ]