diff --git a/ChangeLog.md b/ChangeLog.md index 722eee6..75a4be5 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,11 @@ +#### v1.5.9 [Nov 27, 2019]: + ++ **更新**: + 增加使用IEEEtran style \([感謝yusie1978的Issue \#37](https://github.com/wengan-li/ncku-thesis-template-latex/issues/37)\) + #### v1.5.8 [Nov 27, 2019]: + **修正錯誤**: - 封面日期的產出問題 \([感謝MOHOAzure提供Pull request \#44](https://github.com/wengan-li/ncku-thesis-template-latex/pull/44)\) + 封面日期的產出問題 \([感謝MOHOAzure的Issue \#44](https://github.com/wengan-li/ncku-thesis-template-latex/issues/44)\) #### v1.5.7 [Jun 23, 2019]: diff --git a/README.md b/README.md index 156eca2..0ca7084 100755 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ 如果對本模版沒有興趣, 有[另一位同學提供的模版](https://github.com/lycsjm/nckuthesis)可使用. ### ChangeLog 版本修改 -最新版本為: [v1.5.7](https://github.com/wengan-li/ncku-thesis-template-latex/releases) +最新版本為: [v1.5.9](https://github.com/wengan-li/ncku-thesis-template-latex/releases) 詳細[請看ChangeLog.md](https://github.com/wengan-li/ncku-thesis-template-latex/blob/master/ChangeLog.md)這檔案中的內容. diff --git a/reference/IEEEtran.tex b/reference/IEEEtran.tex new file mode 100644 index 0000000..a12286d --- /dev/null +++ b/reference/IEEEtran.tex @@ -0,0 +1,56 @@ +\documentclass[conference]{IEEEtran} + +\ifCLASSINFOpdf +\usepackage[pdftex]{graphicx} +% declare the path(s) where your graphic files are +\graphicspath{{../pdf/}{../jpeg/}} +% and their extensions so you won't have to specify these with +% every instance of \includegraphics +\DeclareGraphicsExtensions{.pdf,.jpeg,.png} +\else + +\fi + +\usepackage{amsmath} % assumes amsmath package installed +\usepackage{amssymb} % assumes amsmath package installed +\usepackage{color} +\usepackage{cite} +\usepackage{algorithmic} + +\renewcommand{\citedash}{--} +\renewcommand{\citepunct}{,} + +\begin{document} + +\title{Balance Control of Reaction Wheel Pendulum} + +\maketitle + +\begin{abstract} +%\boldmath +This paper presents the balance control of reaction wheel pendulum system... +\end{abstract} + +\IEEEpeerreviewmaketitle + +%---------------------------------------------------- +\section{Introduction} +%---------------------------------------------------- +% no \IEEEPARstart +This is an example of the problem being asked \cite{rizal2015point,chen2017dynamic,rizal2014balance}, another example is this \cite{zhu2015adaptive,chen2017dynamic}, and this \cite{chen2017dynamic}. + +\bibliographystyle{IEEEtran} + +\begin{thebibliography}{1} + +\bibitem{rizal2015point} +Y. Rizal, CT Ke, and MT Ho, "Point-to-point motion control of a unicycle robot: Design, implementation, and validation," in Proc. IEEE Int. Conf. Robotics and Automation, pp. 4379--4384, 2015. +\bibitem{chen2017dynamic} +Z Chen, X Ruan, and Y Li, "Dynamic Modeling of a Cubical Robot Balancing on Its Corner," in Proc. MATEC Web of Conferences, pp. 1--6, 2017. +\bibitem{rizal2014balance} +Y. Rizal, JW Syu, and MT Ho, "Balance control of an inverted pendulum system using second-order sliding mode control," in Proc. CACS Int. Automatic Control Conf. pp. 191--196, 2014. +\bibitem{zhu2015adaptive} +YH Zhu, YS Gao, CH Xu, J Zao, H Jin, and J Lee, "Adaptive control of a gyroscopically stabilized pendulum and its application to a single-wheel pendulum robot," \emph{IEEE/ASME Transactions on Mechatronics}, vol. 20, no. 5, pp. 2095--2106, 2015 +\end{thebibliography} + +\end{document} diff --git a/thesis/conf/conf.tex b/thesis/conf/conf.tex index d385d1f..b0ba634 100755 --- a/thesis/conf/conf.tex +++ b/thesis/conf/conf.tex @@ -10,7 +10,7 @@ % 就會使用'./context/context.tex'中你所編寫論文內容. % 否則會使用'./example/context.tex'的模版說明文件內容. -% \DemoMode +\DemoMode % ---------------------------------------------------------------------------- diff --git a/thesis/template/configure.tex b/thesis/template/configure.tex index 5340755..f08cda7 100644 --- a/thesis/template/configure.tex +++ b/thesis/template/configure.tex @@ -173,3 +173,12 @@ \InitTheoremFormats % ------------------------------------------------ + +% For IEEEtran +% Remove '%' to use bibliography IEEEtran style + +% \usepackage{cite} +% \renewcommand{\citedash}{--} +% \renewcommand{\citepunct}{,} + +% ------------------------------------------------