m******i 发帖数: 32 | 1 难道geometry 和 fancyhdr package 不能一起用到 IEEEtrans 模板下么? |
|
T*******n 发帖数: 493 | 2 Try \usepackage{fancyhdr}, and take a look at the
examples given in the user manual.
If you don't want to use fancyhdr (fancyhdr has a
few minor problems with line spacing calculations
which could clash with your font size change), you
will have to define a new page style or redefine
\ps@plain or \ps@headings. Try fancyhdr first.
Whatever you do, do not redefine the \thepage macro
to include any font information, especially if you
use hyperref. |
|
d**********o 发帖数: 1321 | 3 我与Emacs的不解情缘(9)
差不多去年暑假后回学期也学会了自己写macro,贴个前段时间做题时写过的写lc的模
板吧:M-x lc ENT :
(fset 'lc
[?# ?i ?n ?c ?l ?u ?d ?e ? ?< ?i ?o ?s ?t ?r ?e ?a ?m ?> return ?# ?i ?n
?c ?l ?u ?d ?e ? ?< ?v ?e ?c ?t ?o ?r ?> return ?# ?i ?n ?c ?l ?u ?d ?e ?
?< ?a ?l ?g ?o ?r ?i ?t ?h ?m ?> return ?# ?i ?n ?c ?l ?u ?d ?e ? ?< ?c ?s
?t ?r ?i ?n ?g ?> return ?# ?i ?n ?c ?l ?u ?d ?e ? ?< ?c ?m ?a ?t ?h ?>
return ?# ?i ?n ?c ?l ?u ?d ?e ? ?< ?s ?t ?a ?c ?k ?> return ?# ?i ?n ?c ?l
?u ?d ?e ? ?< ?q ?u ?e ?u ?e ?> retur... 阅读全帖 |
|
d**********o 发帖数: 1321 | 4 我与Emacs的不解情缘(9)
差不多去年暑假后回学期也学会了自己写macro,贴个前段时间做题时写过的写lc的模
板吧:M-x lc ENT :
(fset 'lc
[?# ?i ?n ?c ?l ?u ?d ?e ? ?< ?i ?o ?s ?t ?r ?e ?a ?m ?> return ?# ?i ?n
?c ?l ?u ?d ?e ? ?< ?v ?e ?c ?t ?o ?r ?> return ?# ?i ?n ?c ?l ?u ?d ?e ?
?< ?a ?l ?g ?o ?r ?i ?t ?h ?m ?> return ?# ?i ?n ?c ?l ?u ?d ?e ? ?< ?c ?s
?t ?r ?i ?n ?g ?> return ?# ?i ?n ?c ?l ?u ?d ?e ? ?< ?c ?m ?a ?t ?h ?>
return ?# ?i ?n ?c ?l ?u ?d ?e ? ?< ?s ?t ?a ?c ?k ?> return ?# ?i ?n ?c ?l
?u ?d ?e ? ?< ?q ?u ?e ?u ?e ?> retur... 阅读全帖 |
|
u**o 发帖数: 290 | 5 只想到用
\usepackage{fancyhdr}
\pagestyle{fancy}
可是引用fancyhdr package把每页都加上了header.
如果只想在第一页题目上方加上会议的logo和名称应该怎么办? 多谢高手指点. |
|
g*********r 发帖数: 124 | 6 用 fancyhdr 作两种不同的页面风格,下面是一个例子:
\documentclass{article}
\usepackage{fancyhdr,graphicx}
\fancypagestyle{first}{%
\fancyhf{}
\lhead{}
\chead{header \includegraphics[width=1cm]{pic.eps}}
% 此处引用 eps 格式的图片,需要先把 jpg 图片转化为 eps 格式
\rhead{}
\lfoot{}
\cfoot{\thepage}
\rfoot{}
\renewcommand{\headrulewidth}{0pt}
}
\fancypagestyle{reminder}{%
\fancyhf{}
\lfoot{}
\cfoot{\thepage}
\rfoot{}
\renewcommand{\headrulewidth}{0pt}
}
\begin{document}
\title{Title}
\author{Author
\maketitle |
|
t****e 发帖数: 69 | 7 我自己来回答吧,解决方案是fancyhdr + pictrue environment.
\usepackage{fancyhdr}
\usepackage{rotating}% to place text sideways
\setlength{\unitlength}{1in}
\fancyfoot[R]{%
\begin{picture}(0,0)
\put(0.5,5){\begin{sideways}My Text\end{sideways}}
\end{picture}%
}
比如 |
|
|
f*******l 发帖数: 8811 | 9 我现在碰到的问题挺奇怪。
usepackage里面有 fancyhdr,graphicx.
build不报错,不生成任何文件。
我把他们屏蔽掉,就可以生成pdf文件了。
我install了fancyhdr,现在不屏蔽这个package也可以了。
但是miktex manaager里面找不到graphicx这个包。
我上网查,这个包是graphics的扩展,但似乎已经包含在graphics里面了?
只有graphicx-psmin,graphicxsp.加了也不能用。
btw, 怎么生成的文件页面下部留有巨大空白,上面空白倒是不多。
我以前遇到过一些做得不好的pdf文件也有这种毛病。
是这个魔板有问题,还是我使用的不对? |
|
|
|
T*******n 发帖数: 493 | 12 Yes, you can use fancyhdr to disable the running header.
If you just want to have a shorter chapter just for the page header and TOC,
try this:
\chapter[Short Title]{The Very Very Long Chapter Title} |
|
a**e 发帖数: 5794 | 13 \usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead[LE,RO]{$\S\:$\leftmark} %双页左、单页右页眉设为章节
\fancyhead[LO,RE]{Alpha's MathNote} %单页左、双页右页眉
\fancyfoot[LE,RO]{\thepage} %双页左、单叶右页脚设为页码
\cfoot{} %中间页脚设为空
. |
|
J*******r 发帖数: 379 | 14 ☆─────────────────────────────────────☆
realguy (爱我所爱) 于 (Fri Jul 29 03:49:05 2005) 提到:
一直在想如何在论文的上方加上"to appear in the...."(比如在preprint的论文),好象
fancyheader的package可以做这个事情,但好象挺复杂(至少用起来不方便),所以一直没
有figure out出来。哪位兄弟帮忙贴一些sample code. 谢谢。
☆─────────────────────────────────────☆
xyct (洋葱头) 于 (Tue Aug 9 22:44:53 2005) 提到:
我是这么用的:
\documentclass{article}
\usepackage{fancyhdr}
\pagestyle{fancy}
\begin{document}
\fancyhf{}
\lhead{to appear in the....}
\rhead{My Name}
\rfoot{Page \thepage}
text. |
|
w****a 发帖数: 186 | 15 try the package fancyhdr |
|
|
T*******n 发帖数: 493 | 17
On Linux/Unix maybe "wc"? But this counts blank-separated
words in the entire file.
Try \usepackage{fancyhdr}, and then \thispagestyle{mypagestyle} when
you want a special page style.
I'm not sure how you would count how many words there are on
a page. For sure you would need to modify the output routines
in LaTeX, which means rewritting part of the LaTeX kernel. |
|
T*******n 发帖数: 493 | 18 In that case use the fancyhdr package. |
|
T*******n 发帖数: 493 | 19 Look in the definition of the environment "thebibliography".
It will either directly call \thispagestyle{...} or indirectly
call \thispagestyle{...} by calling a sectioning command such
as \chapter{...} or \chapter*{...}.
The easiest solution for you, if I understand your question correctly,
is to use the fancyhdr package, define a page style that you want for
the first page of you bibliography (to move the location of the page
number), and then either change \thispagestyle{...} in "thebibliogra |
|
f*****f 发帖数: 68 | 20 老板说要在header里放公司的logo图片。哪位大虾能指导一下怎么做吗?另外,我用
fancyhdr的package,header和footer在contents, list of figure, list of table
页以及各章第一页都没有。怎么能让header在这些页也出现呢?我用的是report class
。万分感谢! |
|
T*******n 发帖数: 493 | 21 Doesn't the user guide for fancyhdr explain how to do add figures in
headers? I remember it did.
table
class |
|
T*******n 发帖数: 493 | 22 Have you tried using fancyhdr.sty? |
|
l******n 发帖数: 9344 | 23 我用了\usepackage{fancyhdr}来产生header
最后用的
\begin{thebibliography}
\end{thebibliography}
来显示reference
有个问题是我最后显示reference的header不好,是
REFERENCE ******* REFERENCE
这样的(******是我最后一章的header)
REFERENCE那几个字怎么去掉?好像是bibliography自动加德的 |
|
f********o 发帖数: 2181 | 24 准备一个会议的final version
要作者在文章的每一页加上会议的名字, paper号
我用了fancyhdr package, 但是有两个问题:
1. foot的字体是10号, 会议要求12号
2. 第一页不出现这些信息
另外第一页还要加版权声明之类的, ieee conference 模版好像不支持thanks
有什么其他办法麽? 谢谢 |
|
g*********r 发帖数: 124 | 25 \usepackage{fancyhdr}
\pagestyle{fancy}
\fancyfoot[C]{\thepage} |
|
u**o 发帖数: 290 | 26 刚才发了一个,问题没有表述清楚, 重新问.
latex生成的pdf, 需要按规定在首页title上方加入一个word的header(文字和一个jpg
图片).
请问怎么解决好? 多谢多谢.
winedt里用fancyhdr package鼓捣半天, 还是每页都有header(只需要首页有header),
此外还不知道怎么引用jpg图片. btw, 我用的article的class.
pdf->word 公式格式又损失太多.
进退两难,望高手指教! |
|
b*******h 发帖数: 56 | 27 章节标题离顶部太远,用了无数命令还是不管用,以下为我尝试过的:
1,\oddsidemargin=.4in \textwidth=5.9in \topmargin=-0.5in \textheight=10.0in
\footskip=0.5in
2,\usepackage[left=1.3in, right=1.2in, top=1.0in, bottom=1.0in, includefoot
, headheight=-0.5pt, footskip=0.5in]{geometry}
3,\usepackage{fancyhdr}
\pagestyle{fancy}
\headheight=0pt \headsep=0pt
都解决不了这个问题,用的winEdt。
我又尝试了这个命令,
\usepackage[left=1.3in, right=1.2in, top=0.9in, bottom=1.0in, footskip=0.5in
]{geometry}
这里面的left,right,top,bottom footskip都管用,但是当我尝试加headheigh |
|
T*******n 发帖数: 493 | 28 Have you tried \usepackage{fancyhdr}? |
|
m******i 发帖数: 32 | 29 我用了这个package以后 页边距就变了
怎么会事那? |
|
z***i 发帖数: 8285 | 30 1,取消页码的latex命令是什么?貌似latex页码是自动生成的。
\pagestyle{empty}
如果只需要某页取消页码,可以用
\thispagestyle{empty}
如果需要其他headers, footers,只是不要页码,用 fancyhdr package。。
生成的pdf文件后,该如何做? |
|
a******5 发帖数: 313 | 31 导言区调用\usepackage{fancyhdr}\pagestyle{fancy},设置了页眉(header) 页脚(
footer)。
如果某一页只要页脚出现,或是只要页眉,该用什么命令?
谢谢。 |
|
z***i 发帖数: 8285 | 32 \documentclass[a4paper,11pt]{article}
\usepackage[latin1]{inputenc}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage[colorlinks=true]{hyperref}
\usepackage{colortbl}
\usepackage{hyperref}
\usepackage{extramarks}
\usepackage{fancyhdr}
\usepackage{color}
\usepackage{eso-pic}
\usepackage{ifpdf}
\usepackage{svgcolor}
\usepackage{booktabs}
\usepackage{amssymb}
\pagenumbering{arabic}
\hypersetup{urlcolor=blue}
\definecolor{light-gray}{gray}{0.86}
\setlength{\paperwidth}{597pt}
\setlength{\paperh... 阅读全帖 |
|
b*******t 发帖数: 33714 | 33 你的reference section的pagestyle是myheadings,页码就是在右上。前面应该默认是
plain,在底下正中。
如果reference section不需要特殊页眉页脚,就把那些清掉然后\pagestyle{
myheadings}改成\pagestyle{plain}
否则最容易是把前面也一起变成myheadings吧干脆都在右上
一定要页底正中,又要有header,另外加个package吧fancyhdr啊什么的
DPC)] |
|
|
a*********r 发帖数: 8 | 35 I tried fancyhdr, but it did not work. Thanks a lot, anyway. |
|
b********r 发帖数: 25 | 36 我们学校的毕业论文格式要求要把页码放在上边边页的中间。我用的是Latex。它的默
认格式没有这个选择。试了试
\usepackage{fancyhdr} 我能做到的最好的情形是:把页码房上边缘中间,但是下
面有一条线!
脑袋都要炸了!请大牛们指教!谢谢。 |
|