
一般我们使用脚注时不需要额外使用宏包,只需要在该插入脚注的地方插入\footnote{脚注内容}即可,这样的脚注:
自动编号。
首行缩进。
但是一般论文首页脚注位置不需要首行缩进,因此我们引入footmisc宏包,并使用marginal使得不首行缩进。
\documentclass[11pt,a4paper]{article}
\usepackage{CJK}
\usepackage{type1cm}
\usepackage{times}
\usepackage[marginal]{footmisc}
\renewcommand{\thefootnote}{}
\begin{document}
\begin{CJK*}{GBK}{song}
这段文章\footnote{\noindent \textbf{收稿日期}:2000-06-30;\textbf{修回日期}:2000-11-16\\
\textbf{基金项目}:``九五''国家科技攻关资助项目(96-B02-03-05)\\ \textbf{作者简介}:
陆峰(1970-),男,新疆维吾尔自治区乌鲁木齐市人,中国科学院资源与环境信息系统国家重点实验室博士后,
主要从事交通网络的地理信息系统数据模型和网络分析相关算法研究。}.
\end{CJK*}
\end{document}
第5行:引入宏包,使得脚注首行不缩进。
第6行:设置脚注不编号。
第9行:设置脚注内容。
1 版权信息在第一页左栏在 /begin{document} 之前添加
2 版权信息在第一页居中
在 /begin{document} 之前添加
望采纳,O(∩_∩)O谢谢,不懂得地方可以再问,一起讨论讨论在latex中,对于双栏格式的排版,插入一栏图片时,使用的是\begin{figure}……\end{figure} ,插入双栏图片时需在figure的上标中加入符号“*”,如\begin{figure*}……\end{figure*}。
1.在latex插入一张图片(占一栏)比较简单,插入一张图片的代码如下:
\begin{figure}{h}
\centering %使插入的图片居中显示
\includegraphics[height=5cm ,width=8cm,angle=0,scale=]{fig.eps}
\caption{Example twig query and documents } %插入图片的标题,一般放在图片的下方,放在表格的上方
\end{figure}
关键性的语句是:\includegraphics[选项]{图片.eps}
选项:height %指定图片的高度
width %指定图片的宽度
angle %指定图片旋转的角度
还有一个指标叫scale,之缩放图形。
2.在latex插入多张图片(占双栏)就不是那么简单了,笔者知道有两种方法:
法一:使用\begin{minipage}[pos]{width} text \end{minipage}
\begin{figure*}
\centering
\begin{minipage}[!htbp]{0.3\linewidth}
\includegraphics[width=1.5in,angle=-90]{52.eps}
%\caption{fig1}
\label{fig:side:a}
\end{minipage}%
\begin{minipage}[!htbp]{0.3\linewidth}
\includegraphics[width=1.5in,angle=-90]{51.eps}
%\caption{fig2}
\label{fig:side:b}
\end{minipage}
\begin{minipage}[!htbp]{0.3\linewidth}
\includegraphics[width=1.5in,angle=-90]{53.eps}
%\caption{fig3}
\label{fig:side:c}
\end{minipage}
\caption{3 figure}
\end{figure*}
注:笔者不太喜欢这种方法,原因是这种插入方式如果在每个图中使用\caption{fig3
name}给图片做注释的时候不是把三个图片当做一个figure,而是每个图片即每个minipage各使用一个fig标记,三个mingpage相当
于三个图片了,当然也可以不单独对每个图片写个\caption,而是在\caption{3
figure}中对每个figure进行解释说明,所以笔者推崇第二种方法。当然,笔者也许不知道如何设置,有望业内人士指教。
法二:使用subfigure命令,但必须在导演区加入\usepackage{subfigure},否则无法编译过去。
\begin{figure*}[!t]
\centering
\subfigure[Number of elements read] {\includegraphics[height=2in,width=2in,angle=-90]{52.eps}}
\subfigure[Size of disk files scanned] {\includegraphics[height=2in,width=2in,angle=-90]{51.eps}}
\subfigure[Execution time] {\includegraphics[height=2in,width=2in,angle=-90]{53.eps}}
\caption{ PathStack versus TJFast using XMark data }
\label{fig5}
\end{figure*}
这种方法很好,即插入三个子图,可以将三个图片合成一个大图,而且每个图片还可以添加caption,即于subfigure[*]中*内进行解释说明。
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)