LaTeX를 처음 사용해 보았습니다.
7419 단어 TeXLaTeXHelloWorld
개요
처음으로 LaTeX를 사용해 막힌 곳을 자신용으로 정리해 보았다.
Hello World!
보고서를 작성할 때 jsreport, 책을 작성할 때 jsbook
세부 사항 → h tps : // 눈으로 마나부. 네 t/ㅁx/도쿠멘 tcぁ s/
환경에 따라서 jsarticle의 곳이 ujsarticle 등이 된다.
jsarticle 쪽이 여백이 적다.
참고 → htps : // 코 m/스즈키_마사야/있어 ms/에 1 굳이 2에 b42626dc6d9155
hello.tex
\documentclass[uplatex]{jsarticle}
\begin{document}
Hello World!
\end{document}
실행 결과
Hello World!
코멘트 아웃
%로 댓글 달기
%コメントアウトしています
제목, 이름 등
sample.tex
\documentclass[uplatex]{jsarticle}
% プリアンブル
\title{タイトル}
\author{山田 太郎 \and 山田 花子}
\date{2018/01/03}
\begin{document}
% タイトルを出力
\maketitle
\section{節}
文章
\end{document}
실행 결과
글머리 기호
번호가 매겨진 글머리 기호
\begin{itemize}
\item item1
\item item2
\item item3
\end{itemize}
실행 결과
・item1
・item2
・item3
번호가 매겨진 글머리 기호
\begin{enumerate}
\item item1
\item item2
\item item3
\end{enumerate}
실행 결과
1. item1
2. item2
3. item3
제목이 있는 글머리 기호
\begin{description}
\item[日程] 2018年1月3日
\item[場所] 札幌駅
\item[料金] 3,000円
\end{description}
실행 결과
日程 2018年1月3日
場所 札幌駅
料金 3,000円
글머리 기호나 제목 직후의 개행
아래와 같이 ~\\를 입력하기만 하면 됩니다.
~는 공백,\\는 줄 바꿈을 나타냅니다.
\begin{description}
\item[日程] ~\\2018年1月3日
\item[場所] ~\\札幌駅
\item[料金] ~\\3,000円
\end{description}
실행 결과
日程
2018年1月3日
集合場所
札幌駅
参加費
3,000円
소스 코드
Word에서는 소스 코드를 쉽게 볼 수있는 방법이 제한되어 있었기 때문에
이 기능은 LaTeX를 사용하여 처음으로 감동했다.
sample2.tex
\documentclass[uplatex]{jsarticle}
\usepackage{listings}%,ソースコードをLatexに挿入するためのパッケージ
%ソースコードの表示に関する設定
\lstset{
basicstyle={\ttfamily},
identifierstyle={\small},
commentstyle={\smallitshape},
keywordstyle={\small\bfseries},
ndkeywordstyle={\small},
stringstyle={\small\ttfamily},
frame={tb},
breaklines=true,
columns=[l]{fullflexible},
numbers=left,
xrightmargin=0zw,
xleftmargin=3zw,
numberstyle={\scriptsize},
stepnumber=1,
numbersep=1zw,
lineskip=-0.5ex
}
\begin{document}
HelloWorldのソースコードを,ソースコード\ref{hello}に示す。
%ここにソースコードを載せる
\begin{lstlisting}[caption=hello.c,label=hello]
#include <stdio.h>
int main() {
printf("Hello World");
return 0;
}
\end{lstlisting}
\end{document}
실행 결과
그 밖에도 다양한 소스 코드를 작성하는 방법이 있다.
htps //w w. 비와코. 고마워. 아 c. jp / 센세이 / 쿠마 자와 / x / ぃ s chin gs. HTML
참고문헌
h tps : // 눈으로 마나부. 네 t/ㅁx/도쿠멘 tぁ s/
h tp // w w.ぁx-cmd. m / st ct / st. html
htps : // 이 m / ta_b0_ / ms / 2619d5927492 db5b03
h tp // w w.ぁx-cmd. 이 m/st하는 ct/치 tぇ. HTML
htps //w w. 비와코. 고마워. 아 c. jp / 센세이 / 쿠마 자와 / x / ぃ s chin gs. HTML
htps: //포std. c / 베긴 - ㅁ x - 인 - 미누테 s /
h tp // w w. 로보치 cs. 히로시마. 아 c. jp / x / x / p x. HTML##x
h tps : // / x x 우키. xjp. rg/?ぁX%에5%85%아5%에9%96%80
Reference
이 문제에 관하여(LaTeX를 처음 사용해 보았습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/twrcd1227/items/b28084db0e4d9e945f2b텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)