titlesec 및 프레임 패키지가 XeLaTeX에서 작동하지 않는 이유는 무엇입니까?

titlesec 및 프레임 패키지가 XeLaTeX에서 작동하지 않는 이유는 무엇입니까?

저는 XeLaTeX를 처음 사용하는데, 패키지 titlesecframed. 제가 뭔가 잘못하고 있는 걸까요, 아니면 이 패키지가 XeLaTeX와 호환되지 않는 걸까요? 호환되지 않는 경우 좋은 대안은 무엇입니까?

MWE에 대해서는 말할 것도 없습니다. 서문에서 두 패키지 중 하나를 로드하려고 시도한 후 비상 정지를 당합니다.

편집 01:어쨌든 MWE가 있습니다. 다음은 XeLaTeX로 컴파일되지 않습니다. 두 패키지 모두 로드되지 않은 경우에만 작동합니다.

\documentclass[]{report}
\usepackage{titlesec}
\usepackage{framed}

\begin{document}

Content.

\end{document}

또한 ShareLaTeX를 사용하면 컴파일되지만 제가 선호하는 프로그램인 LaTeXian(Mac용)에서는 컴파일되지 않는다는 점도 지적하고 싶습니다.

편집 02:로그 파일은 다음과 같습니다.

This is XeTeX, Version 3.14159265-2.6-0.99991 (TeX Live 2014) (preload
ed format=xelatex)
 \write18 enabled.
entering extended mode
(/Users/<username>/Library/Application Support/Latexian/TSWLatexian
Temp_001332.tex
LaTeX2e <2014/05/01>
Babel <3.9k> and hyphenation patterns for 21 languages loaded.
(/usr/local/texlive/2014basic/texmf-dist/tex/latex/base/report.cls
Document Class: report 2007/10/19 v1.4h Standard LaTeX document class
(/usr/local/texlive/2014basic/texmf-dist/tex/latex/base/size10.clo))

! LaTeX Error: File `titlesec.sty' not found.

Type X to quit or <RETURN> to proceed,
or enter new name. (Default extension: sty)

Enter file name:  

답변1

귀하의 로그에는 귀하가베이직텍스(BasicTeX)설치되었습니다. 여기에는 전체 TeX Live의 최소한의 패키지만 포함되어 있습니다. 따라서 전체 MacTeX를 다운로드하여 설치하는 대신 작은 시스템을 원한다고 가정하면 TeX Live Manager를 사용하여 titlesecframed. 터미널을 사용하여 이 작업을 수행할 수도 있습니다. 이것이 제가 할 작업입니다.

sudo tlmgr install titlesec
sudo tlmgr install framed

관련 정보