\documentclass{article} \usepackage{geometry} \geometry{hmargin=1cm,vmargin=1cm} \usepackage{tikz} %%%< \usepackage{verbatim} \usepackage[active,tightpage]{preview} \PreviewEnvironment{tikzpicture} \setlength{\PreviewBorder}{10pt}% %%%> \begin{comment} \end{comment} \def\width{} \def\hauteur{}

\begin{document}

\begin{tikzpicture}[x=1cm, y=1cm, semitransparent] \draw[step=10mm, line width=.2mm, black!!white] (,) grid (\width,\hauteur);

\draw(,)--(,)--(,)--(,)[fill=gray];

\draw(,)--(,)--(,)--(,)[fill=gray];

\draw[line width=.3mm,black!!white](,)--(,)--(,)--(,)--(,); \draw[line width=.3mm,black!!white](,)--(,)--(,)--(,)--(,); \draw[line width=.3mm,black!!white](,)--(,)--(,)--(,)--(,);

\draw[line width=.3mm,black!!white](,)--(,)--(,)--(,)--(,); \draw[line width=.3mm,black!!white](,)--(,)--(,)--(,)--(,); \draw[line width=.3mm,black!!white](,)--(,)--(,)--(,)--(,);

\node[inner sep=,anchor=east,text width=.3cm] (note1) at (3.2,) {   \qquad\quad \qquad \Huge{B} };

\node[inner sep=,anchor=east,text width=.3cm] (note2) at (10.5,3.5) {   \Huge{C} };     \node[inner sep=,anchor=east,text width=.3cm] (note3) at (8.5,8.5) {   \Huge{A} };

\node[inner sep=,anchor=east,text width=.3cm] (note1) at (16.2,) {   \qquad\quad \qquad \huge{B} };

\node[inner sep=,anchor=east,text width=.3cm] (note2) at (,) {   \huge{C} };

  \node[inner sep=,anchor=east,text width=.3cm] (note3) at (,) {   \huge{A} };

 \node[inner sep=,anchor=east,text width=.3cm] (note3) at (7.5,0.5) {   \Huge{(II)} };

 \node[inner sep=,anchor=east,text width=.3cm] (note3) at (17.7,) {   \Huge{(I)} };   \end{tikzpicture}

\end{document}

ggdl的更多相关文章

  1. 使用Selenium+appium进行App测试

    1. 启动安卓虚拟机.

  2. [517]Kite 题解

    前言 今天又是爆零的一天. 被同学坑了,还以为四边形的点是按任意序给定的,然后打了一个特别复杂的矩形判断QAQ. 题意简述 按顺序给定一个四边形,求有多少个点在这个四边形的对称轴上. 题解 分情况讨论 ...

随机推荐

  1. ==、is

    ==.is 总结 is 是比较两个引用是否指向了同一个对象(引用比较). == 是比较两个对象的值是否相等(值比较).

  2. Linux运维就业技术指导(九)期末架构考核

    一,毕业架构设计考核筹备 1.1,架构图模板示例 1.1.1 架构图(一)概述 本架构是4层lvs负载均衡给后方7层nginx反向代理: 业务进行了动静分离: 数据库前端有memcached缓存组,降 ...

  3. logging的使用

    [logging的使用] import logging # 创建一个logger logger = logging.getLogger('mylogger') logger.setLevel(logg ...

  4. Cache Server

    [Cache Server] Whenever a source Asset like a .psd or an .fbx file is modified, Unity detects the ch ...

  5. 在制MO未取到FP2

    描述:工单被过滤掉 IN_SFCHEADER表数据被删除掉 备份表监控可见数据是有写入IN_SFCHEADER表 删除前会将数据写入IN_SFCHEADER_TEMP表,发现物料编码是带了一个尾续CZ ...

  6. gis笔记 wms wfs等OGC标准

    WFS 和WMS的区别 WFS是基于地理要素级别的数据共享和数据操作,WFS规范定义了若干基于地理要素(Feature)级别的数据操作接口,并以 HTTP 作为分布式计算平台.通过 WFS服务,客户端 ...

  7. 解决 Ubuntu 下 sudo 命令执行速度慢的问题

    1.首先如果当用登录的用户名不在"/etc/sudoers"文件中,是不能执行sudo命令的.可以用root身份手动修该文件,把当前登录用户名加入该文件中. 2.用"ho ...

  8. [SoapUI] 获取当前时间包括年月日时分秒来作为命名

    import java.text.SimpleDateFormat GregorianCalendar calendar = new GregorianCalendar() def dateForma ...

  9. lnmp vhost 虚拟目录配置

    以前常用Windows 很熟悉,lnmp 配置虚拟目录也很简单. 安装完lnmp环境之后,在nginx的配置文件夹下,我采用的方法是复制default.conf 然后重命名为vhost_a.conf ...

  10. dotnet core 发布环境变量配置 dev/stage/prod

    https://docs.microsoft.com/zh-cn/aspnet/core/fundamentals/environments?view=aspnetcore-2.2 https://d ...