StoryCode

'Latex'에 해당되는 글 4건

  1. Dia ( Like Visio )
  2. InkScape
  3. LaTexDraw
  4. 설치

Dia ( Like Visio )

Latex
반응형

0. 무료


1.SVG, 몇가지 이미지 대표 이미지 포맷들


2. C++ , 파이썬 코드 생성 가능


3. https://wiki.gnome.org/Apps/Dia

반응형

'Latex' 카테고리의 다른 글

InkScape  (0) 2019.02.25
LaTexDraw  (0) 2019.02.25
설치  (0) 2019.02.22

InkScape

Latex
반응형

0 .무료


1. Vector Tool


2. SVG, EPS Export


3. 선, 다양한 원, 다각형, 그라데이션


4.https://inkscape.org/


반응형

'Latex' 카테고리의 다른 글

Dia ( Like Visio )  (0) 2019.02.25
LaTexDraw  (0) 2019.02.25
설치  (0) 2019.02.22

LaTexDraw

Latex
반응형

1) LaTeX 에서 그림그리기는 아래와 같이

\section{A Picture}

\begin{center}

\begin{picture}(100,100)(0,0)

\setlength{\unitlength}{1pt}

\put(20,70){\circle{30}}  \put(20,70){\circle*{10}}   % left eye

\put(80,70){\circle{30}}  \put(80,70){\circle*{10}}   % right eye

\put(40,40){\line(1,2){10}} \put(60,40){\line(-1,2){10}} \put(40,40){\line(1,0){20}} % nose

\put(50,20){\oval(80,10)[b]} % mouth

\multiput(0,90)(4,0){10}{\line(1,3){4}}  % left eyebrow

\multiput(100,90)(-4,0){10}{\line(-1,3){4}}  % right eyebrow

\end{picture}

\end{center}


좌표와 각종 그리기 명령을 이용한다.


이걸 좀 편하게 하기 위해, LaTeXDraw 를 사용할 수 있다.



2) https://sourceforge.net/projects/latexdraw/files/latest/download 에서 설치할 수 있다.

현재 3.3.8 버전까지 나와있으며, 윈도우즈/ 리눅스/ 맥에서 사용가능하다.


윈도 : zip 을 다운로드후, install_windows.vbs 를 실행하여 설치한다. 설치후, 커맨더에서 "java -jar LaTeXDraw.jar" 로 실행하면 된다.


3) Sample


4) figure1.pdf 로 저장후에, 다른 TeX 에서 부를수 있다.

\documentclass{article}

\usepackage[pdftex]{graphicx}

\begin{document}

\begin{figure}

  \centerline{\includegraphics{figure1}}

\end{figure}

\end{document}

반응형

'Latex' 카테고리의 다른 글

Dia ( Like Visio )  (0) 2019.02.25
InkScape  (0) 2019.02.25
설치  (0) 2019.02.22

설치

Latex
반응형

1. MikTex 설치 ( PDF 등 포맷변환용 )

https://miktex.org/download 사이트에서는 다운로드가 잘 안되므로, 아래 링크에서 다운로드후 설치


https://ctan.math.illinois.edu/systems/win32/miktex/setup/windows-x64/basic-miktex-2.9.6942-x64.exe


설치하면, 자동으로 update check 하며, update now 해준다.


2. TeXStudio 설치

https://www.texstudio.org/



반응형

'Latex' 카테고리의 다른 글

Dia ( Like Visio )  (0) 2019.02.25
InkScape  (0) 2019.02.25
LaTexDraw  (0) 2019.02.25