\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. CentOS7系列搭建Openvpn

    环境:CentOS Linux release 7.3.1611 (Core) 查看os版本命令:[root@openvpn ~]# cat /etc/redhat-release 命令记录如下: y ...

  2. centos7 升级python2.7 到python3.6(Centos7 安装Anaconda)

    Anaconda 下载 https://www.anaconda.com/download/#linux 下载文件 Anaconda3-5.2.0-Linux-x86_64.sh bash Anaco ...

  3. chm 文件生成器

    1.看云:官网 https://www.kancloud.cn/price 价格如下:

  4. fiddler 抓取 逍遥安卓模拟器 https包

    1.打开fiddler,进行相关设置 Tools--Fiddler Options 接下来进行客户端网络配置 1 查看电脑ip地址,ipconfig 逍遥游模拟器中使用自带的浏览器,访问192.168 ...

  5. Hibernate 序列生成主键

    @Entity @Table(name="TABLE_NAME") public class TableName implements Serializable { @Id @Ge ...

  6. LuoguP1226 【模板】快速幂||取余运算

    题目链接:https://www.luogu.org/problemnew/show/P1226 第一次学快速幂,将别人对快速幂原理的解释简要概括一下: 计算a^b时,直接乘的话计算次数为b,而快速幂 ...

  7. 如何使用eclipse搭建maven环境以及常见的错误

    这篇博客适合零基础学习maven,搭建maven以及运行项目,常见的错误,我会在结尾写出说明白,看是否和大家的错误一样,或者文章的括号注释部分也会写出一些注意点. 第一步:就是下载maven,以及配置 ...

  8. Spring Boot中使用Websocket搭建即时聊天系统

    1.首先在pom文件中引入Webscoekt的依赖 <!-- websocket依赖 --> <dependency> <groupId>org.springfra ...

  9. label文字从左上角开始

    import UIKit class TextUpperLeftLabel: UILabel { override func textRect(forBounds bounds: CGRect, li ...

  10. php Pthread 多线程 (一) 基本介绍

    我们可以通过安装Pthread扩展来让PHP支持多线程.   线程,有时称为轻量级进程,是程序执行的最小单元.线程是进程中的一个实体,是被系统独立调度和分派的基本单位,线程自己不拥有系统资源,它与同属 ...