对于word中需要插入大量类型相似的图片,使用excel插入图片、标题、题注等内容是非常方便的,先使用excel编辑好各个图片对应的标题、题注。 excel中工作表第一列为图片的标题,第二列为图片路径。如下图所示: 使用alt+F11快速进入宏(VBA)编辑框,VBA代码如下,主要修改循环的行数(F ...
分类:
其他好文 时间:
2021-01-11 10:37:56
阅读次数:
0
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> 标题页 dfad sfdaaaaadsfaaaaaafdasfasdfaaaaadfssadsfdasfsafsadfasdf ...
分类:
其他好文 时间:
2021-01-08 11:21:31
阅读次数:
0
let status=1; switch (status) { case 1: console.log("status为1的时候你将做的事"); break; case 2: console.log("status为2的时候你将做的事"); break; case 3: console.log("s ...
分类:
其他好文 时间:
2021-01-08 11:19:20
阅读次数:
0
: "${LOG_FILE:=/var/log/factory_install.log}" Shell Parameter Expansioin ${parameter:=word} If parameter is unset or null, the expansion of word is as ...
分类:
其他好文 时间:
2021-01-08 10:44:41
阅读次数:
0
package main import ( "fmt" "reflect" ) type Reflect struct { Name string `json:"name" test:"tag"` PassWord string Three int } func (m Reflect)Hello(v ...
分类:
其他好文 时间:
2021-01-07 12:35:17
阅读次数:
0
环境: python 3.7.4 win 10 模块: flask 1.1.2 Flask-WTF 0.14.3 资料文档: 官网:https://flask-wtf.readthedocs.io/en/stable/ 辅助网站:http://wtforms.simplecodes.com/docs ...
分类:
其他好文 时间:
2021-01-06 12:35:58
阅读次数:
0
统计单词频率 import java.util.*; public class test { public static void main(String[] args) { final String speech = "It was the best of times, it was the wo ...
分类:
其他好文 时间:
2021-01-06 12:31:58
阅读次数:
0
原生页面的基本应用 <!DOCTYPE html><html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <ti ...
分类:
其他好文 时间:
2021-01-06 12:16:26
阅读次数:
0
JAVA 实现: class Trie { private Node head; /** * Initialize your data structure here. */ public Trie() { this.head = new Node(); } /** * Inserts a word ...
分类:
其他好文 时间:
2021-01-06 12:15:16
阅读次数:
0
第1章 - 项目介绍和工程搭建 学习目标: 了解十次方项目需求; 了解前后端分离开发模式 理解RESTful 完成项目开发环境搭建 完成父工程、公共模块和文章微服务的搭建 掌握mybatis plus的使用,并开发完成文章微服务中文章的增删改查功能 掌握公共异常处理类的使用 1 十次方项目需求分析 ...
分类:
其他好文 时间:
2021-01-06 12:07:21
阅读次数:
0