论文写作及作图

一:论文写作

论文写作推荐使用LATEX+TEXStudio+TEXLive

1.CTeX官方网站:http://www.ctex.org/HomePage ,他类似于python环境

2.TeXstudio下载地址:http://texstudio.sourceforge.net/ ,他类似于PyCharm,用它编写代码更方便,比CTEX自带的WinEdt编辑更好用,类似于记事本和IDE的关系

3.TEXLive下载地址:https://www.tug.org/texlive/  ,知道安装网址:https://www.jianshu.com/p/25896cc05cb4 ,他类似于Anacoda,下载他以后,相关的package都可以自动导入,免去自己一个个在网上找包的痛苦,比如写算法时Algorithm包或Algorithm2e包,都可以自动导入,又或者在网上下载的LATEX模板,缺少很多包,也可以直接通过TEXLive导入

算法模板:

\documentclass[10.5pt]{article}

\usepackage{algorithm}  
\usepackage[noend]{algorithmic}
\usepackage{amsmath}  
\usepackage{bm}
\renewcommand{\algorithmicrequire}{\textbf{Input:}}  % Use Input in the format of Algorithm  
\renewcommand{\algorithmicensure}{\textbf{Output:}} % Use Output in the format of Algorithm

\begin{document}
    {\small
        \begin{algorithm}
            \caption{Algorithm for joint deployment and routing}\label{alg:pce}
            \begin{algorithmic}[1]
                \REQUIRE network topology G(V$\cup$ L,E),$\gamma _i=<s_i,t_i,b_i,SC_i> \in \Gamma$
                \ENSURE $x_{i,l},y_{o,l}$ and the selected path of each $\gamma_i$ \\
                $\bm{Step 1:Calculating \ feasible \ paths \ and \ link \  bandwidth}$
                \FOR{all $\gamma \in \Gamma$}
                \FOR{all l $\in$ L}
                \STATE $cost_{\gamma ,l} \Leftarrow $the cost of request $\gamma$ traverse PM l
                \ENDFOR
                \STATE Select three PMs with low cost as the feasible path PMs
                \STATE $P_\gamma \Leftarrow$ the set of feasible paths
                \FOR{all path in $P_\gamma$}
                \FOR{all e $\in$ E}
                \IF{$\gamma$ traverse e}
                \STATE $B_e \Leftarrow B_e +d_\gamma$
                \ENDIF
                \ENDFOR
                \IF{$\left \{B_e \right \} > b_e$}
                \STATE remove path from $P_\gamma$
                \ENDIF
                \STATE $B_{path} \Leftarrow B_{path} \cup \left \{B_e \right \}$
                \ENDFOR
                \STATE P = P $\cup P_\gamma,$B = B$\cup \left \{ B_{path} \right \}$
                \ENDFOR
                $\bm{Step 2:Sorting \ the \ link \ bandwidth}$
                \FOR{$SC_i \in SCs$}
                \STATE $X_i = \left \{ \right \}$ //the set of $x_{i,l}$
                \STATE $\Gamma_i \Leftarrow$ the flow set of traverse $SC_i$
                \FOR{all $\gamma \in \Gamma_i$}
                \FOR{all path $\in$ $P_\gamma$}
                \STATE $B_i = B_i \cup B_{path}$
                \ENDFOR
                \ENDFOR
                \STATE Order $\lambda_i$ in non-decreasing degree order and set $X_i \leftarrow x_{i,l}$,$P_i \leftarrow y_{\gamma ,p}$
                \STATE $\lambda = \lambda \cup \lambda_i$
                \ENDFOR
                $\bm{Step 3:Updating \ the \ forwarding \ table \ capacity}$
                \FOR{all v $\in$ V}
                \STATE $y_{o,l}=0$
                \IF{the forwarding table capacity of switch v does not satify Eq.(3)}
                \STATE remove $x_{i,l}$ from $X_i$ and $y_{\gamma ,p}$ from $P_i$
                \ELSIF{$y_{o,l} == 0$ is not satified Eq.(4)}
                \STATE $y_{o,l}=1$
                \ENDIF
                \STATE $Y = y \cup y_{o,l}$
                \ENDFOR
                $\bm{Step 4:Calculating \ the \ number \ of \ cores \ using \ CPU \ per \  PM}$
                \FOR{all l $\in$ L}
                \FOR{$SC_i \in SCs$}
                \IF{the number of CPU cores of PM l is satisfied Eq.(1)}
                \STATE $R_l \Leftarrow R_l - (x_{i,l} \times y_{i,l}+y_{o,l} \times y(o,l))$
                \ELSE
                \STATE remove $y_{o,l},x_{i,l}$ and $P_i$
                \ENDIF
                \ENDFOR
                \ENDFOR    
            \end{algorithmic}
    \end{algorithm}}
\end{document}

效果如下:

 

 二:论文eps图

论文中eps图我首先使用gnuplot这个轻量级作图软件制成pdf图,然后通过TEXLive中自带软件把xxx.pdf  -》 xxx.ps -> xxx.eps

1.gunplot制图

gunplot下载地址: http://www.gnuplot.info/ 

绘图时把数据写成.xxx,dat格式,如下

#LINK N proposed ALG-1 ALG-2
A 6 1.35146 1.35146 2.61590
B 12 2.63290 2.63290 4.95446
C 18 4.19496 4.19496 6.79023
D 24 5.51183 5.51183 8.20803
E 30 8.59923 8.59923 12.91023
F 36 8.59923 8.59923 14.67736
G 42 9.90530 9.90530 16.56306
H 48 11.57430 11.57430 20.36260
I 54 12.88210 12.88210 22.89410
J 60 14.72120 14.72120 25.10080


在编写制图代码:

png格式的图:

set terminal png font "Microsoft YaHei, 9"
set output '04biggestLinkLoad.png'

set key left reverse Left spacing 1.2

set xlabel "No. of Requests(x 10^3)"
set ylabel "Max. Link Load(Gpbs)"

file = "04biggestLinkLoad.dat"

set pointsize 2
plot file u 2:3 with linespoint pointtype 4 linewidth 2 dashtype 5 t "proposed",\
     file u 2:4 with linespoint pointtype 6 linewidth 2 t "ALG-1",\
     file u 2:5 with linespoint pointtype 8 linewidth 2 t "ALG-2"

效果:

pdf格式的图:

set terminal png font "Microsoft YaHei, 9"
set output '04biggestLinkLoad.png'

set key left reverse Left spacing 1.2

set xlabel "No. of Requests(x 10^3)"
set ylabel "Max. Link Load(Gpbs)"

file = "04biggestLinkLoad.dat"

set pointsize 2
plot file u 2:3 with linespoint pointtype 4 linewidth 2 dashtype 5 t "proposed",\
     file u 2:4 with linespoint pointtype 6 linewidth 2 t "ALG-1",\
     file u 2:5 with linespoint pointtype 8 linewidth 2 t "ALG-2"

效果:

 

 2.将xxx.pdf文件转换成xxx.eps文件

 在xxx\xxx\texlive\2019\bin\win32下有两个exe文件,其中pdfops是用于将xxx.pdf文件转为xxx.ps文件,ps2eps可用于xxx.ps文件转化为xxx.eps文件,具体步骤如下:

2.1找到windos的cmd,进入xxx\xxx\texlive\2019\bin\win32目录

cd D:
cd xxx\texlive\2019\bin\win32

2.2 运行命令 pdftops xxx.pdf   (生成ps文件)

2.3 运行命令 ps2eps xxx.ps    (生成eps文件)

 

posted @ 2020-02-09 15:30  冲向云霄1998  阅读(170)  评论(0编辑  收藏  举报