summaryrefslogtreecommitdiff
path: root/biblio/bibtex/contrib/ieejtran/ieejtran-en.tex
blob: 8b095c5d1e78cd40ea0f43081022020c11d76325 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
\documentclass[11pt, a4paper, dvipdfmx]{article}

\usepackage{bxtexlogo}

\begin{filecontents}[overwrite]{library.bib}
@misc{IEEEtran,
  author = {Michael Shell},
  url = {https://www.ctan.org/tex-archive/macros/latex/contrib/IEEEtran/bibtex},
  title = {{IEEEtran}},
  month = {August},
  year = {2015}
}
@misc{jIEEEtran,
  author = {ehki},
  url = {https://github.com/ehki/jIEEEtran},
  title = {{jIEEEtran}},
  month = {March},
  year = {2020}
}
@misc{jeconbst,
  author = {ShiroTakeda},
  url = {http://shirotakeda.org/ja/tex-ja/jecon-ja.html},
  title = {{jecon.bst}},
  month = {August},
  year = {2019}
}
\end{filecontents}
    
    
\title{\texttt{IEEJtran.bst}:\\Unofficial IEEJ \BibTeX\ style\\(ver. 0.19)}
\author{Haruki EJIRI}

\begin{document}

\maketitle

\begin{abstract}
The IEEJtran \BibTeX\ style is an unofficial citation format for Institute of Electrical Engineers of Japan transactions.
It is a customization of Michael Shell's IEEEtran.bst.
A Python script named mixej.py enables one content with both English and Japanese format to be handled properly.
\end{abstract}


\section{Introduction}

IEEJtran.bst is an unofficial \BibTeX-style (.bst) file in IEEJ format developed for Japanese users engaging in electrical engineering.
YoshiRi implemented natural Japanese notation based on Michael Shell's IEEEtran.bst[?].
And now the author develops it in GitHub repository [?] after taking it over.
Please note IEEJtran.bst is unofficial.
The author does not guarantee that it will work in all environments.
We cannot be held responsible for any problems that may occur.
We recommend platex/pbibtex or uplatex/upbibtex as \TeX\ engines.


\section{Configuration}

If IEEJtran.bst has been installed by \TeX\ Live package manager, etc., and placed under PATH, write \texttt{\string\bibliographystyle\string{IEEJtran\string}} in the preamble to complete the setup.
In the case that IEEJtran.bst is individually downloaded and placed in the same directory as the main \TeX\ file such a reason for customization, state \texttt{\string\bibliographystyle\string{IEEJtran\string}} in the preamble in the same way to complete the setting.
In the .bib file containing bibliographic information, Japanese authors' names should be written as:
\begin{center}
\texttt{author = \string{\string{Yamada Taro\string} and \string{Sato Jiro\string}\string}},
\end{center}
or
\begin{center}
\texttt{author = \string{Yamada, Taro and  Sato, Jiro\string}}.
\end{center}


\section{Combine English and Japanese entries}

Japanese users are sometimes required to write both English and Japanese citation formats as one bibliography entry.
A python script named \texttt{mixej.py} included in the \texttt{ieejtran} package enables combining English and Japanese entries.
To combine two entries of enkey and jpkey, users have to cite as \texttt{\string\cite\string{enkye/ej/jpkey\string}}, where enkey and jpkey are English and Japanese citation keys, respectively.
Then compile by the following seven steps:
\begin{center}
    \texttt{uplatex → python mixej.py → upbibtex → python mixej.py\\→ uplatex → uplatex → dvipdfmx}
\end{center}
instead of the typical five steps:
\begin{center}
    \texttt{uplatex → upbibtex → uplatex → uplatex → dvipdfmx}.
\end{center}
Note that the uplatex command is Unicode and Japanese compatible latex command.

The Japanese version of this document, \texttt{ieejtran.pdf}, shows examples for English and Japanese combined citations.

\end{document}