MS Word에서 두 문서 비교하기 (버전 비교)

Skills 2015. 8. 10. 13:20

가끔 문서 작업을 하다보면, 자주 수정하게 되어 버전 관리를 한다거나 혹은 여러 명이 수정을 거치게 되는 경우가 있다. 

그 때 유용한 기능이 있음.

MS Word의 리본메뉴 중 검토 메뉴의 하위 메뉴 중에서 아래 붉게 네모친 곳을 보면 "비교" 라는 것을 볼 수 있다. 


이것을 눌러보면 아래 그림처럼 두 문서의 변경 내역을 한 눈에 검토할 수 있다. (엄청나게 편리하다!!)

사용 방법은 "비교" 버튼을 눌러보면 너무나 쉽게 알 수 있기 때문에 생략하기로 한다.



설정

트랙백

댓글

ROS 사용기 - Eclipse 설치하고 desktop launch 설정하기

Research 2015. 7. 23. 17:29

In Ubuntu 14.04 LTS !

1. Install Java

$ sudo apt-get install openjdk-7-jre


2. Download Eclipse according to your system


3. Extract the file & move it to /opt/


4. create a new desktop file

$ sudo gedit /usr/share/applications/eclipse.desktop

 *copy following lines*

[Desktop Entry]

Name=Eclipse 

Type=Application

Exec=env UBUNTU_MENUPROXY= /opt/eclipse/eclipse 

Terminal=false

Icon=/opt/eclipse/icon.xpm

Comment=Integrated Development Environment

NoDisplay=false

Categories=Development;IDE;

Name[en]=eclipse.desktop


5. Additional Tasks


Run the following command to automatically install it in Unity

$ sudo desktop-file-install /usr/share/applications/eclipse.desktop


– Create a symlink in /usr/local/bin

$ cd /usr/local/bin/

$ sudo ln -s /opt/eclipse/eclipse


– For Eclipse icon to be displayed in dash, run following command

$ sudo cp /opt/eclipse/icon.xpm /usr/share/pixmaps/eclipse.xpm



* Ref

[1] http://sysads.co.uk/2014/04/install-latest-eclipse-ide-ubuntu-14-04-13-10/


설정

트랙백

댓글