-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.tex
More file actions
119 lines (99 loc) · 4.99 KB
/
Copy pathtemplate.tex
File metadata and controls
119 lines (99 loc) · 4.99 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
\documentclass[journaltitlel1]{flossiner}
\title{Test Article (this is a very long line of text to provide a test for the multiline title space)}
\author{Andrei J. Vukolov\affiliation{BMSTU}, Olga V. Egorova\affiliation{BMS}}
\authorrunning{A. Vukolov, O. Egorova}
\keywords{keyword1, keyword2, keyword3 (max. 5 values)}
\begin{document}
\maketitle
\begin{abstract}
%Use \hspace*{\fill} to omit stretching
Abstract comes here. 10pt. Max. 250 words\hspace*{\fill}
\end{abstract}
\section{Introduction}
Introduction comes here. 12pt, regular, justified. Don’t use inline. Line-height=1.15, add space after paragraph.
The document should link the \LaTeX\ class file \texttt{flossiner.cls} provided from the official website through following directive: \lstinline[language=TeX]|\documentclass{flossiner}|.
\section{Method}
\subsection{Sample or Study Group (second order title, 12pt, bold, italic)}
Please give detailed information here about your sample or study group.
\subsubsection{Tools \& \LaTeX\ prerequisites}
Class file \texttt{flossiner.cls} uses the following \LaTeX\ packages you should have on the machine to successfully compile the article:
\begin{tabular}{ccc}
\texttt{mathpazo} & \texttt{anyfontsize} & \texttt{ifthen} \\
\texttt{fancyhdr} & \texttt{geometry} & \texttt{graphicx} \\
\texttt{listings} & \texttt{color} & \texttt{hyperref} \\
\texttt{titlesec} & \texttt{tabularx} & \texttt{colortbl} \\
\texttt{environ} & \texttt{caption} & \texttt{apacite}
\end{tabular}
All these packages are bundled into any modern \LaTeX\ distrubution. If you do not have one of them, you always can download it on CTAN: \href{https://www.ctan.org/}{https://www.ctan.org/}. Simply place the contents of uncompressed archive into the directory where \LaTeX\ would see it.
\section{Tables}
You may use centered \texttt{tabular} or unjustified \texttt{tabularx} environments wrapped into standard \texttt{table} floating object. Please keep the structure of your tables as simple and readable as possible.
\begin{table}[ht]
\caption{Sample table}
\label{tbl:tbl1}
\begin{tabularx}{\textwidth}{p{10cm}cXr}
\hline
Group & par1 & par2 & par3 \\
\hline
Group1 & 10 & 20 & 30 \\
Group2 & 400 & 500 & 800 \\
\hline
\end{tabularx}
\end{table}
You can also add source code listings into your articles. To do so, you should use \texttt{lstlisting} environment. Source code which represents Table~\ref{tbl:tbl1} is printed in Listing~\ref{lst:lst1}.
\begin{lstlisting}[language=TeX,label=lst:lst1,caption={Code for floating table (from above)}]
\begin{table}[h]%Table environment
\caption{Sample table}
\label{tbl:tbl1}
\begin{tabularx}{\textwidth}{p{10cm}cXr}
\hline %Place data under the line
Group & par1 & par2 & par3 \\
\hline %Separator
Group1 & 10 & 20 & 30 \\
Group2 & 400 & 500 & 800 \\
\hline
\end{tabularx}
\end{table}
\end{lstlisting}
The header string for the listing above looks like \lstinline[language=TeX]|\begin{lstlisting}[language=TeX,label=lst:lst1,caption={Code for floating table (from above)}]|.
For another language like C++ just change the header of the environment: \lstinline[language=TeX]|\begin{lstlisting}[language=C++,label=lst:lstcpp,caption={Code}]|:
\begin{lstlisting}[language=C++,label=lst:lstcpp,caption={C++ code example}]
#include <iostream>
using namespace std;
int main(int argc, char** args)
{
cout << "Hello World!" << endl;
return 0;
}
\end{lstlisting}
\section{Figures}
To include images into your article please use standard \texttt{figure} environment wrapping \texttt{includegraphics} command as the following (fig.~\ref{fig:fig1}):
\begin{figure}[h]
\begin{center}
\includegraphics[width=0.75\textwidth]{testfigure}
\caption{Test figure}
\label{fig:fig1}
\end{center}
\end{figure}
\begin{lstlisting}[language=TeX,label=lst:lst2,caption={Code for floating figure}]
\begin{figure}[h]
\begin{center}
\includegraphics[width=\textwidth]{testfigure}
\caption{Test figure}
\label{fig:fig1}
\end{center}
\end{figure}
\end{lstlisting}
\section{Conclusion}
You can edit this title as Summary, etc.
%\section{Suggestions}
%You can merge this title with Conclusion, or edit this title as Recommendations, etc.
\section{Acknowledgments}
Please provide any notes about your article (inc. grants, financial support etc.) under this section.
\section{Bibliography}
Use \texttt{apacite} bibliography style to generate citations using BibTeX. It is strongly unrecommended to write \lstinline[language=TeX]|\bibitem| commands manually because of very specific form of APA entry. Instead of it, use bibliographic entries collected within \texttt{.bib} file according to BibTeX documentation (\href{http://www.bibtex.org/}{http://www.bibtex.org/}) and write the following commands:
\begin{lstlisting}[language=TeX,caption={Adding a bibliography}]
\bibliographystyle{apacite}
\bibliography{books}
\end{lstlisting}
where \texttt{book} is the name of your \texttt{.bib} file. These commands will also add 'References' section automatically.
\end{document}