用Dynalist辅助写作

一句话概括使用方法:

  • 任意书写软件➕Dynalist在一侧作为大纲软件
  • 优势:跨平台一致的使用体验,同时兼顾好看
    1、如果您觉得不错,麻烦用推荐链接注册一下,感恩,好软件共分享。https://dynalist.io/invite/nsYfXg
    2、美化方法:pro账户下,setting——Custom CSS复制粘贴上述代码到框里去,空白处点一下自动保存。

正文

  • 为什么需要目录软件?
  • 目录软件的优势解析
  • Dynalist模版分享:

为什么需要目录软件?

目录软件有些独特的优势,比如随时可以查阅的大纲,用于控制进度的控制条,方便的版本记录。这些相较于书写软件优势是极大的,比如我在iPad上的书写状态就是【下图】,在iPad pro 11寸下,双屏,Mweb占三分之二、Dynalist占三分之一。

目录软件的优势解析

废话少说先上图:为什么是Dynalist不是其他,这里可以看到区别!


15450567537592.jpg
  • 每个条目有三个维度的控制:Label、Tags、Time

  • Label对应的快捷键是:Alt+R/Y/G/B/P/D(红、黄、绿、蓝、紫、黑),我常用的只有四色:红、黄、绿、灰、清除。(对应的快捷键改成^+1~5Dynalist的Pro账户支持CSS定义,我把它改成了现在的样子,如下图:


    15461769339157.jpg
  • 这个好处就是,每次只要打开就能知道整个文章或者回顾推进到哪一步了。

  • 红色标:优先完成当下写作的章节

  • 绿色标&时间:完成的章节及完成时间

  • 橙色表:近期重要章节

  • 灰色标:待推进

  • Tags对应有两种方式实现,一个是@、一个是#,@可以用来对应人或者时间或者优先级,比如Weekly(周)、Monthy(月)、Yearly(年)等。Tags和Label的不同在于,标签是可以跨文档的,在Dynalist中可以实现跨文档整理资料(以后再总结)。#可以用来标记属性,比如情绪、思考、清单、回顾等等。

  • Time的快捷输入方法是:!(),有些人可以用来做时间管理,但是这里我用来做版本记录,比如生成第一稿的时间。

  • 用内链功能实现目录页(这个也是其他软件媲美不了的地方,下次再说)

Dynalist模版分享:

15461773186734.jpg

个人觉得优点如下:

  • 模版跨平台完美支持,iPad、iPhone X、Mac、网页端均显示一直的效果
  • 对任务样式也进行了定义
  • 对#、@标签进行了缩小,视觉上舒服
  • 自定义了六个特殊标签:如下图,分别用来区分重要性(⭐️)和紧急性(‼️)两个维度

最后附上CSS代码(dynalist界面自定义为pro功能):

/* Fix the redo button position in the mobile version. */
/* (Not that useful, as the only option to use it is mobile Firefox with the Stylus extension, and it's really slow.) */
.MobileHeader-optionContainer .MobileHeader-option--undo {
    right: 175px;
}


  /*     文章标题        */

  .Node.is-currentRoot > .Node-self
  {
    font-weight: 900;
    /* box-shadow: 10px 10px 5px #888888; */
    /*   font-size:40px; 测试有宽度,但是无效*/
    /*   font-size:10em;测试有宽度,但是无效*/
    text-align:center;
    text-shadow: 2px 2px 10px #d3d3d3;
    border-bottom:thick double #FF7F50;
    text-overflow:ellipsis;
  }


/* 设置   段落标题   颜色 */
.is-largeFont .Node-self.is-heading1 .Node-contentContainer 
{
  font-size: 26px;
  text-align:center;
  text-shadow: 2px 2px 10px #d3d3d3;
  color:#4682B4;
}

.is-largeFont .Node-self.is-heading2 .Node-contentContainer 
{
  font-size: 22px;
  color:#4682B4;
}

.is-largeFont .Node-self.is-heading3 .Node-contentContainer 
{
  font-size: 20px;
  color:#4682B4;
}


/* 更改标签条颜色 Color  1,2,3,4,5,6*/
  .Node-contentContainer.has-color
  {
    position: relative;
  }

  .Node-contentContainer.has-color::before
  {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: -4px;
    width: 10px;
    height: 100%;
    background-color: white;
  }

 .Node-contentContainer.mod-color-label-1,
.Node-contentContainer.mod-color-label-2, 
.Node-contentContainer.mod-color-label-3,
.Node-contentContainer.mod-color-label-4,
.Node-contentContainer.mod-color-label-5,
.Node-contentContainer.mod-color-label-6
  {
    background-color: transparent;
    text-indent: 6px /*设置色标的文字偏移*/
  }

  .Node-contentContainer.mod-color-label-1::before
  {
    background-color: #ff0000;
  }

  .Node-contentContainer.mod-color-label-2::before
  {
    background-color: #FFA500;
  }

  .Node-contentContainer.mod-color-label-3::before
  {
    background-color: #ff9124;
  }

  .Node-contentContainer.mod-color-label-4::before
  {
    background-color: green;
  }

  .Node-contentContainer.mod-color-label-5::before
  {
    background-color: #0085ff;
  }

  .Node-contentContainer.mod-color-label-6::before
  {
    background-color: gray;
  }



/* item bulletpoints 设置bullet那个黑点的颜色,测试通过,改为蓝色*/
  .Node-bullet:before
  {
    font-size: 14px !important;
  }

/* hyperlinks 超链接样式*/
  .node-link
  {
  /* Formatting done just as in Discourse. */
    word-wrap: break-word !important;
    color: #4169E1 !important;
    cursor: pointer !important;
    background: transparent !important;
    text-decoration:underline
  }
   /* 内链款式*/
    a[href^="https://dynalist.io"]
  {
    color: green !important;
    box-sizing: border-box !important;
    font-weight: bold;
  }


  /* #tags and @tags mouse-over highlighting 标签移动上去的高亮样式*/
  .node-tag:hover
  {
    background-color: #363636 !important;
    color: white !important;
  }



/* 自定义标签开始   .node-tag[title~="#"]*/
/*设置全局标签( # )效果*/
  .node-tag[title*="Filter #"]
  {
    background: transparent !important;
    color: gray !important;
    font-style: italic !important;
    text-decoration: underline !important;
    font-size: 16px;
  }
/*设置全局标签( @ )效果*/
    .node-tag[title*="Filter @"]
  {
    background: transparent !important;
    color: gray !important;
    font-style: italic !important;
    text-decoration: underline !important;
    font-size: 16px;
  }
  .node-tag[title~="#★★★"]
  {
    background: transparent !important;
    color: red !important;
    font-style: italic !important;
    text-decoration: underline !important;
  }
    .node-tag[title~="#★★"]
  {
    background: transparent !important;
    color: #FF8C00 !important;
    font-style: italic !important;
    text-decoration: underline !important;
  }
      .node-tag[title~="#★"]
  {
    background: transparent !important;
    color: green !important;
    font-style: italic !important;
    text-decoration: underline !important;
  }
    .node-tag[title~="#!!!"]
  {
    background: transparent !important;
    color: red !important;
    font-weight: bold !important;
    text-decoration: underline !important;
  }
    .node-tag[title~="#!!"]
  {
    background: transparent !important;
    color: #FF8C00 !important;
    font-weight: bold !important;
    text-decoration: underline !important;
  }
      .node-tag[title~="#!"]
  {
    background: transparent !important;
    color: green !important;
    font-weight: bold !important;
    text-decoration: underline !important;
  }
  /*测试:标签为任务*/
    .node-tag[title="is:checklist"]
  {
    background: transparent !important;
    color: green !important;
    font-weight: bold !important;
    text-decoration: underline !important;
  }

  /* 任务列表完成时候的样式*/
  .Node.is-checked .Node-checkbox, .Node.is-checked .Node-content, .Node.is-checked .Node-renderedContent, .Node.is-checked .Node-note, .Node.is-checked .Node-renderedNote
  {
    opacity: .5;
    color: blue;
  } 
/* 设置任务列表*/
  .Node.is-checklist
  {
    color: blue !important;
  }


/* 设置纵向连接线 */
  .Node.is-currentRoot .Node .Node-children
  {
    border-left: 1.1px dashed gray !important;
  }
/* 设置所有“点”的可见性*/
  .Node.is-currentRoot .Node .Node-bullet:before
  {
    visibility: visible;
  }

  /* Displays Any Collapsed bulletpoint */
  .Node.is-currentRoot .Node .is-collapsed>.Node-bullet:before
  {
    color:  #FF7F50; /*设置成橙色,等于告知下面一层有东西*/
    visibility: visible;
  }

  /* Override 2nd bulletpoint in current view */
  .Node.is-currentRoot .Node .Node .Node-bullet:before
  {
    visibility: visible;
    font-size: 14px;
  }

  /* Overrides 3rd Bulletpoint in current view */
  .Node.is-currentRoot .Node .Node .Node .Node-bullet:before
  {
    visibility: visible;
  }

1、如果您觉得不错,麻烦用推荐链接注册一下,感恩,好软件共分享。https://dynalist.io/invite/nsYfXg
2、美化方法:pro账户下,setting——Custom CSS复制粘贴上述代码到框里去,空白处点一下自动保存。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 225,151评论 6 523
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 96,465评论 3 405
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 172,429评论 0 368
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 61,147评论 1 301
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 70,149评论 6 400
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 53,614评论 1 315
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 41,965评论 3 429
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 40,950评论 0 279
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 47,486评论 1 324
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 39,524评论 3 347
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 41,640评论 1 355
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 37,228评论 5 351
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 42,976评论 3 340
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 33,407评论 0 25
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 34,552评论 1 277
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 50,215评论 3 381
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 46,714评论 2 366

推荐阅读更多精彩内容