Notice
Recent Posts
Recent Comments
Link
관리 메뉴

뛰는 놈 위에 나는 공대생

[LaTeX] subfigure의 정렬을 오른쪽, 왼쪽으로 하고 싶을 때 본문

기타/논문작성 Writing

[LaTeX] subfigure의 정렬을 오른쪽, 왼쪽으로 하고 싶을 때

보통의공대생 2022. 8. 31. 15:25

 

 

LaTeX에서 subfigure를 그릴 때 정렬을 가운데가 아닌 오른쪽이나 왼쪽으로 하고 싶을 때가 있다.

대부분 subfigure의 예시는

 

\begin{figure}
	\centering
    \includegraphics[width=.6\textwidth]{example-image}
    \caption{left aligned image}
\end{figure}

 

다음처럼 \centering을 쓰기 때문에 그와 대응되는 왼쪽 정렬, 오른쪽 정렬이 필요했다.

 

이에 대응되는 코드는

\raggedright % 오른쪽 정렬
\raggedleft % 왼쪽 정렬

이라고 한다.

 

다른 package를 이용해서 오른쪽, 왼쪽 정렬하는 방법도 있는데 위 명령이 간단하기 때문에 다음을 쓰면 될 것이다. 

 

 


참고자료

https://tex.stackexchange.com/questions/91566/syntax-similar-to-centering-for-right-and-left

 

Syntax similar to \centering for right and left?

For images, we can use \centering. Is there anything available to align the image to the right side or the left side of the page.

tex.stackexchange.com

 

Comments