akikomahima
@akikomahima

Are you sure you want to delete the question?

Leaving a resolved question undeleted may help others!

LaTex 枠囲みのスペース調整

解決したいこと

LaTexの枠囲みについてお伺いしたいです。

LaTexで1文を横書きで表示したいのですが、\minipageで枠の長さを調節すると、枠で囲った部分が一部見切れてしまい困っています。
\usepackage{geometry}を使わず、1ページにすべての文字を(改行せずに)表示する方法をご存じの方がいらっしゃいましたら、教えていただけると幸いです。

スクリーンショット 2024-10-29 202738.png

該当するソースコード

\documentclass[a4, 11pt]{article}
\usepackage{ascmac}
\usepackage{amsfonts}
\begin{document}

\begin{minipage}{1.5\columnwidth}
\begin{itembox}[c]{Rellich-Kondrachov}
Suppose that $\Omega \subset \mathbb{R} ^N (N \in \mathbb{N})$ is bounded and of class $C^1$.  Then we have the following compact injections: \\
\end{itembox}
\end{minipage}

\end{document}
0

2Answer

\oddsidemarginで左の余白を設定し、\textwidthでページ内に表示するテキストの幅を設定したところ、ご質問のサンプルであれば一行で表示できますが、お望みの結果になっているでしょうか。

\documentclass[a4, 11pt]{article}
\usepackage{ascmac}
\usepackage{amsfonts}

% 余白の設定
\setlength{\oddsidemargin}{-2.0cm}  % 奇数ページの左余白
% \setlength{\evensidemargin}{-2.0cm}  % 偶数ページの左余白
\setlength{\textwidth}{20cm}  % テキスト幅


\begin{document}

%\begin{minipage}{1.5\columnwidth}  %除去
\begin{itembox}[c]{Rellich-Kondrachov Theorem}
Suppose that $\Omega \subset \mathbb{R}^N$ (where $N \in \mathbb{N}$) is bounded and of class $C^1$. Then we have the following compact injections:
\end{itembox}
%\end{minipage} %除去


\end{document}

latex_oneline.png

1Like

はい、求めていたものはそちらです!
\oddsidemarginと\textwidthで余白とテキスト幅を調節できるのですね。
丁寧に教えていただきありがとうございます。

0Like

Your answer might help someone💌