Study/LaTeX
-
SubequationsStudy/LaTeX 2016. 5. 13. 20:18
수식 쓸때, numbering에 문자 추가하는 방법: subequations \documentclass{article}\usepackage{amsmath}\begin{document}\begin{subequations}\label{equations}\begin{align}\label{eq:f}f(x)&=ax + b \\\label{eq:g}g(x)&=cx^2 + dx + e\end{align}\end{subequations}For example, see \eqref{equations}.Or see equations \eqref{eq:f} and \eqref{eq:g}.\end{document} f(x) = ax+b (1a)g(x) = cx^2+dx + e (1b) http://tex.stackexchan..
-
[LaTeX] Math mode에서 공백 넣기(spacing)Study/LaTeX 2014. 8. 27. 10:04
LaTeX에서 일반 텍스트를 쓸 경우 space bar를 백번을 눌러도 공백이 만들어지지 않는다.아래 링크에 들어가면 해결 방법이 있다.https://www.sharelatex.com/learn/Spacing_in_math_modeLATEX codeDescription\quadspace equal to the current font size (= 18 mu)\,3/18 of \quad (= 3 mu)\:4/18 of \quad (= 4 mu)\;5/18 of \quad (= 5 mu)\!-3/18 of \quad (= -3 mu)\ (space after backslash!)equivalent of space in normal text\qquadtwice of \quad (= 36 mu)
-
[LaTeX] 글자에 색깔 넣기Study/LaTeX 2013. 11. 25. 22:19
논문 revision시, 수정된 문장을 표시할 때, 글자에 색깔을 넣어 표시하는 것이 매우 편하다. 먼저, 글자색 지정을 위해서는 color 패키지가 필요하다.\usepackage{color} 다음, 원하는 문장을 아래와 같이 색깔을 주면 된다.\textcolor{red}{red colored text}혹은\textcolor[rgb]{0,0,1.0}{blue colored text} \textcolor[gray]{0.5}{gray text} 사전에 원하는 컬러를 정의해 두고 사용할 수도 있다.\definecolor{color1}{rgb}{1.0,0.0}#definecolor{color2}{gray}{0.75} 참, 쉽죠?! 출처: http://www.eng.cam.ac.uk/help/tpl/textpro..
-
[LaTeX] WinEdt + Acrobat X 연동시 Acro-DDE Service ErrorStudy/LaTeX 2012. 5. 30. 15:27
1. PDF Search.edt 최근 WinEdt로 작업하던 중 아래와 같은 에러가 발생하였다. 물론 컴파일된 PDF파일은 열리지만 계속해서 error창이 뜨니 귀찮고 짜증난다.위와 같은 error가 나는 이유는, Acrobat X 버전부터 service name이 바뀌었기 때문이란다.그래서 설정을 찾아 바꿔보려고 했는데 못 찾음... ㅡㅡ;;검색 결과 대부분의 사람들이 사용하는 방법으로, Service 이름을 그대로 입력하였다.DDEOpen("%$('PDF-View')","%$('Acro-DDE_Service');","%$('Acro-DDE_Topic');");->DDEOpen("%$('PDF-View')","AcroviewA10","%$('Acro-DDE_Topic');"); 위와 같이 바꿔주면 아무..
-
IEEE PDF eXpress 통과하는 법Study/LaTeX 2012. 3. 31. 14:51
IEEE의 conference나 journal에 논문을 제출하기 위해서는 PDF eXpress에서 웹게시 적합성을 확인 받아야한다.MS-Word로 작성한 경우에는 *.doc나 *.docx를 업로드하면 적합한 PDF파일로 변환해 주므로 신경쓸 필요가 없다.그러나 LaTeX 로 작성해서 PDF로 제출하는 경우는 꼭 필요한 작업이다. (LaTeX build 환경에 따라 필요 없을 수도 있음)이것때문에 6시간 가까이 삽질을 해서 기록해 둔다. 나의 LaTeX 작업환경은 다음과 같다.WinEdt 7.0 + PDFTeXify (TeXlive 2010) 작성을 마친 PDF파일을 PDF eXpress에 제출했더니 아래와 같은 error가 발생했다는 메일이 왔다.Error Font Times New Roman is no..
-
[LaTeX] table 셀 합치기Study/LaTeX 2012. 3. 24. 10:29
논문쓰다가 테이블의 셀을 합치고 싶어서 찾아보았다. 방법은 매우 간단했다. 칸을 합치고 싶으면 \multicolumn{n}{align}{contents}를 쓰면 되고, 줄을 합치고 싶으면 \multilow{n}{align}{contents}를 쓰면 된다. 예제는 아래와 같다. \begin{tabular}{|c|c|c|} \hline \multicolumn{2}{|c|}{\multirow{2}{*}{combined cells}} & top right\\ \cline{3-3} \multicolumn{2}{|c|}{} &middle right\\ \hline bottom left &bottom center &bottom right\\ \hline \end{tabular} 출처: http://ysw1209.bl..
-
[LaTeX] WinEdt6.0과 KoTeXLive2010 연동하기Study/LaTeX 2011. 5. 5. 16:47
TeX배포판에 따른 WinEdt 설정 1. KoTeXLive 2010 + WinEdt 6.0 설치 2. 기본설정: WinEdt 실행. Options/Configurations -> 'TeXLive' 선택 3. SumatraPDF와의 PDF ForwardSearch와 InverseSearch 3-1. SumatraPDF를 설치: http://faq.ktug.or.kr/faq/SumatraPDF 3-2. WinEdt 실행. Options/Execution Modes -> "PDF Viewer" 탭에서 "Sumatra PDF" 버튼 클릭. http://faq.ktug.or.kr/faq/WinEdt?action=highlight&value=WinEdt/KC2008 KoTeX설치 완전 오래걸림. but WinEd..