當前位置:首頁 » 網路管理 » 頁眉頁腳怎麼刪除wps
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

頁眉頁腳怎麼刪除wps

發布時間: 2022-07-25 00:43:17

⑴ wps怎麼刪除頁眉只留頁腳

方法/步驟:

1、首先我們要做的是打開電腦中WPS這個程序,不是word,大家要記住,不要搞混。

⑵ WPS中Word的頁眉頁腳怎麼刪除

方法一:在頁面布局(頁面設置),版式中,將頁眉頁腳邊界設為0;頁邊距中,將上下頁邊距設為0。
方法二:雙擊頁眉頁腳處,頁眉頁腳進入編輯狀態,這時點鍵盤上的Delete鍵就行了。

方法三:選擇“插入”選項卡中的“頁眉和頁腳”,也可以進入其編輯狀態,這時就可以使用編輯鍵修改和刪除了。

方法四:選擇“插入”選項卡中的“頁眉和頁腳”刪除內容,點選最右邊的關閉按鈕,頁眉頁腳將不顯示。

⑶ wps文檔怎麼刪除頁眉頁腳

您好,1.我們首先在電腦上打開wps。
wps怎麼刪除頁眉頁腳第1步
2.然後點擊菜單欄中的插入。
3.隨後點擊頁眉和頁腳。
4.刪除頁眉頁腳中的內容。
5.鈕就可以刪除頁眉和頁腳。

⑷ wps文檔頁眉頁腳怎麼刪除

  • 首先右擊打開將要刪除頁眉和頁腳的文檔

⑸ wps頁眉怎麼刪除頁眉

除去wps頁眉方法: 方法一:雙擊頁眉頁腳處,頁眉頁腳進入編輯狀態,這時點鍵盤上的Delete鍵就行了。

方法二:選擇「插入」選項卡中的「頁眉和頁腳」,也可以進入其編輯狀態,這時就可以使用編輯鍵修改和刪除了。方法三:選擇「插入」選項卡中的「頁眉和頁腳」點選最右邊的關閉按鈕,頁眉頁腳將不顯示。

⑹ wps的文檔怎麼去掉頁眉頁腳

  • 首先在電腦上打開WPS文字軟體並新建一個空白文檔,如下圖所示。

  • 點擊上方菜單里的【插入】功能鍵,在下方功能選項里可以看到【頁眉和頁腳】選項,如下圖所示。

⑺ wps怎樣刪除某一頁的頁眉頁腳

工具:

word

方法如下:

步驟一:用WPS打開要處理的文檔,選擇想要處理的頁面,就是將游標放到該頁面。這里設置了三個具有相同頁眉的頁面,將刪除第二頁的頁眉。

⑻ WPS文檔怎麼批量或者全部刪除掉文件的頁眉和頁腳

批量刪除word文檔的頁眉頁腳,可以用下面的vba程序來實現,需要注意的是,在批量操作前,先做好備份。
Sub 批量刪除文件夾裡面所有Word文檔的頁眉頁腳()
Dim Fdlg As FileDialog, Fl
Dim Fso, Fld, Fln, Wk
Set Fdlg = Application.FileDialog(msoFileDialogFolderPicker)
With Fdlg
.Title = "選擇要處理目標文件夾" & "——(刪除裡面所有Word文檔的頁眉頁腳)"
If .Show = -1 Then
MyPath = .SelectedItems(1)
Else
Exit Sub
End If
End With
Set Fso = CreateObject("Scripting.FileSystemObject")
Set Fld = Fso.GetFolder(MyPath)
Set Fln = Fld.Files
For Each Wk In Fln
Set myDoc = Documents.Open(FileName:=Fld & "\" & Wk.Name)
If ActiveWindow.View.SplitSpecial <> wdPaneNone Then
ActiveWindow.Panes(2).Close
End If
If ActiveWindow.ActivePane.View.Type = wdNormalView Or ActiveWindow. _
ActivePane.View.Type = wdOutlineView Then
ActiveWindow.ActivePane.View.Type = wdPrintView
End If
ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageHeader
Selection.WholeStory
Selection.Delete Unit:=wdCharacter, Count:=1
Selection.WholeStory
With Selection.ParagraphFormat
.Borders(wdBorderLeft).LineStyle = wdLineStyleNone
.Borders(wdBorderRight).LineStyle = wdLineStyleNone
.Borders(wdBorderTop).LineStyle = wdLineStyleNone
.Borders(wdBorderBottom).LineStyle = wdLineStyleNone
With .Borders
.DistanceFromTop = 1
.DistanceFromLeft = 4
.DistanceFromBottom = 1
.DistanceFromRight = 4
.Shadow = False
End With
End With
With Options
.DefaultBorderLineStyle = wdLineStyleSingle
.DefaultBorderLineWidth = wdLineWidth075pt
.DefaultBorderColor = wdColorAutomatic
End With
If Selection.HeaderFooter.IsHeader = True Then
ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageFooter
Else
ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageHeader
End If
Selection.WholeStory
Selection.Delete Unit:=wdCharacter, Count:=1
ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument
Selection.Sections(1).Footers(1).PageNumbers.Add PageNumberAlignment:= _
wdAlignPageNumberRight, FirstPage:=True
' 以上可以換成是你自己錄制的宏
' C公共部分的代碼
Application.DisplayAlerts = False '強制執行「是」
'ActiveDocument.Saved = True'強制執行「否」
ActiveDocument.Close '退出
Next

End Sub