글
MS Word에서 두 문서 비교하기 (버전 비교)
가끔 문서 작업을 하다보면, 자주 수정하게 되어 버전 관리를 한다거나 혹은 여러 명이 수정을 거치게 되는 경우가 있다.
그 때 유용한 기능이 있음.
MS Word의 리본메뉴 중 검토 메뉴의 하위 메뉴 중에서 아래 붉게 네모친 곳을 보면 "비교" 라는 것을 볼 수 있다.
이것을 눌러보면 아래 그림처럼 두 문서의 변경 내역을 한 눈에 검토할 수 있다. (엄청나게 편리하다!!)
사용 방법은 "비교" 버튼을 눌러보면 너무나 쉽게 알 수 있기 때문에 생략하기로 한다.
글
ROS 사용기 - Eclipse 설치하고 desktop launch 설정하기
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/
'Research' 카테고리의 다른 글
ROS 사용기 - rosbag으로는 teaching data를 playback할 수 없다. (0) | 2015.07.22 |
---|---|
ROS 사용기 - (4) ROS Industrial Tutorial (0) | 2015.07.17 |
ROS 사용기 - (3) ROS Industrial (0) | 2015.07.16 |
ROS 사용기 - (2) ROS 설치 (0) | 2015.07.13 |
ROS 사용기 - (1) Linux 설치 (0) | 2015.07.12 |