IAMROOT.ORG 위키 plug-in 추가(update: 2013.11.22)

조성진 2013.07.14 23:54 조회 수 : 6515 추천:2


위키의 가독성을 높이고, 더 효율적인 작업을 위해 plug-in을 추가하였습니다.


dokuwiki 자체를 처음써보는 거라서 아직 미숙하지만, 차근차근 update 하겠습니다.


필요한 plug-in이 있으면 언제든지 댓글이나, 쪽지 주세요.





8. syntaxhighlighter3(2013.11.22)

   - 특징: code highlighter

   - plugin 주소:https://www.dokuwiki.org/plugin:syntaxhighlighter3

   - 사용방법: <sxh> code </sxh>   ※ 자세한 문법은 위 주소를 참고해 주세요.

   - Example

     <sxh c; highlight: [5]>

     void __init setup_arch(char **cmdline_p)sdds

     {       

             struct machine_desc *mdesc;

             

             setup_processor();

             mdesc = setup_machine_fdt(__atags_pointer);

             if (!mdesc)

                     mdesc = setup_machine_tags(__atags_pointer, __machine_arch_type);

             machine_desc = mdesc;

             machine_name = mdesc->name;

     

             setup_dma_zone(mdesc);

             

             if (mdesc->reboot_mode != REBOOT_HARD)

                     reboot_mode = mdesc->reboot_mode;

                        

             init_mm.start_code = (unsigned long) _text;

             init_mm.end_code   = (unsigned long) _etext;

             init_mm.end_data   = (unsigned long) _edata;

             init_mm.brk        = (unsigned long) _end;

     </sxh>


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
void __init setup_arch(char **cmdline_p)sdds
{      
        struct machine_desc *mdesc;
         
        setup_processor();
        mdesc = setup_machine_fdt(__atags_pointer);
        if (!mdesc)
                mdesc = setup_machine_tags(__atags_pointer, __machine_arch_type);
        machine_desc = mdesc;
        machine_name = mdesc->name;
 
        setup_dma_zone(mdesc);
         
        if (mdesc->reboot_mode != REBOOT_HARD)
                reboot_mode = mdesc->reboot_mode;
                    
        init_mm.start_code = (unsigned long) _text;
        init_mm.end_code   = (unsigned long) _etext;
        init_mm.end_data   = (unsigned long) _edata;
        init_mm.brk        = (unsigned long) _end;
         
        return 0;



7. mathjax(2013.08.19)

   - 특징: 수식표현

   - plugin 주소:https://www.dokuwiki.org/plugin:mathjax

   - 사용방법: ※ 자세한 문법은 위 주소를 참고해 주세요.

   - Example

      $a^2 + b^2 = c^2$

      (1+2+dots+n=frac{n(n+1)}{2})  

      $$ frac{d}{dx}left( int_{0}^{x} f(u),duright)=f(x) $$

      [ sin A cos B = frac{1}{2}left[ sin(A-B)+sin(A+B) right] ]


mathjax.png



6. box(2013.08.19)

   - 특징: 다양한 box 생성

   - plugin 주소:https://www.dokuwiki.org/plugin:box

   - 사용방법: <box> 문법 </box>         ※ 자세한 문법은 위 주소를 참고해 주세요.

   - Example

      <box> iamroot </box>

      <box 80% round orange|a title> iamroot</box>

      <box 50% left blue>iamroot</box|a caption>

      <box 60% round #f99 #fc9 #fcc #f60|title>iamroot</box|caption>

iamroot

a title

iamroot
iamroot

a caption

title

iamroot

caption



5. typography(2013.08.19)

   - 특징: font 크기, 장평, 자간 등 설정

   - plugin 주소:https://www.dokuwiki.org/plugin:typography

   - 사용방법: <typo> 문법 </typo>         ※ 자세한 문법은 위 주소를 참고해 주세요.

   - Example

      <typo fv:smallcaps;>iamroot</typo>

      <typo fs:30px;>iamroot</typo>

      <typo lh:50px;>iamroot</typo> 

      <typo ls:20px;>iamroot</typo> 

      <typo ws:40px;>iam root</typo>


     iamroot 

  iamroot 

     iamroot 

 iamroot

 iam root




4. wrap(2013.07.18)

   - 특징: 여러가지 꾸밈 기능을 합쳐놓은 universal plugin(하이라이트, 박스, 정렬 등)

   - plugin 주소:https://www.dokuwiki.org/plugin:wrap

   - 사용방법: <WRAP> 문법 </WRAP>         ※ 자세한 문법은 위 주소를 참고해 주세요.

   - Example

      1) 툴바에 중요기능은 다 있으니 그거 쓰세요~

      2) <wrap hi>iamroot</wrap>

        iamroot

          <WRAP center round info 60%> iamroot </WRAP>

          <WRAP center round tip 60%> iamroot </WRAP>

          <WRAP center round important 60%> iamroot </WRAP>

iamroot

iamroot

iamroot


3. refnotes(2013.07.18)

   - 특징: reference 및 note의 모양변경, multiple reference, page 별 다른 reference 지정 가능 등

   - plugin 주소:https://www.dokuwiki.org/plugin:refnotes

   - 사용방법: [(reference name)]         ※ 자세한 문법은 위 주소를 참고해 주세요.

   - Example

     1) 각 page의 아무곳에서 reference 설정 define

         <refnotes>

    refnote-id       : 1

    reference-format : []

       note-id-format   : []

    note-id-base     : text         

   </refnotes>
   
     2) Multiple reference
         iamroot[(iamroot.org)]
         arm linux kernel[(#1)]
      
       refnotes.png
       

2. plantuml+graphviz(2013.07.15)

   - 특징: sequence diagram, use case diagram등 UML diagram 작성 가능

   - plugin 주소: https://www.dokuwiki.org/plugin:plantuml

   - 사용방법: <uml> 문법 </uml>        ※ 자세한 문법은 위 주소를 참고해 주세요.

   - Example

     <uml>

        Alice -> Bob: Authentication Request

        Bob --> Alice: Authentication Response


        Alice -> Bob: Another authentication Request

        Alice <-- Bob: another authentication Response

      </uml>

      

        PlantUML Graph





1. fontcolor(font 색 변경, 2013.07.14)

   - 특징: 글자 색 변경  

   - plugin 주소: https://www.dokuwiki.org/plugin:fontcolor

   - 사용방법: <fc color> text </fc> 

   - Example

      1) 툴바를 이용해서 지정된 색 변경 가능

      2) R,G,B값을 수동으로 입력하는 경우

        <fc #ff0000> iamroot </fc>

         iamroot

        <fc #00ff00> iamroot </fc>

         iamroot

        <fc #0000ff> iamroot </fc>

         iamroot

      3) 미리 지정된 color를 입력하는 경우

        <fc red> iamroot </fc>  

         iamroot

        <fc lime> iamroot </fc>

         iamroot

        <fc yellow> iamroot </fc>

         iamroot

번호 제목 글쓴이 날짜 조회 수
공지 [공지] 강좌, 팁, 정보등에 대해 올리는 게시판입니다. woos 2016.04.09 246
129 제3회 ETRI 휴먼이해 인공지능 논문경진대회 file 인공지능팩토리1 2024.04.22 18
128 KVM 소스코드를 수정하고자 합니다. [1] 두두 2024.04.20 29
127 [딥러닝러닝데이] AutoML을 활용한 모델 탐색-서호건 file 인공지능팩토리1 2024.01.11 92
126 [랭체인러닝데이] 개인 데이터셋을 통한 llama2 fine-tune - 최재혁 file 인공지능팩토리1 2024.01.05 63
125 [SD러닝데이] 광고에서의 생성 AI 활용 실무사례 모음집 file 인공지능팩토리1 2023.12.07 43
124 [챗GPT 러닝데이] 개발자에게 부탁하기 두려웠던 나머지...(더보기) file 인공지능팩토리1 2023.11.02 74
123 [2023 제3회 K-water AI 경진대회] 어종(魚種) 식별 및 분류 알고리즘 개발 file 인공지능팩토리1 2023.10.25 41
122 제4차 USG AI·데이터 문제해결 제조혁신 경진대회 file 인공지능팩토리1 2023.10.25 17
121 [SD러닝데이] 디자이너의 영상&3D에서의 AI 활용 실전 워크플로우 file 인공지능팩토리1 2023.10.17 17
120 [리눅스 커널 강의] 커널 코어 분석 공유 [1] 이파란 2023.10.11 130
119 [챗GPT 러닝데이 세미나] 사랑의 컨설턴트 챗GPT(챗GPT를 활용한 연애상담) file 인공지능팩토리1 2023.10.05 28
118 [Github] 경로 또는 이름이 바뀐 파일 추적 기능 공유 file 이파란 2023.08.23 60
117 무료세미나 음성 챗봇 만들기와 마이크로소프트 ISV 혜택 및 등록팁 방출! 인공지능팩토리 2023.07.26 23
116 2023 제1회 철도 인공지능 경진대회 인공지능팩토리 2023.07.24 22
115 제2회 통신망 안정성 확보를 위한 인공지능 해커톤 인공지능팩토리 2023.07.21 10
114 무료세미나 - [SD러닝데이] AI야 배경 좀 그려줘 인공지능팩토리 2023.07.13 29
113 [무료세미나] SAM(Segment Anything Model)과 친해지기 인공지능팩토리 2023.07.06 42
112 [경진대회] 2023 AI 대학원 챌린지 with kt 믿:음 ~ 7월 23일(일) 인공지능팩토리 2023.07.05 29
111 [무료세미나] - SD러닝데이 Knock Knock. "Stable Diffusion? 인공지능팩토리 2023.06.30 22
110 위성영상을 활용한 정유탱크·컨테이너 탐지 AI 경진대회 인공지능팩토리 2023.06.22 29
XE Login