TeX 쓰기시 파일 분할을하는 방법
3097 단어 TeX
0. 본 기사 개요
나는 전공 무늬, 자주 TeX를 사용합니다.
반드시 이 기사를 읽어주신 분에게 「TeX는 무엇?」이라고 하는 분은 없다고 생각하므로, TeX 그 자체의 설명은 하지 않습니다.
대량의 문장을 집필할 때, 1개의 파일에 쓰는 것은 그다지 바람직하지 않다고 생각하고 있습니다. (어디에 무엇 썼는지 모르고…)
그래서, 예를 들면 섹션마다 파일을 작성해, 마지막에 합체시킬 수 있으면 꽤 좋다고 생각합니다.
나 자신도 최근에이 방법을 알았다. 내 비망록이라는 의미도 담아 이 기사를 씁니다.
1. 방법
파일 구조는 다음과 같다고 가정합니다.
「01_report」안에, 분할하고 있는 「chapter_」파일과 마지막에 통합해 출력하는 report.tex 가 있습니다.
통합된 report.tex에는 다음과 같이 설명합니다.
report.tex\documentclass[dvipdfmx,uplatex]{jsarticle}
\def\vector#1{\mbox{\boldmath $#1$}}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage[hiresbb]{graphicx}
\usepackage{ascmac}
\usepackage{siunitx}
\usepackage{float}
\usepackage{tikz}
\usepackage{circuitikz}
\usepackage{url}
\makeatletter
\renewcommand{\theequation}{%
\thesubsection.\arabic{equation}}
\@addtoreset{equation}{subsection}
\makeatother
\title{title}
\author{name}
\date{date}
\begin{document}
\maketitle
\include{chapter01/191105}
\end{document}
사용하고 싶은 패키지와 \include
를 이용합니다. .tex 확장자를 쓸 필요가 없습니다.
주의
분할하고 있는 chapter내의 tex 파일에 usepackage
를 기술하면 이상하게 되었습니다. 분할된 파일에는 기술하지 않고, 단지 오로지 문장을 쳐 갑니다.
Reference
이 문제에 관하여(TeX 쓰기시 파일 분할을하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/MizutoKadowaki0312/items/2b6094f08083143c1f38
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
파일 구조는 다음과 같다고 가정합니다.
「01_report」안에, 분할하고 있는 「chapter_」파일과 마지막에 통합해 출력하는 report.tex 가 있습니다.
통합된 report.tex에는 다음과 같이 설명합니다.
report.tex
\documentclass[dvipdfmx,uplatex]{jsarticle}
\def\vector#1{\mbox{\boldmath $#1$}}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage[hiresbb]{graphicx}
\usepackage{ascmac}
\usepackage{siunitx}
\usepackage{float}
\usepackage{tikz}
\usepackage{circuitikz}
\usepackage{url}
\makeatletter
\renewcommand{\theequation}{%
\thesubsection.\arabic{equation}}
\@addtoreset{equation}{subsection}
\makeatother
\title{title}
\author{name}
\date{date}
\begin{document}
\maketitle
\include{chapter01/191105}
\end{document}
사용하고 싶은 패키지와
\include
를 이용합니다. .tex 확장자를 쓸 필요가 없습니다.주의
분할하고 있는 chapter내의 tex 파일에 usepackage
를 기술하면 이상하게 되었습니다. 분할된 파일에는 기술하지 않고, 단지 오로지 문장을 쳐 갑니다.
Reference
이 문제에 관하여(TeX 쓰기시 파일 분할을하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/MizutoKadowaki0312/items/2b6094f08083143c1f38
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(TeX 쓰기시 파일 분할을하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/MizutoKadowaki0312/items/2b6094f08083143c1f38텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)