"tabto" 매크로를 어떻게 설치하나요?

"tabto" 매크로를 어떻게 설치하나요?

"tabto.sty"를 설치하려고 하는데 CTAN의 바닐라 TeXLive를 사용하고 있습니다.

tabto 매크로는 CTAN의 다음 디렉터리에 보관되어 있습니다.

1. http://www.ctan.org/tex-archive/macros/latex/contrib/tabto

하지만 내 TeXLive 저장소는 이 위치에서 그것을 찾고 있습니다.

2. http://mirrors.ibiblio.org/pub/mirrors/CTAN/systems/texlive/tlnet

탭토가 포함되어 있지 않습니다.

CTAN URL(위 링크 1)에서 sty 파일(또는 zip 아카이브)을 직접 다운로드하여 사용할 수 있다는 것을 알고 있습니다. 하지만 나는 그렇게 하고 싶지 않습니다.

TeXLive가 위의 두 URL 모두에서 필요한 모든 항목을 가져오도록 하려면 어떻게 해야 합니까? tlmgr 과 함께 사용할 수 있는 CTAN 저장소(링크 1)에 대한 "tlnet" 호환 링크가 있습니까?

답변1

특정 파일(예 tabto.sty: )이 포함된 TeX Live 패키지를 찾으려면 다음 명령을 사용할 수 있습니다.

% tlmgr 검색 --global --file tabto.sty
tlmgr: 패키지 저장소 http://mirrors.ibiblio.org/pub/mirrors/CTAN/systems/texlive/tlnet
tabto-ltx:
    texmf-dist/tex/latex/tabto-ltx/tabto.sty

이제 설치할 TeX Live 패키지의 이름을 알았습니다. 다음 명령을 사용하여 설치할 수 있습니다.

% tlmgr 설치 tabto-ltx

답변2

TeX Live 패키지 이름은 포함된 LaTeX 패키지 이름과 항상 동일하지는 않습니다. 이 경우에는 tabto-ltx.

$ tlmgr info tabto
tlmgr: package repository http://anorien.csc.warwick.ac.uk/mirrors/CTAN/systems/texlive/tlnet
tlmgr: cannot find package tabto

아무것도 :-) 그러나 :

$ tlmgr info tabto-ltx
package:     tabto-ltx
category:    Package
shortdesc:   "Tab" to a measured position in the line.
longdesc:    \tabto{<length>} moves the typesetting position to <length> from the left margin of the paragraph. If the typesetting position is already further along, \tabto starts a new line; the command \tabto* will move position backwards if necessary, so that previous text may be overwritten. The command \TabPositions may be used to define a set of tabbing positions, after which the command \tab advances typesetting position to the next defined 'tab stop'.
installed:   Yes
revision:    30710
sizes:       doc: 121k, run: 9k
relocatable: Yes
cat-version: 1.3
cat-date:    2013-05-25 17:03:59 +0200
cat-license: lppl
collection:  collection-latexextra

관련 정보