由买买提看人间百态

topics

全部话题 - 话题: leftmargin
(共0页)
w****a
发帖数: 186
1
来自主题: TeX版 - bibliography的格式问题
我想求助一个修改bibliography的格式问题。
学校的论文要求每个bib item是单倍行距,之间是双倍行距,我试图在下面的格
式定义里面改\parsep,从0改成20或者30,但是生成的PDF 没有什么改变。谁能
帮我看看该怎么改?多谢啦!
\def\thebibliography#1{
\chapter*{\@referencesname\@mkboth{\@referencesname}{\@referencesname}}
\list{[\arabic{enumi}]}{
\settowidth\labelwidth{[#1]}
\leftmargin\labelwidth \advance\leftmargin\labelsep
\ifopenbib
\listparindent -1.5em
\advance\leftmargin-\listparindent
\itemindent\listparindent
\parsep 0pt%
\fi
\usecounter{
a***n
发帖数: 3633
2
See if it works, otherwise go thru. ieeetrans.cls, search for "
thebibliography"
try to edit accordingly.
\renewenvironment{thebibliography}[1]{%
\section*{\refname
\markboth{\MakeUppercase\refname}{\MakeUppercase\refname}}
\begin{list}{funny \arabic{enumi}funny \hspace{4mm}}{%
\settowidth{\labelwidth}{[#1]}
\itemindent 14mm
\leftmargin\labelwidth
\advance\leftmargin\labelsep
\advance\leftmargin by -\itemindent
\usecounter{e
w***g
发帖数: 5958
3
来自主题: JobHunting版 - 贴一个评价码工简历的标准吧
虽然老了点,但我觉得很有道理。大家看完再检查下自己的简历吧。
http://stevehanov.ca/blog/index.php?id=56
resume compiled from latex 在得分标准中排第二。这个应该是最容易补上的吧。下
面这个模板比较好用
www.math.nyu.edu/student_resources/res.cls
不过这个模板会在publication列表前产生一个*号,很不美观,可以在\begin{
document}前插入下面的代码纠正(这个是我 Google的,根本看不懂):
\makeatletter
\renewenvironment{thebibliography}[1]
{%\section*{\refname}% <--- outcommented
\@mkboth{\MakeUppercase\refname}{\MakeUppercase\refname}%
\list{\@biblabel{\@arabic\c@enumiv}}%
{\settowidth\labelw... 阅读全帖
T*******n
发帖数: 493
4
If your thesis is based on (or similar to) the standard book.cls, this is
how you do it:
\documentclass{book}
\makeatletter
\renewenvironment{thebibliography}[1]{%
\chapter{\bibname}%
\@mkboth{\MakeUppercase\bibname}{\MakeUppercase\bibname}%
\list{\@biblabel{\@arabic\c@enumiv}}%
{\settowidth\labelwidth{\@biblabel{#1}}%
\leftmargin\labelwidth
\advance\leftmargin\labelsep
\@openbib@code
\usecounter{enumiv}%
\let\p
l****u
发帖数: 4
5
多谢版主提示!
我把class文件删减了一下,以下是可以编译但仍存在问题的部分
问题可能在List of References部分
还请麻烦帮忙看一下,多谢!
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Defining Class options and loading required packages %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\RequirePackage{ifthen}[1996/08/02 v1.0m Standard LaTeX ifthen package (DPC)]
%% Declaring Options \& Initializing Flags
\newcommand{\QZ@ptsize}{}%%define a null command for font-size
\newcounter{QZ@ptcnt}%%define a ... 阅读全帖
V*********r
发帖数: 666
6
不要搞太花哨的。单栏,Sans-serif字体,整齐一些就行了。
贴个简单的模板
\documentclass[11pt]{article}
\usepackage[top=1in, bottom=1.2in, left=1in, right=1in]{geometry}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{xcolor}
\usepackage{tabularx}
\usepackage{marvosym}
\usepackage{verbatim} % for multiline comment blocks
\usepackage{etoolbox}
\usepackage[english]{babel}
\usepackage{setspace} %conflict with \usepackage{needspace}
\usepackage{enumitem}
\renewcommand{\rmdefault}{phv} % Arial
\renewcommand{\sfdefault}{phv} %... 阅读全帖
c**e
发帖数: 24
7
来自主题: Software版 - firefox 不能正常显示.shtml文件?
firefox 不能正常显示.shtml文件?打开的时候,所有的html tag 都会显示,比如打开
http://www.lifeweek.com.cn/2007-03-02/0005517848.shtml
显示如下:

三联生活周刊 - - - - www.lifeweek.com.cn




topMargin=0 vLink=#000000
T*******n
发帖数: 493
8
来自主题: TeX版 - About text width for one page

Try the minipage environment (you can optionally specify the
height), followed by a \clearpage if needed.
Try either minipage or \parbox, or define your own environment
using something like the following to make the special paragraph
indented 0.5 inch on both left and right sides (negative length will
make the paragraph wider than normal text width):
\newenvironment{specialpar}%
{\list{}{\setlength{\leftmargin}{0.5in}\setlength{\rightmargin}{0.5in}}\item
}%
{\endlist}
\begin{specialpar}
tex
T*******n
发帖数: 493
9
Here is another hack, probably more useful to those who are
familiar with the American Physical Society Physical Reviews
revtex4.cls template.
Save the following as rvtxwdeq.sty (RevTeX4 wide equation):
\let\wideeqn@outdent\@empty
\newenvironment{wideeqn@galley}{%
\list{}{%
\topsep \z@skip
\listparindent \parindent
\itemindent \parindent
\leftmargin \z@
\parsep \z@\@plus\p@
\wideeqn@outdent
\relax
}%
\item\relax
}{
\endlist
}%
\def\title@co
(共0页)